mirror of
https://github.com/usatiuk/remotefs.git
synced 2025-10-28 07:27:48 +01:00
41 lines
1.1 KiB
CMake
41 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(remotefs)
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED YES)
|
|
|
|
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
if (NOT DEFINED SANITIZE)
|
|
set(SANITIZE YES)
|
|
endif ()
|
|
endif ()
|
|
|
|
if (SANITIZE STREQUAL "YES")
|
|
message(STATUS "Enabling sanitizers!")
|
|
add_compile_options(-Werror -O0 -Wall -Wextra -pedantic -Wno-unused-parameter -Wno-unused-variable
|
|
-Wno-error=unused-function
|
|
-Wshadow -Wformat=2 -Wfloat-equal -D_GLIBCXX_DEBUG -Wconversion)
|
|
add_compile_options(-fsanitize=address -fno-sanitize-recover)
|
|
add_link_options(-fsanitize=address -fno-sanitize-recover)
|
|
endif ()
|
|
|
|
if (CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)
|
|
endif ()
|
|
|
|
if (NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
add_compile_options(-O3)
|
|
add_link_options(-O3)
|
|
endif ()
|
|
|
|
add_compile_options(-Wno-c99-extensions)
|
|
|
|
add_link_options(-rdynamic)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
|
|
|
enable_testing()
|
|
|
|
add_subdirectory(utils)
|
|
add_subdirectory(networking)
|
|
add_subdirectory(remotefs) |