-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
82 lines (50 loc) · 3.29 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
75
76
77
78
79
80
81
82
###############################################################################
# CMAKE VERSION #
###############################################################################
CMAKE_MINIMUM_REQUIRED (VERSION 3.9.5)
###############################################################################
# PROJECT #
###############################################################################
PROJECT (CirDeVec VERSION 1.0.0 LANGUAGES CXX
DESCRIPTION "A C++ implementation of a Circular Double-ended Vector"
HOMEPAGE_URL "https://github.com/MuAlphaOmegaEpsilon/CirDeVec/")
###############################################################################
# OPTIONS #
###############################################################################
OPTION (TEST "Is library testing enabled?" OFF) # Default is OFF
OPTION (BENCH "Is library benchmarking enabled?" OFF) # Default is OFF
OPTION (EXAMPLE "Is library example building enabled?" OFF) # Default is OFF
###############################################################################
# LIBRARY #
###############################################################################
ADD_LIBRARY (CirDeVec INTERFACE)
###############################################################################
# HEADERS INCLUSION #
###############################################################################
TARGET_INCLUDE_DIRECTORIES (CirDeVec INTERFACE "include") # The include folder of the CirDeVec library
###############################################################################
# TESTS #
###############################################################################
IF (TEST)
INCLUDE (cmake/buildTests.cmake)
ENDIF ()
###############################################################################
# BENCHMARK #
###############################################################################
IF (BENCH)
INCLUDE (cmake/buildBenchmark.cmake)
ENDIF ()
###############################################################################
# BENCHMARK #
###############################################################################
IF (EXAMPLE)
INCLUDE (cmake/buildExample.cmake)
ENDIF ()
###############################################################################
# OPTIONS LISTING #
###############################################################################
MESSAGE (STATUS "Down here there is a list of useful options flags:") # Listing the options flags
MESSAGE (STATUS " [${TEST}] -DTEST=ON/OFF to enable/disable library functionality testing")
MESSAGE (STATUS " [${BENCH}] -DBENCH=ON/OFF to enable/disable library benchmarking against vector")
MESSAGE (STATUS " [${EXAMPLE}] -DEXAMPLE=ON/OFF to enable/disable library example building")
MESSAGE (STATUS "")