-
Notifications
You must be signed in to change notification settings - Fork 28
/
CMakeLists.txt
65 lines (50 loc) · 1.81 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
60
61
62
63
64
65
###########################################################
## CMAKE SETUP
###########################################################
cmake_minimum_required(VERSION 3.2)
project(lru-cache)
add_compile_options(-g)
########################################
# C++ VERSIONING
########################################
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag("-std=c++14" COMPILER_SUPPORTS_CXX_14)
check_cxx_compiler_flag("-std=c++1z" COMPILER_SUPPORTS_CXX_1z)
check_cxx_compiler_flag("-std=c++17" COMPILER_SUPPORTS_CXX_17)
if (COMPILER_SUPPORTS_CXX_1z)
message(STATUS "Compiling with C++1z")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1z")
elseif (COMPILER_SUPPORTS_CXX_14)
message(STATUS "Compiling with C++14")
set(CMAKE_CXX_STANDARD 14)
else()
message(FATAL_ERROR "Please install a modern C++ compiler, they are not expensive.")
endif()
###########################################################
## DEPENDENCIES
###########################################################
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
"${CMAKE_SOURCE_DIR}/cmake/Modules/"
)
###########################################################
## INCLUDES
###########################################################
# Need this top-level include for "tests/"
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
###########################################################
## EXAMPLES
###########################################################
add_subdirectory(examples)
########################################
# TESTS
########################################
option(BUILD_LRU_CACHE_TESTS "Enable tests" ON)
if(BUILD_LRU_CACHE_TESTS)
message(STATUS "Enabling tests ...")
enable_testing()
add_subdirectory(tests)
else()
message(STATUS "Disabling tests ...")
endif()