blt-gp/CMakeLists.txt

129 lines
4.4 KiB
CMake
Raw Normal View History

2024-06-02 21:27:00 -04:00
cmake_minimum_required(VERSION 3.25)
2024-09-01 22:27:18 -04:00
project(blt-gp VERSION 0.1.40)
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-07-21 19:01:29 -04:00
option(BUILD_EXAMPLES "Build example programs. This will build with CTest" OFF)
option(BUILD_GP_TESTS "Build test programs." OFF)
option(DEBUG_LEVEL "Enable debug features which prints extra information to the console, might slow processing down. [0, 3)" 0)
2024-08-23 22:40:13 -04:00
option(TRACK_ALLOCATIONS "Track total allocations. Can be accessed with blt::gp::tracker" OFF)
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-08-31 22:03:22 -04:00
#SET(CMAKE_CXX_FLAGS_RELEASE "-O3 -g")
2024-08-30 23:27:25 -04:00
2024-07-15 18:59:32 -04:00
if (NOT TARGET BLT)
add_subdirectory(lib/blt)
2024-08-16 20:15:38 -04:00
endif ()
2024-06-01 14:02:46 -04:00
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
2024-08-16 19:38:27 -04:00
target_compile_options(blt-gp PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
target_link_options(blt-gp PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
2024-06-01 14:02:46 -04:00
2024-08-16 20:15:38 -04:00
find_program(MOLD "mold")
if (NOT ${MOLD} STREQUAL MOLD-NOTFOUND)
target_compile_options(blt-gp PUBLIC -fuse-ld=mold)
endif ()
2024-07-14 20:48:59 -04:00
target_include_directories(blt-gp PUBLIC include/)
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
2024-08-23 21:13:33 -04:00
if (${TRACK_ALLOCATIONS})
target_compile_definitions(blt-gp PRIVATE BLT_TRACK_ALLOCATIONS=1)
endif ()
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
2024-07-21 19:01:29 -04:00
macro(blt_add_project name source type)
project(${name}-${type})
2024-08-16 20:15:38 -04:00
#add_compile_options(-fuse-ld=mold)
2024-07-21 19:01:29 -04:00
add_executable(${name}-${type} ${source})
target_link_libraries(${name}-${type} PRIVATE BLT blt-gp Threads::Threads)
target_compile_options(${name}-${type} PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
target_link_options(${name}-${type} PRIVATE -Wall -Wextra -Wpedantic -Wno-comment)
target_compile_definitions(${name}-${type} PRIVATE BLT_DEBUG_LEVEL=${DEBUG_LEVEL})
2024-06-26 20:24:58 -04:00
2024-08-23 21:13:33 -04:00
if (${TRACK_ALLOCATIONS})
target_compile_definitions(${name}-${type} PRIVATE BLT_TRACK_ALLOCATIONS=1)
endif ()
2024-07-21 19:01:29 -04:00
if (${ENABLE_ADDRSAN} MATCHES ON)
target_compile_options(${name}-${type} PRIVATE -fsanitize=address)
target_link_options(${name}-${type} PRIVATE -fsanitize=address)
endif ()
2024-06-26 20:24:58 -04:00
2024-07-21 19:01:29 -04:00
if (${ENABLE_UBSAN} MATCHES ON)
target_compile_options(${name}-${type} PRIVATE -fsanitize=undefined)
target_link_options(${name}-${type} PRIVATE -fsanitize=undefined)
endif ()
2024-06-26 20:24:58 -04:00
2024-07-21 19:01:29 -04:00
if (${ENABLE_TSAN} MATCHES ON)
target_compile_options(${name}-${type} PRIVATE -fsanitize=thread)
target_link_options(${name}-${type} PRIVATE -fsanitize=thread)
endif ()
2024-06-26 20:24:58 -04:00
2024-07-21 19:01:29 -04:00
add_test(NAME ${name} COMMAND ${name}-${type})
2024-06-02 13:38:24 -04:00
2024-08-16 20:15:38 -04:00
# set (passRegex "Pass" "Passed" "PASS" "PASSED")
# set (failRegex "WARN" "FAIL" "ERROR" "FATAL")
set(failRegex "\\[WARN\\]" "FAIL" "ERROR" "FATAL" "exception")
2024-06-02 13:38:24 -04:00
2024-08-16 20:15:38 -04:00
# set_property (TEST ${name} PROPERTY PASS_REGULAR_EXPRESSION "${passRegex}")
set_property(TEST ${name} PROPERTY FAIL_REGULAR_EXPRESSION "${failRegex}")
2024-06-02 13:38:24 -04:00
2024-07-21 19:01:29 -04:00
project(blt-gp)
endmacro()
2024-06-02 13:38:24 -04:00
2024-07-21 19:01:29 -04:00
if (${BUILD_EXAMPLES})
2024-07-21 23:23:50 -04:00
blt_add_project(blt-symbolic-regression examples/symbolic_regression.cpp example)
blt_add_project(blt-rice-classification examples/rice_classification.cpp example)
2024-07-21 19:01:29 -04:00
endif ()
2024-06-02 13:38:24 -04:00
2024-07-21 19:01:29 -04:00
if (${BUILD_GP_TESTS})
2024-06-02 13:38:24 -04:00
2024-07-21 19:01:29 -04:00
blt_add_project(blt-stack tests/stack_tests.cpp test)
2024-07-23 21:33:20 -04:00
blt_add_project(blt-eval tests/evaluation_tests.cpp test)
blt_add_project(blt-order tests/order_tests.cpp test)
#blt_add_project(blt-destructor tests/destructor_test.cpp test)
2024-07-21 19:01:29 -04:00
blt_add_project(blt-gp1 tests/gp_test_1.cpp test)
blt_add_project(blt-gp2 tests/gp_test_2.cpp test)
blt_add_project(blt-gp3 tests/gp_test_3.cpp test)
blt_add_project(blt-gp4 tests/gp_test_4.cpp test)
blt_add_project(blt-gp5 tests/gp_test_5.cpp test)
blt_add_project(blt-gp6 tests/gp_test_6.cpp test)
blt_add_project(blt-gp7 tests/gp_test_7.cpp test)
2024-06-02 13:38:24 -04:00
endif ()