From d6391b756b6ceaa4653658b5e9152d2ab43c4cdd Mon Sep 17 00:00:00 2001 From: Mathieu Westphal <mathieu.westphal@kitware.com> Date: Wed, 26 Feb 2025 15:13:36 +0100 Subject: [PATCH] CMake: Add option to control building the app and the tests --- CMakeLists.txt | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 610bdc256..6d444fec2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,6 @@ set(CMAKE_C_STANDARD 11) include(CTest) include(CheckIncludeFile) - # Finding libraries ### -------------- Pthread --------------------------- @@ -46,7 +45,6 @@ if(${CDI_SERVICE}) list(APPEND cdi_compile_defs HAVE_LIBSERVICE=1) endif() - # ecCodes option(CDI_ECCODES "Use the eccodes library [default=ON]" ON) if(${CDI_ECCODES} OR eccodes_ROOT) @@ -85,8 +83,13 @@ message(VERBOSE "looking for config.h in: ${PROJECT_BINARY_DIR}/src") list(APPEND cdi_compile_defs CDI=1 CDI_SIZE_TYPE=size_t PACKAGE_NAME="${PROJECT_NAME}" VERSION="${CMAKE_PROJECT_VERSION}") add_subdirectory(src) -#tests -add_subdirectory(app) -add_subdirectory(tests) - +#app +option(CDI_BUILD_APP "Build the app" ON) +if (CDI_BUILD_APP) + add_subdirectory(app) +endif () +#tests +if (BUILD_TESTING) + add_subdirectory(tests) +endif () -- GitLab