-
Notifications
You must be signed in to change notification settings - Fork 47
/
CMakeLists.txt
129 lines (105 loc) · 5.31 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
cmake_minimum_required(VERSION 3.0)
if(NOT PROJECT_NAME STREQUAL gotm)
project(gotm VERSION 7.0.0 LANGUAGES Fortran)
endif()
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_LIST_DIR}/cmake/Modules/")
# Use solution folders in IDEs
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
# Use use position-independent code (-fPIC) everywhere if building shared libraries
if(BUILD_SHARED_LIBS)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
endif()
# Specify default build type for single-build-type systems (not VS)
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set (CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
endif()
# To check version of configuration file
add_definitions(-D_CFG_VERSION_=${gotm_VERSION_MAJOR})
# ----------------------------
# User-configurable options
# ----------------------------
option(GOTM_USE_CVMIX "Include support for the CVMix turbulence closure models (github.com/CVMix)" OFF)
option(GOTM_USE_FABM "Include support for Framework for Aquatic Biogeochemical Models (fabm.net)" ON)
option(GOTM_USE_STIM "Include support for Simple Thermodynamic Ice Models - STIM" OFF)
option(GOTM_USE_NetCDF "Enable output in NetCDF format" ON)
if(MSVC)
option(GOTM_EMBED_VERSION "Embed GOTM version information" OFF)
else(MSVC)
option(GOTM_EMBED_VERSION "Embed GOTM version information" ON)
endif(MSVC)
option(GOTM_USE_SEAGRASS "Enable seagrass module" ON)
option(GOTM_EXTRA_OUTPUT "Include additional turbulence diagnostics in output" OFF)
mark_as_advanced(GOTM_EXTRA_OUTPUT)
# ----------------------------
# Dependencies
# ----------------------------
if (NOT EXISTS "${CMAKE_CURRENT_LIST_DIR}/extern/gsw/CMakeLists.txt")
message(FATAL_ERROR "TEOS-10 GSW-Fortran toolbox at extern/gsw. Please retrieve this submodule first by running \"git submodule update --init\" within your GOTM source directory.")
else()
set(GSW_BUILD_STATIC_LIBS ON)
add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/extern/gsw" extern/gsw)
endif()
if (NOT EXISTS "${CMAKE_CURRENT_LIST_DIR}/extern/flexout/src/CMakeLists.txt")
message(FATAL_ERROR "Flexible output manager not found at extern/flexout. Please retrieve this submodule first by running \"git submodule update --init --recursive\" within your GOTM source directory.")
else()
set(FLEXOUT_USE_NetCDF ${GOTM_USE_NetCDF} CACHE BOOL "Enable output in NetCDF format" FORCE)
mark_as_advanced(FLEXOUT_USE_NetCDF)
add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/extern/flexout" extern/flexout)
endif()
if(GOTM_USE_CVMIX)
if (NOT EXISTS "${CMAKE_CURRENT_LIST_DIR}/extern/CVMix-src/CMakeLists.txt")
message(FATAL_ERROR "CVMix not found at extern/CVMix-src. Please retrieve this submodule first by running \"git submodule update --init\" within your GOTM source directory - followed by \"git pull --recurse-submodules\".")
else()
# mark_as_advanced(FORCE CVMIX_BASE CVMIX_EMBED_VERSION)
add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/extern/CVMix-src" extern/CVMix-src EXCLUDE_FROM_ALL)
endif()
endif(GOTM_USE_CVMIX)
if(GOTM_USE_FABM)
mark_as_advanced(FORCE FABM_PREFIX FABM_BASE FABM_EMBED_VERSION)
if (NOT FABM_BASE AND FABM_PREFIX)
# FABM must be pre-built: use FABM_PREFIX to locate existing include and lib directories.
find_package(fabm REQUIRED CONFIG HINTS "${FABM_PREFIX}" NO_DEFAULT_PATH)
mark_as_advanced(CLEAR FABM_PREFIX)
else()
find_path(FABM_BASE src/fabm.F90 HINTS ${CMAKE_CURRENT_LIST_DIR}/extern/fabm DOC "Path to FABM source directory." NO_CMAKE_FIND_ROOT_PATH)
set(FABM_EMBED_VERSION ${GOTM_EMBED_VERSION} CACHE BOOL "Embed FABM version information" FORCE)
set(FABM_FORCED_HOST gotm)
add_subdirectory("${FABM_BASE}" extern/fabm)
mark_as_advanced(CLEAR FABM_BASE)
endif()
endif(GOTM_USE_FABM)
if(GOTM_USE_STIM)
mark_as_advanced(FORCE STIM_BASE STIM_EMBED_VERSION)
find_path(STIM_BASE src/stim_version.F90.in HINTS ${CMAKE_CURRENT_LIST_DIR}/extern/stim DOC "Path to STIM source directory." NO_CMAKE_FIND_ROOT_PATH)
set(STIM_EMBED_VERSION ${GOTM_EMBED_VERSION} CACHE BOOL "Embed STIM version information" FORCE)
add_subdirectory("${STIM_BASE}" extern/stim)
mark_as_advanced(CLEAR STIM_BASE)
endif(GOTM_USE_STIM)
# ----------------------------
# GOTM itself
# ----------------------------
# Set default installation prefix (done after dependencies to ensure ours takes precedence)
if(WIN32)
if(DEFINED ENV{LOCALAPPDATA})
set(DEFAULT_PREFIX "$ENV{LOCALAPPDATA}/gotm")
else()
set(DEFAULT_PREFIX "$ENV{APPDATA}/gotm")
endif()
else()
set(DEFAULT_PREFIX "$ENV{HOME}/local/gotm")
endif()
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
# Still on CMake default - override with our own default.
set(CMAKE_INSTALL_PREFIX ${DEFAULT_PREFIX} CACHE PATH "Directory to install GOTM in" FORCE)
else()
# Just set the doc string for the variable.
set(CMAKE_INSTALL_PREFIX ${DEFAULT_PREFIX} CACHE PATH "Directory to install GOTM in")
endif()
include("${CMAKE_CURRENT_LIST_DIR}/src/CMakeLists.txt")
add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/tests" tests)
include(FeatureSummary)
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
#feature_summary(WHAT ENABLED_FEATURES DISABLED_FEATURES PACKAGES_FOUND)
feature_summary(FILENAME ${CMAKE_CURRENT_BINARY_DIR}/features.log WHAT ALL)
endif()