-
Notifications
You must be signed in to change notification settings - Fork 5
/
CMakeLists.txt
executable file
·47 lines (38 loc) · 1.71 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
###############################################################################
# (C) Copyright 1996-2015 ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.
###############################################################################
# define minimum version of cmake required
cmake_minimum_required( VERSION 3.12 FATAL_ERROR )
find_package( ecbuild REQUIRED )
# define the project
project(dwarf-p-cloudsc2-tl-ad VERSION 1.0 LANGUAGES C Fortran )
include( cmake/compat.cmake )
### OpenMP
if( NOT DEFINED ENABLE_OMP OR ENABLE_OMP )
find_package( OpenMP COMPONENTS Fortran C )
# Ensure targets are available
if( OpenMP_Fortran_FOUND AND NOT TARGET OpenMP::OpenMP_Fortran )
ecbuild_critical( "OpenMP::OpenMP_Fortran should have been defined as a CMake target" )
endif()
if( OpenMP_C_FOUND AND NOT TARGET OpenMP::OpenMP_C )
ecbuild_critical( "OpenMP::OpenMP_C should have been defined as a CMake target" )
endif()
endif()
ecbuild_add_option( FEATURE OMP
DESCRIPTION "OpenMP" DEFAULT ON
CONDITION OpenMP_C_FOUND AND OpenMP_Fortran_FOUND )
# HDF5: This dwarf fully depends on HDF5 for input and reference data
ecbuild_find_package( NAME HDF5 REQUIRED COMPONENTS Fortran )
list(APPEND CLOUDSC_DEFINITIONS HAVE_HDF5 ${HDF5_Fortran_DEFINITIONS})
# build executables
add_subdirectory(src)
# finalize
ecbuild_install_project(NAME dwarf-P-cloudsc2-tl-ad)
# print summary
ecbuild_print_summary()