BLT/CMakeLists.txt

56 lines
1.6 KiB
CMake
Raw Normal View History

2022-12-23 13:50:27 -05:00
cmake_minimum_required(VERSION 3.24)
project(BLT)
set(CMAKE_PROJECT_VERSION 0.2a)
2022-12-23 13:50:27 -05:00
set(CMAKE_CXX_STANDARD 17)
option(BUILD_STD "Build the BLT standard utilities." ON)
option(BUILD_PROFILING "Build the BLT profiler extension" ON)
option(BUILD_TESTS "Build the BLT test set" OFF)
2022-12-23 13:50:27 -05:00
if(${BUILD_STD})
2022-12-25 23:25:32 -05:00
file(GLOB_RECURSE STD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/blt/std/*.cpp")
2022-12-23 13:50:27 -05:00
else()
set(STD_FILES "")
endif()
if(${BUILD_PROFILING})
2022-12-25 23:25:32 -05:00
file(GLOB_RECURSE PROFILING_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/blt/profiling/*.cpp")
2022-12-23 13:50:27 -05:00
else()
set(PROFILING_FILES "")
endif()
#include parallel hashmaps if the user decided to download the submodule.
2022-12-27 00:51:37 -05:00
if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/libraries/parallel-hashmap/CMakeLists.txt)
2023-01-16 14:09:27 -05:00
set(USE_PHMAPS)
2022-12-27 00:51:37 -05:00
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/libraries/parallel-hashmap/)
endif()
2022-12-27 00:59:49 -05:00
include_directories(include/)
2022-12-23 13:50:27 -05:00
2022-12-25 23:23:12 -05:00
message("Standard Files ${STD_FILES}")
message("Profiler Files ${PROFILING_FILES}")
message("Source: ${CMAKE_SOURCE_DIR}")
2022-12-25 23:24:58 -05:00
message("Current Source: ${CMAKE_CURRENT_SOURCE_DIR}")
2022-12-25 23:23:12 -05:00
2022-12-23 13:50:27 -05:00
add_library(BLT ${STD_FILES} ${PROFILING_FILES})
2022-12-26 00:36:28 -05:00
target_include_directories(BLT PUBLIC include/)
2023-01-16 14:09:27 -05:00
if(${USE_PHMAPS})
target_link_libraries(BLT phmap)
endif()
message("BLT ${CMAKE_PROJECT_VERSION} Successfully included!")
if(${BUILD_TESTS})
project(BLT_TESTS)
2023-01-12 12:18:39 -05:00
add_compile_options(-fsanitize=address)
add_link_options(-fsanitize=address)
file(GLOB_RECURSE TESTS_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/tests/*.cpp")
add_executable(BLT_TESTS ${TESTS_FILES})
target_link_libraries(BLT_TESTS BLT)
message("BLT tests included!")
2023-01-16 14:09:27 -05:00
endif()