-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
74 lines (53 loc) · 1.98 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
66
67
68
69
70
71
72
73
74
########################################################################
# Preamble
########################################################################
cmake_minimum_required( VERSION 3.14 )
project( elementary LANGUAGES CXX )
########################################################################
# Project-wide setup
########################################################################
set( CMAKE_CXX_STANDARD 17 )
set( CMAKE_CXX_STANDARD_REQUIRED YES )
option( elementary_unit_tests
"Compile the elementary unit tests and integrate with ctest" ON
)
option( strict_compile
"Treat all warnings as errors." ON
)
# Compile flags
set( common_flags "-Wall" "-Wextra" "-Wpedantic" )
set( strict_flags "-Werror" )
set( release_flags "-O3" )
set( debug_flags "-O0" "-g" )
########################################################################
# Dependencies
########################################################################
set( REPOSITORIES "release"
CACHE STRING
"Options for where to fetch repositories: develop, release, local"
)
if( REPOSITORIES STREQUAL "develop" )
include( cmake/develop_dependencies.cmake )
elseif( REPOSITORIES STREQUAL "release" )
include( cmake/release_dependencies.cmake )
elseif( REPOSITORIES STREQUAL "local" )
include( cmake/local_dependencies.cmake )
endif()
########################################################################
# Project targets
########################################################################
add_library( elementary INTERFACE
)
target_include_directories( elementary INTERFACE src/ )
target_link_libraries( elementary
INTERFACE catch-adapter
)
#######################################################################
# Top-level Only
#######################################################################
if( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
# unit testing
if( elementary_unit_tests )
include( cmake/unit_testing.cmake )
endif()
endif()