-
Notifications
You must be signed in to change notification settings - Fork 45
/
CMakeLists.txt
247 lines (211 loc) · 8.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
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
# ------------------------------------------------------------------------ #
# DOCUMENTATION:
# ------------------------------------------------------------------------ #
#
# Package specific command line options:
#
# -DMAX_ASSERT_RANK=<max_rank> Limit overloaded interfaces to
# rank <= max_rank
#
# -DSKIP_MPI=YES Skip build of MPI features even if
# MPI is found.
#
# -DSKIP_OPENMP=YES Skip build of OpenMP features even if
# OpenMP is found
#
# -DSKIP_FHAMCREST=YES Skip build of Hamcrest features
#
# -DSKIP_ROBUST=YES Skip build of RobustRunner
#
#
# Usage:
# cmake <path-to-source> [<options>]
#
# ------------------------------------------------------------------------ #
cmake_minimum_required(VERSION 3.12)
project (PFUNIT
VERSION 4.10.0
LANGUAGES Fortran C)
cmake_policy(SET CMP0077 NEW)
# Determine if pFUnit is built as a subproject (using
# add_subdirectory) or if it is the main project. Snippet taken from
# fmt: https://github.com/fmtlib/fmt/blob/eb52ac7/CMakeLists.txt
set(MAIN_PROJECT OFF)
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
set(MAIN_PROJECT ON)
endif ()
#---------------------------
# Main configuration options
#---------------------------
# Most users of this software do not (should not?) have permissions to
# install in the cmake default of /usr/local (or equiv on other os's).
# Below, the default is changed to a directory within the build tree
# unless the user explicitly sets CMAKE_INSTALL_PREFIX in the cache.
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set (CMAKE_INSTALL_PREFIX "${CMAKE_BINARY_DIR}/installed" CACHE PATH "default install path" FORCE )
message(STATUS "*** Setting default install prefix to ${CMAKE_INSTALL_PREFIX}.")
message(STATUS "*** Override with -DCMAKE_INSTALL_PREFIX=<path>.")
endif()
set (MAX_ASSERT_RANK 5 CACHE STRING "Maximum array rank for generated code.")
option (SKIP_MPI "Skip building MPI support." NO)
option (SKIP_OPENMP "Skip OpenMP compiler options." NO)
option (SKIP_FHAMCREST "Skip building fHamcrest support" NO)
option (SKIP_ROBUST "Skip building RobustRunner" NO)
option (SKIP_ESMF "Skip building ESMF support" YES)
option (ENABLE_TESTS "Build pFUnit tests" ${MAIN_PROJECT})
option (ENABLE_BUILD_DOXYGEN "Attempt to build doxygen documentation" NO)
option (ENABLE_MPI_F08 "Use the 'mpi_f08' module." NO)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${PROJECT_SOURCE_DIR}/cmake" "${PROJECT_SOURCE_DIR}/include")
include(BuildType)
include(CheckCompilerCapabilities)
#-----------------------------------
# Set default Fortran compiler flags
#-----------------------------------
include(cmake/${CMAKE_Fortran_COMPILER_ID}.cmake RESULT_VARIABLE found)
if(NOT found)
message( FATAL_ERROR "Unrecognized Fortran compiler. Please use ifort, gfortran, NAG, PGI, or XL.")
endif()
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
# Skip MPI and RobustRunner on MinGW
if (MINGW)
set(SKIP_MPI YES)
set(SKIP_ROBUST YES)
endif ()
if (NOT SKIP_MPI)
find_package (MPI QUIET COMPONENTS Fortran)
if (MPI_Fortran_FOUND)
message (STATUS "MPI enabled")
if (ENABLE_MPI_F08)
if (NOT MPI_Fortran_HAVE_F08_MODULE)
message (FATAL_ERROR "MPI F08 module requested but not available")
else()
message (STATUS "MPI F08 module enabled")
endif()
endif()
else ()
message (STATUS "MPI not found; building without MPI")
endif()
endif()
# Fortran OpenMP support is not yet integrated into the CMake distribution.
if (NOT SKIP_OPENMP)
find_package(OpenMP QUIET)
if (OpenMP_Fortran_FOUND)
message (STATUS "OpenMP enabled")
else (OpenMP_Fortran_FOUND)
message (STATUS "OpenMP not found - skipping openmp support.")
endif()
# Kludge to workaround cmake+NAG+openmp linkage problem
if (CMAKE_Fortran_COMPILER_ID STREQUAL "NAG")
set_property(TARGET OpenMP::OpenMP_Fortran PROPERTY
INTERFACE_LINK_LIBRARIES "")
set_property(TARGET OpenMP::OpenMP_Fortran PROPERTY INTERFACE_LINK_OPTIONS "-openmp")
endif ()
endif()
# ESMF options are still under development ...
if (NOT SKIP_ESMF)
set (ESMF_LIBRARIES "" CACHE PATH "Path to ESMF libraries")
set (ESMF_INCLUDE "" CACHE PATH "Path to ESMF include dir")
set (NETCDF_INCLUDE "" CACHE PATH "Path to NETCD include dir")
set (ESMF_FOUND)
endif ()
find_package(Python)
set(CMAKE_SHARED_LIBRARY_LINK_Fortran_FLAGS "")
set(CMAKE_SKIP_RPATH ON)
set (dest "PFUNIT-${PFUNIT_VERSION_MAJOR}.${PFUNIT_VERSION_MINOR}")
# Code to silence warnings from RANLIB on OSX
# From https://stackoverflow.com/questions/4929255/building-static-libraries-on-mac-using-cmake-and-gcc
if (APPLE)
SET(CMAKE_Fortran_ARCHIVE_CREATE "<CMAKE_AR> Scr <TARGET> <LINK_FLAGS> <OBJECTS>")
SET(CMAKE_Fortran_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
endif ()
# Enable testing before adding subdirectories
# to catch any tests in the main project
if (ENABLE_TESTS)
enable_testing()
endif ()
include(build_submodule)
# Find fArgParse first so that gFTL and gFTL-shared are consistent
build_submodule(extern/fArgParse PROJECT FARGPARSE TARGET FARGPARSE::fargparse VERSION 1.8.0)
add_subdirectory (src)
add_subdirectory (include)
add_subdirectory (bin)
if (ENABLE_BUILD_DOXYGEN)
add_subdirectory(documentation)
endif()
if (NOT TARGET build-tests)
add_custom_target(build-tests)
endif()
if (NOT TARGET tests)
add_custom_target(tests
COMMAND ${CMAKE_CTEST_COMMAND}
EXCLUDE_FROM_ALL)
endif ()
add_dependencies(tests build-tests)
add_subdirectory (tests EXCLUDE_FROM_ALL)
# The following forces tests to be built when using "make ctest" even if some targets
# are EXCLUDE_FROM_ALL
# From https://stackoverflow.com/questions/733475/cmake-ctest-make-test-doesnt-build-tests/56448477#56448477
build_command(CTEST_CUSTOM_PRE_TEST TARGET build-tests)
string(CONFIGURE \"@CTEST_CUSTOM_PRE_TEST@\" CTEST_CUSTOM_PRE_TEST_QUOTED ESCAPE_QUOTES)
file(WRITE "${CMAKE_BINARY_DIR}/CTestCustom.cmake" "set(CTEST_CUSTOM_PRE_TEST ${CTEST_CUSTOM_PRE_TEST_QUOTED})" "\n")
# The following is needed for external projects using *nix make when
# parent project builds pFUnit as a subproject.
set (top_dir PFUNIT-${PFUNIT_VERSION_MAJOR}.${PFUNIT_VERSION_MINOR})
set (PFUNIT_TOP_DIR "${CMAKE_INSTALL_PREFIX}/${top_dir}" CACHE PATH "")
# Packaging
include(CMakePackageConfigHelpers)
include (cmake/packaging.cmake)
# Create the PFUNITConfig.cmake and pFUnitConfigVersion files
configure_package_config_file(cmake/PFUNITConfig.cmake.in PFUNITConfig.cmake
INSTALL_DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/PFUNITConfig.cmake"
)
write_basic_package_version_file(
PFUNITConfig-version.cmake
VERSION ${PACKAGE_VERSION}
COMPATIBILITY SameMajorVersion
)
configure_file(cmake/PFUNIT.mk.in
"${PROJECT_BINARY_DIR}/PFUNIT.mk" @ONLY)
# Install the pFUnitConfig.cmake and pFUnitConfigVersion.cmake
install(FILES
"${PROJECT_BINARY_DIR}/PFUNITConfig.cmake"
"${PROJECT_BINARY_DIR}/PFUNITConfig-version.cmake"
DESTINATION "${top_dir}/cmake")
install(FILES
"${PROJECT_BINARY_DIR}/PFUNIT.mk"
DESTINATION "${top_dir}/include")
install(EXPORT PFUNIT
FILE PFUNITTargets.cmake
NAMESPACE PFUNIT::
DESTINATION "${top_dir}/cmake"
)
export(EXPORT PFUNIT
FILE "${CMAKE_CURRENT_BINARY_DIR}/PFUNITTargets.cmake"
NAMESPACE PFUNIT::
)
# Set some variables needed by add_pfunit_test in the parent scope so
# that the build directory can be used directly
if (NOT MAIN_PROJECT)
set(PFUNIT_MPI_FOUND "${MPI_Fortran_FOUND}" PARENT_SCOPE)
set(PFUNIT_MPI_USE_MPIEXEC "${MPI_USE_MPIEXEC}" PARENT_SCOPE)
set(PFUNIT_PARSER "${Python_EXECUTABLE}" "${PROJECT_SOURCE_DIR}/bin/funitproc" PARENT_SCOPE)
set(PFUNIT_DRIVER "${PROJECT_SOURCE_DIR}/include/driver.F90" PARENT_SCOPE)
set(PFUNIT_TESTUTILS "${PROJECT_SOURCE_DIR}/include/TestUtil.F90" PARENT_SCOPE)
if (BUILD_SHARED_LIBS)
set (PFUNIT_SERIAL_LIBRARIES PFUNIT::funit_shared PARENT_SCOPE)
if (MPI_Fortran_FOUND)
set(PFUNIT_LIBRARIES PFUNIT::pfunit_shared PARENT_SCOPE)
else()
set(PFUNIT_LIBRARIES PFUNIT::funit_shared PARENT_SCOPE)
endif()
else()
set (PFUNIT_SERIAL_LIBRARIES PFUNIT::funit PARENT_SCOPE)
if (MPI_Fortran_FOUND)
set(PFUNIT_LIBRARIES PFUNIT::pfunit PARENT_SCOPE)
else()
set(PFUNIT_LIBRARIES PFUNIT::funit PARENT_SCOPE)
endif()
endif()
include(add_pfunit_test)
include(add_pfunit_ctest)
endif()