2024-05-21 22:05:29 -04:00
|
|
|
cmake_minimum_required(VERSION 3.25)
|
2024-05-25 15:28:24 -04:00
|
|
|
project(floc VERSION 0.0.9)
|
2024-05-17 18:01:17 -04:00
|
|
|
|
|
|
|
include(FetchContent)
|
2024-05-17 17:48:51 -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)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
|
|
|
|
include_directories(include/)
|
|
|
|
file(GLOB_RECURSE PROJECT_BUILD_FILES "${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp")
|
|
|
|
|
|
|
|
add_executable(floc ${PROJECT_BUILD_FILES})
|
|
|
|
|
2024-05-17 18:01:17 -04:00
|
|
|
add_subdirectory(lib/blt)
|
|
|
|
FetchContent_Declare(ftxui
|
|
|
|
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
|
|
|
|
GIT_TAG v5.0.0
|
|
|
|
)
|
2024-05-25 15:28:24 -04:00
|
|
|
FetchContent_Declare(json
|
|
|
|
GIT_REPOSITORY https://github.com/nlohmann/json.git
|
|
|
|
GIT_TAG v3.11.3
|
|
|
|
)
|
2024-05-17 18:01:17 -04:00
|
|
|
|
|
|
|
FetchContent_GetProperties(ftxui)
|
|
|
|
if(NOT ftxui_POPULATED)
|
|
|
|
FetchContent_Populate(ftxui)
|
|
|
|
add_subdirectory(${ftxui_SOURCE_DIR} ${ftxui_BINARY_DIR} EXCLUDE_FROM_ALL)
|
|
|
|
endif()
|
|
|
|
|
2024-05-25 15:28:24 -04:00
|
|
|
target_link_libraries(floc PRIVATE BLT)
|
2024-05-17 18:01:17 -04:00
|
|
|
target_link_libraries(floc
|
|
|
|
PRIVATE ftxui::screen
|
|
|
|
PRIVATE ftxui::dom
|
|
|
|
PRIVATE ftxui::component
|
2024-05-25 15:28:24 -04:00
|
|
|
PRIVATE json
|
2024-05-17 18:01:17 -04:00
|
|
|
)
|
2024-05-17 17:48:51 -04:00
|
|
|
|
|
|
|
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)
|
2024-05-17 18:01:17 -04:00
|
|
|
endif ()
|