-
Notifications
You must be signed in to change notification settings - Fork 24
/
CMakeLists.txt
59 lines (49 loc) · 2.22 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
cmake_minimum_required(VERSION 3.1)
project(snowhouse)
option(SNOWHOUSE_BUILD_TESTS "Build the Snowhouse tests" OFF)
option(SNOWHOUSE_RUN_TESTS "Run the Snowhouse tests" OFF)
option(SNOWHOUSE_DEVELOP "Build tests with options useful for developing" OFF)
set(SNOWHOUSE_CXX_STANDARD "C++11" CACHE STRING "The C++ standard the examples are compiled with")
set_property(CACHE SNOWHOUSE_CXX_STANDARD PROPERTY STRINGS "C++11" "C++14" "C++17")
add_library(snowhouse INTERFACE)
target_include_directories(snowhouse INTERFACE include)
if(SNOWHOUSE_CXX_STANDARD STREQUAL "C++11")
set(CMAKE_CXX_STANDARD 11)
elseif(SNOWHOUSE_CXX_STANDARD STREQUAL "C++14")
set(CMAKE_CXX_STANDARD 14)
elseif(SNOWHOUSE_CXX_STANDARD STREQUAL "C++17")
set(CMAKE_CXX_STANDARD 17)
elseif(SNOWHOUSE_CXX_STANDARD STREQUAL "C++20")
set(CMAKE_CXX_STANDARD 20)
elseif(SNOWHOUSE_CXX_STANDARD STREQUAL "C++23")
set(CMAKE_CXX_STANDARD 23)
else()
message(WARNING "C++ standard \"${SNOWHOUSE_CXX_STANDARD}\" not known, falling back to default")
endif()
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ./bin)
if (MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /MP ")
else()
# Assume GCC-style arguments
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \
-Wall -Wextra -pedantic -Wdeprecated -Wdeprecated-declarations -Wnon-virtual-dtor \
-Wshadow -Wfloat-equal -Wundef -Wendif-labels -Wno-error=unknown-pragmas")
if (SNOWHOUSE_DEVELOP)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \
-Werror -fsanitize=address,undefined")
endif()
endif()
message(STATUS "C++ compiler flags: ${CMAKE_CXX_FLAGS}")
if (SNOWHOUSE_BUILD_TESTS)
FILE(GLOB SnowhouseSpecSourceFiles example/*.cpp)
add_executable(snowhouse-tests ${SnowhouseSpecSourceFiles})
target_link_libraries(snowhouse-tests PRIVATE snowhouse)
endif()
if (SNOWHOUSE_BUILD_TESTS AND SNOWHOUSE_RUN_TESTS)
add_custom_command(TARGET snowhouse-tests
POST_BUILD
COMMAND snowhouse-tests
WORKING_DIRECTORY ./bin)
elseif (SNOWHOUSE_RUN_TESTS)
message(WARNING "Unable to run snowhouse tests - set:\n option(SNOWHOUSE_BUILD_TESTS, \"Build the Snowhouse tests\" ON)\nand clear your CMakeCache.txt")
endif()