-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
66 lines (49 loc) · 2.12 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
##
# CMake script
##
MESSAGE("_________________________________________________________________________________")
MESSAGE(" ")
MESSAGE(" ScratchData")
MESSAGE(" ")
MESSAGE("_________________________________________________________________________________")
# this is the standard deal.II search mechanism, including check for Trilinos and p4est
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
FIND_PACKAGE(deal.II 9.2.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)
MESSAGE(FATAL_ERROR
"\nThis library requires a deal.II installation built with support for p4est but it appears to be missing!\n"
)
ENDIF()
IF(NOT DEAL_II_WITH_TRILINOS)
MESSAGE(FATAL_ERROR
"\nThis library requires a deal.II installation built with support for Trilinos but it appears to be missing!\n"
)
ENDIF()
DEAL_II_INITIALIZE_CACHED_VARIABLES()
# Set the source files to be compiled
FILE(GLOB_RECURSE TARGET_SRC "main.cpp")
SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC})
# Set the include directory and the name of the project
INCLUDE_DIRECTORIES(include)
PROJECT(ScratchData)
ADD_EXECUTABLE(${CMAKE_PROJECT_NAME} ${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(ScratchData)