Newer
Older
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
##############
# general stuff
cmake_minimum_required(VERSION 2.6)
set(ProjectName "DuMuX")
set(ProjectVersion "1.1svn")
set(ProjectMaintainer "Bernd Flemisch")
set(ProjectMaintainerEmail "Bernd.Flemisch_at_iws dot uni-stuttgart dot de")
project(${ProjectName} CXX)
##############
##############
# make sure our own modules will be found
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMake/Modules")
##############
##############
# Set the policy how CMake resolves library paths to the
# policy introduced by CMake 2.6 (this does not apply for
# CMake 2.4 and below, of course). For details, see
# http://www.cmake.org/cmake/help/cmake-2.6.html#policy:CMP0003
if(COMMAND cmake_policy)
cmake_policy(SET CMP0003 NEW)
endif(COMMAND cmake_policy)
##############
##############
# Find the required packages
FIND_PACKAGE(DUNE_grid REQUIRED)
FIND_PACKAGE(DUNE_istl REQUIRED)
FIND_PACKAGE(DUNE_localfunctions REQUIRED)
FIND_PACKAGE(DUNE_pdelab REQUIRED)
FIND_PACKAGE(DUNE_common REQUIRED)
FIND_PACKAGE(Boost REQUIRED)
##############
##############
# Find the optional packages
FIND_PACKAGE(MPI)
#FIND_PACKAGE(UG)
FIND_PACKAGE(METIS)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#FIND_PACKAGE(Alberta)
##############
##############
# Find the required include files
INCLUDE (CheckIncludeFileCXX)
CHECK_INCLUDE_FILE_CXX("malloc.h" HAVE_MALLOC_H)
CHECK_INCLUDE_FILE_CXX("valgrind/memcheck.h" HAVE_VALGRIND)
CHECK_INCLUDE_FILE_CXX("tr1/array" HAVE_TR1_ARRAY)
##############
##############
# use this macros in the CMakelists of the subdirectories.
# -> for TARGET_LINK_LIBRARIES
set(DumuxLinkLibraries
# "dumux" # the DUMUX library. CMake replaces this by the proper file location
${DUNE_grid_LIBRARIES}
${DUNE_common_LIBRARIES}
${DUNE_mux_LIBRARIES}
${Boost_LIBRARIES})
# -> for LINK_DIRECTORIES
set(DumuxLinkDirectories ${Boost_LIBRARY_DIRS})
# -> for INCLUDE_DIRECTORIES
set(DumuxIncludeDirectories
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_SOURCE_DIR}
${DUNE_grid_INCLUDE_DIRS}
${DUNE_common_INCLUDE_DIRS}
${DUNE_istl_INCLUDE_DIRS}
${DUNE_localfunctions_INCLUDE_DIRS}
${DUNE_pdelab_INCLUDE_DIRS}
${Boost_INCLUDE_DIR})
##############
##############
# set appropriate compiler flags for debug/release compilation modes
add_definitions("-std=c++0x -Wall -Wno-sign-compare --no-strict-aliasing")
if(CMAKE_BUILD_TYPE STREQUAL "debug")
# debug mode
add_definitions("-g")
# add_definitions(-DDEBUG -DDUNE_DEVEL_MODE=1 -DDUNE_ISTL_WITH_CHECKING)
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
else(CMAKE_BUILD_TYPE STREQUAL "debug")
# Release mode
add_definitions("-O3 -march=native")
add_definitions(-DNDEBUG)
endif(CMAKE_BUILD_TYPE STREQUAL "debug")
##############
##############
# deal with the config.h include file...
macro(SetConfigHVar ConfigHName CMakeName)
if(${CMakeName})
set(${ConfigHName} ${${CMakeName}})
else(${CMakeName})
set(${ConfigHName} 0)
endif(${CMakeName})
endmacro(SetConfigHVar)
SetConfigHVar(HAVE_BOOST Boost_FOUND)
SetConfigHVar(HAVE_DUNE DUNE_common_FOUND)
SetConfigHVar(HAVE_DUNE_GRID DUNE_grid_FOUND)
SetConfigHVar(HAVE_DUNE_ISTL DUNE_istl_FOUND)
SetConfigHVar(HAVE_DUNE_LOCALFUNCTIONS DUNE_localfunctions_FOUND)
SetConfigHVar(HAVE_DUNE_PDELAB DUNE_pdelab_FOUND)
SetConfigHVar(HAVE_MPI MPI_FOUND)
SetConfigHVar(PROJECT_NAME ProjectName)
SetConfigHVar(PROJECT_VERSION ProjectVersion)
SetConfigHVar(PROJECT_MAINTAINER ProjectMaintainer)
SetConfigHVar(PROJECT_MAINTAINER_EMAIL ProjectMaintainerEmail)
##############
##############
# adapt build system to detected packages
# deal with UG
#if (UG_FOUND)
# set(DumuxLinkLibraries ${DumuxLinkLibraries}
# ${UG_LIBRARIES})
# set(DumuxIncludeDirectories ${DumuxIncludeDirectories}
# ${UG_INCLUDE_DIRS})
#endif(UG_FOUND)
#SetConfigHVar(HAVE_UG UG_FOUND)
#if (ALUGrid_FOUND)
# set(DumuxLinkLibraries ${DumuxLinkLibraries}
# ${ALUGrid_LIBRARIES})
# set(DumuxIncludeDirectories ${DumuxIncludeDirectories}
# ${ALUGrid_INCLUDE_DIRS})
#endif(ALUGrid_FOUND)
#SetConfigHVar(HAVE_ALUGRID ALUGrid_FOUND)
#if (METIS_FOUND)
# set(DumuxLinkLibraries ${DumuxLinkLibraries}
# ${METIS_LIBRARIES})
# set(DumuxIncludeDirectories ${DumuxIncludeDirectories}
# ${METIS_INCLUDE_DIRS})
#endif(METIS_FOUND)
#SetConfigHVar(HAVE_METIS METIS_FOUND)
#if (Alberta_FOUND)
# set(DumuxLinkLibraries ${DumuxLinkLibraries}
# ${Alberta_LIBRARIES})
# set(DumuxIncludeDirectories ${DumuxIncludeDirectories}
# ${Alberta_INCLUDE_DIRS})
#endif(Alberta_FOUND)
#SetConfigHVar(HAVE_ALBERTA Alberta_FOUND)
##############
if (MPI_FOUND)
set(TMP ${MPI_COMPILE_FLAGS})
separate_arguments(TMP)
add_definitions(${TMP})
add_definitions(-DENABLE_MPI=1)
# add_definitions(-DModelP) # tell UG that the model is parallelized
set(DumuxLinkLibraries ${DumuxLinkLibraries} ${MPI_LIBRARIES})
set(DumuxIncludeDirectories ${DumuxIncludeDirectories} ${MPI_INCLUDE_PATH})
endif (MPI_FOUND)
# actually write the config.h file to disk
configure_file(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h )
#add_definitions(-DHAVE_CONFIG_H)
##############
# tell cmake that we've got a few subdirectories. (that's the
# directories where the actual programs are)
add_subdirectory("test")
add_subdirectory("tutorial")
##############
# set up CTest
ENABLE_TESTING()
INCLUDE(CTest)
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
ADD_TEST(test_1p \
util/runTest.sh \
test/boxmodels/1p/1ptest-reference.vtu \
test/boxmodels/1p/1ptest-00002.vtu \
test/boxmodels/1p/test_1p \
test/boxmodels/1p/grids/test_1p_2d.dgf \
1 \
1)
add_test(test_1p2c \
util/runTest.sh \
test/boxmodels/1p2c/tissue-reference.vtu \
test/boxmodels/1p2c/tissue-00003.vtu \
test/boxmodels/1p2c/test_1p2c \
test/boxmodels/1p2c/grids/test_1p2c.dgf \
2e3 \
1e3)
add_test(test_2p \
util/runTest.sh \
test/boxmodels/2p/lens-reference.vtu \
test/boxmodels/2p/lens-00010.vtu \
test/boxmodels/2p/test_2p \
3000 \
250)
add_test(test_2pni \
util/runTest.sh \
test/boxmodels/2pni/injection2pni-reference.vtu \
test/boxmodels/2pni/injection2pni-00009.vtu \
test/boxmodels/2pni/test_2pni \
test/boxmodels/2pni/grids/test_2pni.dgf \
1e4 \
250)
add_test(test_2p2c \
util/runTest.sh \
test/boxmodels/2p2c/injection-reference.vtu \
test/boxmodels/2p2c/injection-00009.vtu \
test/boxmodels/2p2c/test_2p2c \
test/boxmodels/2p2c/grids/test_2p2c.dgf \
1e4 \
250)
add_test(test_2p2cni \
util/runTest.sh \
test/boxmodels/2p2cni/waterair-reference.vtu \
test/boxmodels/2p2cni/waterair-00011.vtu \
test/boxmodels/2p2cni/test_2p2cni \
test/boxmodels/2p2cni/grids/test_2p2cni.dgf \
1e4 \
250)
add_test(test_MpNc \
util/runTest.sh \
test/boxmodels/MpNc/obstacle-reference.vtu \
test/boxmodels/MpNc/obstacle-00011.vtu \
test/boxmodels/MpNc/test_MpNc \
test/boxmodels/MpNc/grids/obstacle_24x16.dgf \
1e4 \
250)
add_test(test_richards \
util/runTest.sh \
test/boxmodels/richards/richardslens-reference.vtu \
test/boxmodels/richards/richardslens-00009.vtu \
test/boxmodels/richards/test_richards \
test/boxmodels/richards/grids/richardslens.dgf \
100 \
10)
add_test(test_propertysystem test/common/propertysystem/test_propertysystem)
add_test(test_spline test/common/spline/test_spline)
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
add_test(test_diffusion \
util/runTest.sh \
test/decoupled/1p/diffusion-reference.vtu \
test/decoupled/1p/mimeticdiffusion-00001.vtu \
test/decoupled/1p/test_diffusion \
3)
add_test(test_dec1p \
util/runTest.sh \
test/decoupled/1p/test_1p-reference.vtu \
test/decoupled/1p/test_1p-00001.vtu \
test/decoupled/1p/test_dec1p
3)
add_test(test_transport \
util/runTest.sh \
test/decoupled/2p/test_transport-reference.vtu \
test/decoupled/2p/test_transport-00006.vtu \
test/decoupled/2p/test_transport \
test/decoupled/2p/grids/test_transport.dgf \
1e4)
add_test(test_impes \
util/runTest.sh \
test/decoupled/2p/test_impes-reference.vtu \
test/decoupled/2p/test_impes-00013.vtu \
test/decoupled/2p/test_impes \
1e7)
add_test(test_dec2p2c \
util/runTest.sh \
test/decoupled/2p/test_dec2p2c-reference.vtu \
test/decoupled/2p/test_dec2p2c-00021.vtu \
test/decoupled/2p2c/test_dec2p2c)
add_test(test_multiphysics2p2c test/decoupled/2p2c/test_multiphysics2p2c)
add_test(tutorial_coupled tutorial/tutorial_coupled 1 1)
add_test(tutorial_decoupled tutorial/tutorial_decoupled 1)