mirror of https://github.com/tri11paragon/floc.git
35 lines
1.1 KiB
CMake
35 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.28)
|
|
project(floc)
|
|
|
|
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)
|
|
|
|
add_subdirectory(lib/blt)
|
|
|
|
include_directories(include/)
|
|
file(GLOB_RECURSE PROJECT_BUILD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
|
|
|
|
add_executable(floc ${PROJECT_BUILD_FILES})
|
|
|
|
target_link_libraries(floc ${BLT_TARGET})
|
|
|
|
target_compile_options(floc PRIVATE -Wall -Werror -Wpedantic -Wno-comment)
|
|
target_link_options(floc PRIVATE -Wall -Werror -Wpedantic -Wno-comment)
|
|
|
|
if (${ENABLE_ADDRSAN} MATCHES ON)
|
|
target_compile_options(floc PRIVATE -fsanitize=address)
|
|
target_link_options(floc PRIVATE -fsanitize=address)
|
|
endif ()
|
|
|
|
if (${ENABLE_UBSAN} MATCHES ON)
|
|
target_compile_options(floc PRIVATE -fsanitize=undefined)
|
|
target_link_options(floc PRIVATE -fsanitize=undefined)
|
|
endif ()
|
|
|
|
if (${ENABLE_TSAN} MATCHES ON)
|
|
target_compile_options(floc PRIVATE -fsanitize=thread)
|
|
target_link_options(floc PRIVATE -fsanitize=thread)
|
|
endif () |