Skip to content
Snippets Groups Projects
Commit 61a4b0ae authored by Max Lübke's avatar Max Lübke
Browse files

build: make compilation of examples optional

build: set default values of optional options to OFF
parent 3106c2b8
No related branches found
No related tags found
1 merge request!16Merge branch 'hannes-philipp' of git.gfz-potsdam.de:naaice/tug into main
......@@ -33,7 +33,11 @@ endif()
option(TUG_ENABLE_TESTING
"Run tests after succesfull compilation"
ON)
OFF)
option(TUG_ENABLE_EXAMPLES
"Compile example applications"
OFF)
add_subdirectory(src)
......@@ -41,4 +45,6 @@ if(TUG_ENABLE_TESTING)
add_subdirectory(test)
endif()
if(TUG_ENABLE_EXAMPLES)
add_subdirectory(examples)
endif()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment