Skip to content

Commit 97630d3

Browse files
authoredJan 21, 2025··
renamed execution26 to execution (#123)
* renamed execution26 to execution * clang-format
1 parent d01727f commit 97630d3

File tree

326 files changed

+5348
-5229
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

326 files changed

+5348
-5229
lines changed
 

‎.clang-tidy

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Checks:
2626
-*-use-equals-default,
2727
-*-braces-around-statements
2828
'
29-
HeaderFilterRegex: '.*/execution26/(include|src|example|tests)/.*\.(hpp)$'
29+
HeaderFilterRegex: '.*/execution/(include|src|example|tests)/.*\.(hpp)$'
3030
WarningsAsErrors: 'clang*'
3131
FormatStyle: file
3232

‎CMakeLists.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
cmake_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

1010
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR})
1111
message(FATAL_ERROR "In-source builds are not allowed!")
1212
endif()
1313

14-
set(TARGET_NAME execution26)
14+
set(TARGET_NAME execution)
1515
set(TARGET_NAMESPACE beman)
1616
set(TARGET_PREFIX ${TARGET_NAMESPACE}.${TARGET_NAME})
1717
set(TARGET_LIBRARY ${PROJECT_NAME})
@@ -20,27 +20,27 @@ set(TARGET_PACKAGE_NAME ${PROJECT_NAME}-config)
2020
set(TARGETS_EXPORT_NAME ${PROJECT_NAME}-targets)
2121

2222
option(
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

2828
option(
29-
BEMAN_EXECUTION26_BUILD_EXAMPLES
29+
BEMAN_EXECUTION_BUILD_EXAMPLES
3030
"Enable building examples. Values: { ON, OFF }."
3131
${PROJECT_IS_TOP_LEVEL}
3232
)
3333

3434
option(
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

4040
include(GNUInstallDirs)
4141
set(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
)
9090
endif()
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)
9898
endif()
9999

100-
if(BEMAN_EXECUTION26_BUILD_EXAMPLES)
100+
if(BEMAN_EXECUTION_BUILD_EXAMPLES)
101101
add_subdirectory(examples)
102102
endif()
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()
106106
endif()
107107

0 commit comments

Comments
 (0)
Please sign in to comment.