-
Notifications
You must be signed in to change notification settings - Fork 8
/
CMakeLists.txt
56 lines (43 loc) · 1.46 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
# general stuff
cmake_minimum_required(VERSION 3.13)
# set up project
project(dune-pdelab C CXX)
# guess dune-common build dir
if(NOT (dune-common_DIR OR dune-common_ROOT OR
"${CMAKE_PREFIX_PATH}" MATCHES ".*dune-common.*"))
string(REPLACE ${CMAKE_PROJECT_NAME} dune-common dune-common_DIR
${PROJECT_BINARY_DIR})
endif()
#find dune-common and set the module path
find_package(dune-common REQUIRED)
list(APPEND CMAKE_MODULE_PATH ${dune-common_MODULE_PATH}
"${PROJECT_SOURCE_DIR}/cmake/modules")
#include the dune macros
include(DuneMacros)
# start a dune project with information from dune.module
dune_project()
# Disable the upstream testing magic, that builds tests during "make test"
set(DUNE_TEST_MAGIC OFF)
# Create a target for dune-pdelab with a Dune::PDELab alias
dune_add_library(dunepdelab EXPORT_NAME PDELab)
dune_target_enable_all_packages(dunepdelab)
if(NOT MINGW)
set(clock_cc "dune/pdelab/common/clock.cc")
endif()
target_sources(dunepdelab PRIVATE
${clock_cc}
dune/pdelab/common/hostname.cc
dune/pdelab/common/logtag.cc
)
# Configuration options
option(COVERAGE_REPORT "Enable coverage compiler flags")
if(COVERAGE_REPORT)
target_compile_options(dunepdelab PUBLIC --coverage)
target_link_libraries(dunepdelab PUBLIC gcov)
endif()
add_subdirectory(doc)
add_subdirectory(dune)
add_subdirectory(cmake/modules)
add_subdirectory(lib)
# finalize the dune project, e.g. generating config.h etc.
finalize_dune_project(GENERATE_CONFIG_H_CMAKE)