Skip to content
Snippets Groups Projects
Commit cb131a12 authored by Julien Malik's avatar Julien Malik
Browse files

ENH: add an option to enable Applications build

parent 4d88c03f
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,7 @@ INCLUDE (${CMAKE_ROOT}/Modules/CMakeBackwardCompatibilityCXX.cmake)
OPTION(BUILD_TESTING "Build testing." OFF)
OPTION(BUILD_EXAMPLES "Build the Examples directory." OFF)
OPTION(BUILD_APPLICATIONS "Build applications" OFF)
INCLUDE(${CMAKE_ROOT}/Modules/Dart.cmake)
CONFIGURE_FILE(CMake/CTestCustom.cmake.in CTestCustom.cmake)
......@@ -255,6 +256,10 @@ INCLUDE_DIRECTORIES(
ADD_SUBDIRECTORY(Utilities)
ADD_SUBDIRECTORY(Code)
IF (BUILD_APPLICATIONS)
ADD_SUBDIRECTORY(Applications)
ENDIF (BUILD_APPLICATIONS)
IF (BUILD_TESTING)
ADD_SUBDIRECTORY(Testing)
ENDIF (BUILD_TESTING)
......
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