blt-gp/CMakeLists.txt

87 lines
3.2 KiB
CMake
Raw Normal View History

2024-06-02 21:27:00 -04:00
cmake_minimum_required(VERSION 3.25)
2024-07-14 14:08:39 -04:00
project(blt-gp VERSION 0.0.76)
2024-06-26 20:24:58 -04:00
include(CTest)
2024-06-01 14:02:46 -04:00
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
option(ENABLE_TSAN "Enable the thread data race sanitizer" OFF)
2024-06-02 13:38:24 -04:00
option(BUILD_EXAMPLES "Build example programs. This is a single executable" OFF)
option(DEBUG_LEVEL "Enable debug features which prints extra information to the console, might slow processing down. [0, 3)" 0)
2024-06-01 14:02:46 -04:00
set(CMAKE_CXX_STANDARD 17)
2024-07-13 15:36:49 -04:00
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
2024-06-01 14:02:46 -04:00
add_subdirectory(lib/blt)
include_directories(include/)
file(GLOB_RECURSE PROJECT_BUILD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
2024-06-02 13:38:24 -04:00
add_library(blt-gp ${PROJECT_BUILD_FILES})
2024-06-01 14:02:46 -04:00
target_compile_options(blt-gp PRIVATE -Wall -Wextra -Werror -Wpedantic -Wno-comment)
target_link_options(blt-gp PRIVATE -Wall -Wextra -Werror -Wpedantic -Wno-comment)
2024-07-13 15:36:49 -04:00
target_link_libraries(blt-gp PRIVATE BLT Threads::Threads)
target_compile_definitions(blt-gp PRIVATE BLT_DEBUG_LEVEL=${DEBUG_LEVEL})
2024-06-01 14:02:46 -04:00
if (${ENABLE_ADDRSAN} MATCHES ON)
target_compile_options(blt-gp PRIVATE -fsanitize=address)
target_link_options(blt-gp PRIVATE -fsanitize=address)
endif ()
if (${ENABLE_UBSAN} MATCHES ON)
target_compile_options(blt-gp PRIVATE -fsanitize=undefined)
target_link_options(blt-gp PRIVATE -fsanitize=undefined)
endif ()
if (${ENABLE_TSAN} MATCHES ON)
target_compile_options(blt-gp PRIVATE -fsanitize=thread)
target_link_options(blt-gp PRIVATE -fsanitize=thread)
endif ()
2024-06-02 13:38:24 -04:00
if (${BUILD_EXAMPLES})
2024-06-26 20:24:58 -04:00
macro(blt_add_example name source)
project(${name}-example)
add_executable(${name}-example ${source})
2024-07-13 15:36:49 -04:00
target_link_libraries(${name}-example PRIVATE BLT blt-gp Threads::Threads)
2024-06-26 20:24:58 -04:00
target_compile_options(${name}-example PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
target_link_options(${name}-example PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
target_compile_definitions(${name}-example PRIVATE BLT_DEBUG_LEVEL=${DEBUG_LEVEL})
2024-06-02 13:38:24 -04:00
2024-06-26 20:24:58 -04:00
if (${ENABLE_ADDRSAN} MATCHES ON)
target_compile_options(${name}-example PRIVATE -fsanitize=address)
target_link_options(${name}-example PRIVATE -fsanitize=address)
endif ()
2024-06-02 13:38:24 -04:00
2024-06-26 20:24:58 -04:00
if (${ENABLE_UBSAN} MATCHES ON)
target_compile_options(${name}-example PRIVATE -fsanitize=undefined)
target_link_options(${name}-example PRIVATE -fsanitize=undefined)
endif ()
2024-06-02 13:38:24 -04:00
2024-06-26 20:24:58 -04:00
if (${ENABLE_TSAN} MATCHES ON)
target_compile_options(${name}-example PRIVATE -fsanitize=thread)
target_link_options(${name}-example PRIVATE -fsanitize=thread)
endif ()
2024-06-02 13:38:24 -04:00
2024-06-26 20:55:37 -04:00
add_test(NAME ${name} COMMAND ${name}-example)
2024-06-02 13:38:24 -04:00
2024-06-26 20:24:58 -04:00
project(blt-gp)
endmacro()
2024-06-02 13:38:24 -04:00
2024-06-26 20:55:37 -04:00
blt_add_example(blt-gp1 examples/gp_test_1.cpp)
2024-06-26 20:24:58 -04:00
blt_add_example(blt-gp2 examples/gp_test_2.cpp)
2024-06-26 20:55:37 -04:00
blt_add_example(blt-gp3 examples/gp_test_3.cpp)
2024-06-27 03:01:39 -04:00
blt_add_example(blt-gp4 examples/gp_test_4.cpp)
2024-06-29 14:03:57 -04:00
blt_add_example(blt-gp5 examples/gp_test_5.cpp)
blt_add_example(blt-gp6 examples/gp_test_6.cpp)
blt_add_example(blt-gp7 examples/gp_test_7.cpp)
2024-07-12 18:33:39 -04:00
blt_add_example(blt-SR-playground examples/pg_symbolic_regression.cpp)
2024-06-02 13:38:24 -04:00
endif ()