2024-04-11 17:53:30 -04:00
|
|
|
cmake_minimum_required(VERSION 3.25)
|
2024-07-30 03:16:58 -04:00
|
|
|
project(graphs VERSION 0.1.9)
|
2024-04-11 17:53:30 -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-04-26 01:11:24 -04:00
|
|
|
message(${CMAKE_CXX_COMPILER_ID})
|
|
|
|
|
2024-04-11 17:53:30 -04:00
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
2024-04-26 01:11:24 -04:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
2024-04-11 17:53:30 -04:00
|
|
|
|
2024-04-26 01:11:24 -04:00
|
|
|
add_subdirectory(lib/BLT-With-Graphics-Template SYSTEM)
|
2024-07-27 20:53:47 -04:00
|
|
|
set(JSON_BuildTests OFF CACHE INTERNAL "")
|
|
|
|
add_subdirectory(lib/json)
|
2024-04-11 20:40:12 -04:00
|
|
|
|
2024-04-11 17:53:30 -04:00
|
|
|
include_directories(include/)
|
|
|
|
file(GLOB_RECURSE PROJECT_BUILD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
|
|
|
|
|
|
|
|
add_executable(graphs ${PROJECT_BUILD_FILES})
|
|
|
|
|
2024-04-26 01:11:24 -04:00
|
|
|
target_compile_options(graphs PRIVATE -Wall -Wextra -Wno-comment)
|
|
|
|
target_link_options(graphs PRIVATE -Wall -Wextra -Wno-comment)
|
2024-04-11 20:40:12 -04:00
|
|
|
|
|
|
|
target_link_libraries(graphs PUBLIC BLT_WITH_GRAPHICS)
|
2024-07-27 20:53:47 -04:00
|
|
|
target_link_libraries(graphs PRIVATE nlohmann_json::nlohmann_json)
|
2024-04-11 17:53:30 -04:00
|
|
|
|
|
|
|
if (${ENABLE_ADDRSAN} MATCHES ON)
|
|
|
|
target_compile_options(graphs PRIVATE -fsanitize=address)
|
|
|
|
target_link_options(graphs PRIVATE -fsanitize=address)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${ENABLE_UBSAN} MATCHES ON)
|
|
|
|
target_compile_options(graphs PRIVATE -fsanitize=undefined)
|
|
|
|
target_link_options(graphs PRIVATE -fsanitize=undefined)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${ENABLE_TSAN} MATCHES ON)
|
|
|
|
target_compile_options(graphs PRIVATE -fsanitize=thread)
|
|
|
|
target_link_options(graphs PRIVATE -fsanitize=thread)
|
2024-04-26 01:11:24 -04:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (EMSCRIPTEN)
|
2024-04-26 18:05:00 -04:00
|
|
|
set(BLT_PRELOAD_PATH "../res@../res")
|
|
|
|
include(lib/BLT-With-Graphics-Template/cmake/link_flags.cmake)
|
2024-04-11 17:53:30 -04:00
|
|
|
endif ()
|