55
66cmake_minimum_required(VERSION 3.25...3.31)
77
8- project(beman_execution26 VERSION 0.0.1 LANGUAGES CXX)
8+ project(beman_execution VERSION 0.0.1 LANGUAGES CXX)
99
1010if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
1111 message(FATAL_ERROR "In-source builds are not allowed!")
1212endif()
1313
14- set(TARGET_NAME execution26 )
14+ set(TARGET_NAME execution )
1515set(TARGET_NAMESPACE beman)
1616set(TARGET_PREFIX ${TARGET_NAMESPACE}.${TARGET_NAME})
1717set(TARGET_LIBRARY ${PROJECT_NAME})
@@ -20,27 +20,27 @@ set(TARGET_PACKAGE_NAME ${PROJECT_NAME}-config)
2020set(TARGETS_EXPORT_NAME ${PROJECT_NAME}-targets)
2121
2222option(
23- BEMAN_EXECUTION26_ENABLE_TESTING
23+ BEMAN_EXECUTION_ENABLE_TESTING
2424 "Enable building tests and test infrastructure. Values : { ON, OFF }."
2525 ${PROJECT_IS_TOP_LEVEL}
2626)
2727
2828option(
29- BEMAN_EXECUTION26_BUILD_EXAMPLES
29+ BEMAN_EXECUTION_BUILD_EXAMPLES
3030 "Enable building examples. Values : { ON, OFF }."
3131 ${PROJECT_IS_TOP_LEVEL}
3232)
3333
3434option(
35- BEMAN_EXECUTION26_ENABLE_INSTALL
35+ BEMAN_EXECUTION_ENABLE_INSTALL
3636 "Install the project components. Values : { ON, OFF }."
3737 ${PROJECT_IS_TOP_LEVEL}
3838)
3939
4040include (GNUInstallDirs)
4141set(INSTALL_CONFIGDIR ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME})
4242
43- if(NOT BEMAN_EXECUTION26_ENABLE_INSTALL OR CMAKE_SKIP_INSTALL_RULES)
43+ if(NOT BEMAN_EXECUTION_ENABLE_INSTALL OR CMAKE_SKIP_INSTALL_RULES)
4444 include (FetchContent)
4545
4646 # Add project_options from https://github.com/aminya/project_options
@@ -89,19 +89,19 @@ if(NOT BEMAN_EXECUTION26_ENABLE_INSTALL OR CMAKE_SKIP_INSTALL_RULES)
8989 )
9090endif()
9191
92- add_subdirectory(src/beman/execution26 )
92+ add_subdirectory(src/beman/execution )
9393
94- if(BEMAN_EXECUTION26_ENABLE_TESTING )
94+ if(BEMAN_EXECUTION_ENABLE_TESTING )
9595 enable_testing()
9696
97- add_subdirectory(tests/beman/execution26 )
97+ add_subdirectory(tests/beman/execution )
9898endif()
9999
100- if(BEMAN_EXECUTION26_BUILD_EXAMPLES )
100+ if(BEMAN_EXECUTION_BUILD_EXAMPLES )
101101 add_subdirectory(examples)
102102endif()
103103
104- if(NOT BEMAN_EXECUTION26_ENABLE_INSTALL OR CMAKE_SKIP_INSTALL_RULES)
104+ if(NOT BEMAN_EXECUTION_ENABLE_INSTALL OR CMAKE_SKIP_INSTALL_RULES)
105105 return()
106106endif()
107107
0 commit comments