-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
37 lines (27 loc) · 1.05 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
cmake_minimum_required(VERSION 3.2.2)
project(gentle-intro-to-ranges C CXX)
set(MAJOR_VERSION 1)
set(MINOR_VERSION 0)
set(PATCH_VERSION 0)
################################################################################
# C++ standard settings
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_VERBOSE_MAKEFILE ON)
################################################################################
# Diverse variables
# ...
################################################################################
# Add range-v3 library from subfolder
# set (RANGE_V3_NO_TESTING on)
# set (RANGE_V3_NO_EXAMPLE on)
# set (RANGE_V3_NO_PERF on)
# add_subdirectory(libs/range-v3)
################################################################################
# Add Executable
# add_subdirectory(src)
################################################################################
enable_testing()
################################################################################
# Build test dependencies for Catch and Gtest.
add_subdirectory(test-catch)