2024-06-02 21:27:00 -04:00
|
|
|
cmake_minimum_required(VERSION 3.25)
|
2024-06-25 22:21:41 -04:00
|
|
|
project(blt-gp VERSION 0.0.33)
|
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)
|
2024-06-01 14:02:46 -04:00
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
target_link_libraries(blt-gp PRIVATE BLT)
|
|
|
|
|
|
|
|
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})
|
|
|
|
project(blt-gp-example)
|
|
|
|
|
2024-06-23 14:13:50 -04:00
|
|
|
add_executable(blt-gp-example examples/main.cpp examples/gp_test_2.cpp)
|
2024-06-02 13:38:24 -04:00
|
|
|
|
|
|
|
target_link_libraries(blt-gp-example PUBLIC BLT blt-gp)
|
|
|
|
|
2024-06-03 02:29:51 -04:00
|
|
|
target_compile_options(blt-gp-example PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
|
|
|
|
target_link_options(blt-gp-example PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
|
2024-06-02 13:38:24 -04:00
|
|
|
|
|
|
|
if (${ENABLE_ADDRSAN} MATCHES ON)
|
|
|
|
target_compile_options(blt-gp-example PRIVATE -fsanitize=address)
|
|
|
|
target_link_options(blt-gp-example PRIVATE -fsanitize=address)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${ENABLE_UBSAN} MATCHES ON)
|
|
|
|
target_compile_options(blt-gp-example PRIVATE -fsanitize=undefined)
|
|
|
|
target_link_options(blt-gp-example PRIVATE -fsanitize=undefined)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${ENABLE_TSAN} MATCHES ON)
|
|
|
|
target_compile_options(blt-gp-example PRIVATE -fsanitize=thread)
|
|
|
|
target_link_options(blt-gp-example PRIVATE -fsanitize=thread)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
project(blt-gp)
|
|
|
|
endif ()
|