Skip to content
Snippets Groups Projects
Commit 253ff439 authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

cmake: run examples as tests

parent a6ea1619
No related branches found
No related tags found
1 merge request!75Build and run examples as tests
Pipeline #96264 passed
......@@ -358,7 +358,6 @@ Generate HTML pages:
-DCMAKE_Fortran_COMPILER=gfortran
-DBUILD_TESTING:BOOL=OFF
-DMTIME_ENABLE_PYTHON:BOOL=OFF
-DMTIME_BUILD_EXAMPLES:BOOL=OFF
-DMTIME_BUILD_DOCS:BOOL=ON
-DDOXYGEN_GENERATE_LATEX:BOOL=OFF
-DDOXYGEN_GENERATE_MAN:BOOL=OFF
......
......@@ -15,7 +15,6 @@ option(BUILD_SHARED_LIBS "Build shared libraries" ON)
option(BUILD_TESTING "Build tests" ON)
option(MTIME_ENABLE_PYTHON "Enable the Python interface" OFF)
option(MTIME_BUILD_EXAMPLES "Build examples" ON)
option(MTIME_BUILD_DOCS "Build documentation" OFF)
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
......@@ -47,12 +46,9 @@ if(MTIME_BUILD_DOCS)
add_subdirectory(doc)
endif()
if(MTIME_BUILD_EXAMPLES)
add_subdirectory(examples)
endif()
include(CTest)
if(BUILD_TESTING)
add_subdirectory(examples)
add_subdirectory(test)
else()
# Allow for 'make test' even if the tests are disabled:
......
......@@ -23,6 +23,7 @@ set(examples_Fortran
foreach(example IN LISTS examples_Fortran)
add_executable(${example} ${example}.f90)
add_test(NAME ${example} COMMAND ${example})
endforeach()
set(examples_C
......@@ -34,6 +35,7 @@ set(examples_C
foreach(example IN LISTS examples_C)
add_executable(${example} ${example}.c)
add_test(NAME ${example} COMMAND ${example})
endforeach()
# Additional sources of the example executables:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment