forked from MeteoSwiss-APN/gtclang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
166 lines (134 loc) · 5.17 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
##===------------------------------------------------------------------------------*- CMake -*-===##
## _ _
## | | | |
## __ _| |_ ___| | __ _ _ __ __ _
## / _` | __/ __| |/ _` | '_ \ / _` |
## | (_| | || (__| | (_| | | | | (_| |
## \__, |\__\___|_|\__,_|_| |_|\__, | - GridTools Clang DSL
## __/ | __/ |
## |___/ |___/
##
##
## This file is distributed under the MIT License (MIT).
## See LICENSE.txt for details.
##
##===------------------------------------------------------------------------------------------===##
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING
"Choose the type of build, options are: Debug Release RelWithDebInfo." FORCE)
endif()
if(NOT BUILD_SHARED_LIBS)
set(BUILD_SHARED_LIBS OFF CACHE BOOL "Build shared libraries." FORCE)
endif()
if(NOT CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "${CMAKE_SOURCE_DIR}/install" CACHE STRING
"Install path prefix, prepended onto install directories." FORCE)
endif()
project(gtclang CXX)
cmake_minimum_required(VERSION 3.3)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
if(NOT(DEFINED YODA_ROOT))
message(FATAL_ERROR "YODA_ROOT not found! Try specifying it in the environment via -DYODA_ROOT=<>")
endif()
list(APPEND CMAKE_MODULE_PATH "${YODA_ROOT}/cmake")
include(yodaAddExecutable)
include(yodaAddLibrary)
include(yodaAddTargetCleanAll)
include(yodaAddTargetClangFormat)
include(yodaCombineLibraries)
include(yodaConfigureFile)
include(yodaCreatePackageString)
include(yodaEnableFullRPATH)
include(yodaExportPackage)
include(yodaGetGitHeadRevision)
include(yodaSetCXXStandard)
include(yodaAddCustomDummyTarget)
include(yodaInit)
yoda_init()
# Include the GTClang specific options, definitions and macros
include(GTClangOptions)
include(GTClangDefinitions)
include(GTClangMacros)
if(GTCLANG_HAS_CUDA)
include(GTClangSetupCUDA)
gtclang_setup_CUDA()
find_package(SLURM)
endif(GTCLANG_HAS_CUDA)
# Set C++ standard
yoda_set_cxx_standard(c++11)
# Set C++ flags (Note that the LLVM/Clang package might add some other flags)
gtclang_set_cxx_flags()
# Add custom targets
yoda_add_target_clean_all()
# Output summary of the configuration
macro(make_config_string FIRST SECOND)
yoda_make_string_pair(${FIRST} ": ${SECOND}" 20 out)
list(APPEND config_info ${out})
endmacro()
make_config_string("gtclang version" ${GTCLANG_FULL_VERSION})
make_config_string("Platform" ${YODA_PLATFORM_STRING})
make_config_string("Architecture" ${YODA_ARCHITECTURE_STRING})
make_config_string("Compiler" ${YODA_COMPILER_STRING})
make_config_string("Build type" ${CMAKE_BUILD_TYPE})
make_config_string("Asserts" ${GTCLANG_ASSERTS})
yoda_report_result("Configuration summary" ${config_info})
# Include the packages (and set the correct, libraries, includes etc.)
foreach(package bash ccache Python3 Boost clang-format Clang Dawn OpenMP Threads)
include("Add${package}")
yoda_create_package_string(${package} info)
list(APPEND package_info ${info})
string(TOUPPER ${package} PACKAGE)
if(${PACKAGE}_FOUND)
list(APPEND GTCLANG_EXTERNAL_LIBRARIES ${YODA_${PACKAGE}_LIBRARIES})
list(APPEND GTCLANG_EXTERNAL_INCLUDE_DIRS ${YODA_${PACKAGE}_INCLUDE_DIRS})
list(APPEND GTCLANG_EXTERNAL_DEFINITIONS ${YODA_${PACKAGE}_DEFINITIONS})
endif()
endforeach()
if(DEFINED GRIDTOOLS_ROOT)
include("AddGridTools")
yoda_create_package_string(GridTools info)
list(APPEND package_info ${info})
string(TOUPPER GridTools PACKAGE)
if(${PACKAGE}_FOUND)
list(APPEND GTCLANG_EXTERNAL_LIBRARIES ${YODA_${PACKAGE}_LIBRARIES})
list(APPEND GTCLANG_EXTERNAL_INCLUDE_DIRS ${YODA_${PACKAGE}_INCLUDE_DIRS})
list(APPEND GTCLANG_EXTERNAL_DEFINITIONS ${YODA_${PACKAGE}_DEFINITIONS})
endif()
endif()
include_directories(SYSTEM ${GTCLANG_EXTERNAL_INCLUDE_DIRS})
add_definitions(${GTCLANG_EXTERNAL_DEFINITIONS})
# Output summary of the packages
yoda_report_result("Package summary" ${package_info})
# Support of RPATH-exports of dawn
if(NOT(DEFINED DAWN_RPATH_DIR))
message(FATAL_ERROR "DAWN_RPATH_DIR is not exported by DAWN")
endif()
yoda_enable_full_rpath("${DAWN_RPATH_DIR}")
# Add clang-format target
set(format_directories
"${CMAKE_SOURCE_DIR}/src"
"${CMAKE_SOURCE_DIR}/test/unit-test"
)
yoda_add_target_clang_format(DIRECTORIES ${format_directories} EXTENSION ".h;.cpp")
# Build gtclang
include_directories(${CMAKE_SOURCE_DIR}/src)
include_directories(${CMAKE_BINARY_DIR}/src)
include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/test/utils/googletest/include)
add_subdirectory(src)
if(GTCLANG_BUILD_EXAMPLES)
add_subdirectory(examples)
endif()
if(GTCLANG_TESTING)
enable_testing()
add_subdirectory(test)
endif()
if(GTCLANG_DOCUMENTATION)
add_subdirectory(docs)
endif()
gtclang_gen_install_config()
# Install headers
install(
DIRECTORY src/
DESTINATION ${GTCLANG_INSTALL_INCLUDE_DIR}
FILES_MATCHING PATTERN "*.h" PATTERN "*.inc" PATTERN "*.hpp"
)