2024-01-19 15:46:07 -05:00
|
|
|
cmake_minimum_required(VERSION 3.25)
|
|
|
|
project(MDMPD_VRP)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
2024-01-19 17:54:32 -05:00
|
|
|
add_subdirectory(libraries/BLT)
|
|
|
|
|
2024-01-19 15:46:07 -05:00
|
|
|
include_directories(include/)
|
|
|
|
file(GLOB_RECURSE PROJECT_BUILD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
|
|
|
|
|
|
|
|
add_executable(MDMPD_VRP ${PROJECT_BUILD_FILES})
|
|
|
|
|
2024-01-19 17:54:32 -05:00
|
|
|
target_link_libraries(MDMPD_VRP PUBLIC BLT)
|
|
|
|
|
2024-01-19 15:46:07 -05:00
|
|
|
target_compile_options(MDMPD_VRP PRIVATE -Wall -Wextra -Werror -Wpedantic -Wno-comment)
|
|
|
|
target_link_options(MDMPD_VRP PRIVATE -Wall -Wextra -Werror -Wpedantic -Wno-comment)
|
|
|
|
|
|
|
|
if (${ENABLE_ADDRSAN} MATCHES ON)
|
|
|
|
target_compile_options(MDMPD_VRP PRIVATE -fsanitize=address)
|
|
|
|
target_link_options(MDMPD_VRP PRIVATE -fsanitize=address)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${ENABLE_UBSAN} MATCHES ON)
|
|
|
|
target_compile_options(MDMPD_VRP PRIVATE -fsanitize=undefined)
|
|
|
|
target_link_options(MDMPD_VRP PRIVATE -fsanitize=undefined)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${ENABLE_TSAN} MATCHES ON)
|
|
|
|
target_compile_options(MDMPD_VRP PRIVATE -fsanitize=thread)
|
|
|
|
target_link_options(MDMPD_VRP PRIVATE -fsanitize=thread)
|
|
|
|
endif ()
|