-
Notifications
You must be signed in to change notification settings - Fork 4
/
CMakeLists.txt
68 lines (51 loc) · 2.13 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
##############################################################################
# Copyright (c) 2020-24, Lawrence Livermore National Security, LLC and CARE
# project contributors. See the CARE LICENSE file for details.
#
# SPDX-License-Identifier: BSD-3-Clause
##############################################################################
##########################################################################
# Set up CMake
##########################################################################
cmake_minimum_required(VERSION 3.23)
##########################################################################
# Set up project
##########################################################################
project(CARE
LANGUAGES C CXX
VERSION 0.14.1)
include(${PROJECT_SOURCE_DIR}/cmake/Setup.cmake)
##########################################################################
# Set up library
##########################################################################
add_subdirectory(src)
##########################################################################
# Set up tests
##########################################################################
if(CARE_ENABLE_TESTS)
add_subdirectory(test)
endif()
##########################################################################
# Set up benchmarks
##########################################################################
if(CARE_ENABLE_BENCHMARKS)
add_subdirectory(benchmarks)
endif()
##########################################################################
# Set up documentation
##########################################################################
if(CARE_ENABLE_DOCS)
add_subdirectory(docs)
endif()
##########################################################################
# Set up examples
##########################################################################
if(CARE_ENABLE_EXAMPLES)
add_subdirectory(examples)
endif()
##########################################################################
# Set up reproducers
##########################################################################
if(CARE_ENABLE_REPRODUCERS)
add_subdirectory(reproducers)
endif()