-
Notifications
You must be signed in to change notification settings - Fork 6
/
CMakeLists.txt
55 lines (44 loc) · 1.55 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
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12)
FIND_PACKAGE(deal.II 9.3.0 QUIET
HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
)
IF(NOT ${deal.II_FOUND})
MESSAGE(FATAL_ERROR "\n"
"*** Could not locate deal.II. ***\n\n"
"You may want to either pass a flag -DDEAL_II_DIR=/path/to/deal.II to cmake\n"
"or set an environment variable \"DEAL_II_DIR\" that contains this path."
)
ENDIF()
IF(NOT DEAL_II_WITH_P4EST) # keep in one line
MESSAGE(FATAL_ERROR "
Error! The deal.II library found at ${DEAL_II_PATH} was not configured with
DEAL_II_WITH_P4EST = ON
It was set to OFF in your installation but is required for this program."
)
ENDIF()
DEAL_II_INITIALIZE_CACHED_VARIABLES()
SET( TARGET_SRC dummy.cc)
PROJECT(ceed)
ADD_LIBRARY(ceed ${TARGET_SRC})
# Define custom targets to easily switch the build type:
ADD_CUSTOM_TARGET(debug
COMMAND ${CMAKE_COMMAND} -DCMAKE_BUILD_TYPE=Debug ${CMAKE_SOURCE_DIR}
COMMENT "Switch CMAKE_BUILD_TYPE to Debug\nPlease call 'make' to build the debug project"
)
ADD_CUSTOM_TARGET(release
COMMAND ${CMAKE_COMMAND} -DCMAKE_BUILD_TYPE=Release ${CMAKE_SOURCE_DIR}
COMMENT "Switch CMAKE_BUILD_TYPE to Release\nPlease call 'make' to build the release project"
)
DEAL_II_INITIALIZE_CACHED_VARIABLES()
DEAL_II_SETUP_TARGET(ceed)
ADD_SUBDIRECTORY(bk5)
ADD_SUBDIRECTORY(bp1)
ADD_SUBDIRECTORY(bp2)
ADD_SUBDIRECTORY(bp3)
ADD_SUBDIRECTORY(bp4)
ADD_SUBDIRECTORY(bp4_system)
ADD_SUBDIRECTORY(bp5)
ADD_SUBDIRECTORY(bp6)
ADD_SUBDIRECTORY(benchmark_detail)
ADD_SUBDIRECTORY(bps5)
ADD_SUBDIRECTORY(bps5_e-vector)