-
Notifications
You must be signed in to change notification settings - Fork 62
/
SetupBLT.cmake
232 lines (193 loc) · 8.04 KB
/
SetupBLT.cmake
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
# Copyright (c) 2017-2024, Lawrence Livermore National Security, LLC and
# other BLT Project Developers. See the top-level LICENSE file for details
#
# SPDX-License-Identifier: (BSD-3-Clause)
if (NOT BLT_LOADED)
set(BLT_VERSION "0.6.2" CACHE STRING "")
mark_as_advanced(BLT_VERSION)
message(STATUS "BLT Version: ${BLT_VERSION}")
set(BLT_LOADED True)
mark_as_advanced(BLT_LOADED)
set( BLT_ROOT_DIR ${CMAKE_CURRENT_LIST_DIR} CACHE PATH "" FORCE )
# if an explicit build dir was not specified, set a default.
if( NOT BLT_BUILD_DIR )
set( BLT_BUILD_DIR ${PROJECT_BINARY_DIR}/blt CACHE PATH "" FORCE )
endif()
################################
# Prevent in-source builds
################################
# Fail if someone tries to config an in-source build.
if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
message(FATAL_ERROR "In-source builds are not supported. Please remove the "
"CMakeFiles directory and CMakeCache.txt from the 'src' "
"dir and configure an out-of-source build in another "
"directory.")
endif()
#################################
# Show CMake info right out of the gate
################################
message(STATUS "CMake Version: ${CMAKE_VERSION}")
get_property(_is_multi_config GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
if (_is_multi_config)
message(STATUS "CMake Configuration Types: ${CMAKE_CONFIGURATION_TYPES}")
else()
message(STATUS "CMake Build Type: ${CMAKE_BUILD_TYPE}")
endif()
unset(_is_multi_config)
if(${CMAKE_VERSION} VERSION_LESS 3.15.0)
message("*************************************")
message("* Unsupported version of CMake detected.")
message("* BLT requires CMake 3.15 or above.")
message("* Some BLT features may not work.")
message("*************************************")
endif()
message(STATUS "CMake Executable: ${CMAKE_COMMAND}")
################################
# Setup build options and their default values
################################
include(${BLT_ROOT_DIR}/cmake/BLTOptions.cmake)
################################
# CMake Policies
################################
# Support IN_LIST operator for if()
# Policy added in 3.3+
if(POLICY CMP0057)
cmake_policy(SET CMP0057 NEW)
endif()
# Make `check_cxx_source_compiles` honor `CMAKE_CXX_STANDARD`
# NOTE: This only works on a few CMake versions even though it was
# added in CMake 3.14. (for example, 3.20.2, 3.21.1, and 3.23.1 did not work)
if(POLICY CMP0067)
cmake_policy(SET CMP0067 NEW)
endif()
# Policy to use <PackageName>_ROOT variable in find_<Package> commands
# Policy added in 3.12+
if(POLICY CMP0074)
cmake_policy(SET CMP0074 NEW)
endif()
################################
# Enable various find commands to look in non-default paths
################################
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB32_PATHS TRUE)
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE)
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIBX32_PATHS TRUE)
################################
# Invoke CMake Fortran setup
# if ENABLE_FORTRAN == ON
################################
if(ENABLE_FORTRAN)
enable_language(Fortran)
endif()
################################
# Enable ctest support
################################
if(ENABLE_TESTS)
enable_testing()
endif()
################################
# Enable cmake generator folder feature
################################
if(ENABLE_FOLDERS)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
endif()
################################
# Enable cmake compilation database feature
################################
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
################################
# Macros
################################
include(${BLT_ROOT_DIR}/cmake/BLTMacros.cmake)
################################
# Setup compiler standards early
################################
include(${BLT_ROOT_DIR}/cmake/SetupCompilerStandards.cmake)
################################
# Standard TPL support
################################
include(${BLT_ROOT_DIR}/cmake/SetupThirdParty.cmake)
################################
# Git related Macros
################################
if (Git_FOUND)
include(${BLT_ROOT_DIR}/cmake/BLTGitMacros.cmake)
endif()
################################
# Setup docs targets
################################
include(${BLT_ROOT_DIR}/cmake/SetupDocs.cmake)
################################
# Setup source checks
################################
include(${BLT_ROOT_DIR}/cmake/SetupCodeChecks.cmake)
################################
# Standard Build Layout
################################
# Set the path where all the libraries will be stored
set(LIBRARY_OUTPUT_PATH
${PROJECT_BINARY_DIR}/lib
CACHE PATH
"Directory where compiled libraries will go in the build tree")
# Set the path where all the installed executables will go
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY
${PROJECT_BINARY_DIR}/bin
CACHE PATH
"Directory where executables will go in the build tree")
# Set the path were all test executables will go
set(TEST_OUTPUT_DIRECTORY
${PROJECT_BINARY_DIR}/tests
CACHE PATH
"Directory where test executables will go in the build tree")
# Set the path were all example test executables will go
set(EXAMPLE_OUTPUT_DIRECTORY
${PROJECT_BINARY_DIR}/examples
CACHE PATH
"Directory where example executables will go in the build tree")
# Set the Fortran module directory
set(CMAKE_Fortran_MODULE_DIRECTORY
${PROJECT_BINARY_DIR}/lib/fortran
CACHE PATH
"Directory where all Fortran modules will go in the build tree")
# Mark as advanced
mark_as_advanced(
LIBRARY_OUTPUT_PATH
CMAKE_RUNTIME_OUTPUT_DIRECTORY
CMAKE_Fortran_MODULE_DIRECTORY)
################################
# Global variables needed by BLT
#
################################
# File extension lists used to filter sources based on languages for code checks
# and filtering Fortran sources out of cuda/hip source lists
# Note: this filtering is case-insensitive
set(BLT_C_FILE_EXTS ".cpp" ".hpp" ".cxx" ".hxx" ".c" ".h" ".cc" ".hh" ".inl" ".cu" ".cuh"
CACHE STRING "List of known file extensions used for C/CXX sources")
set(BLT_Fortran_FILE_EXTS ".f" ".f90"
CACHE STRING "List of known file extensions used for Fortran sources")
set(BLT_Python_FILE_EXTS ".py"
CACHE STRING "List of known file extensions used for Python sources")
# NOTE: CMakeLists.txt handled in `blt_split_source_list_by_language`
set(BLT_CMAKE_FILE_EXTS ".cmake"
CACHE STRING "List of known file extensions used for CMake sources")
################################
# Setup compiler options
# (must be included after HEADER_INCLUDES_DIRECTORY and MPI variables are set)
################################
include(${BLT_ROOT_DIR}/cmake/SetupCompilerOptions.cmake)
################################
# Setup code metrics -
# profiling, code coverage, etc.
# (must be included after SetupCompilerOptions)
################################
include(${BLT_ROOT_DIR}/cmake/SetupCodeMetrics.cmake)
################################
# builtin third party libs used by BLT
################################
add_subdirectory(${BLT_ROOT_DIR}/thirdparty_builtin ${BLT_BUILD_DIR}/thirdparty_builtin)
################################
# BLT smoke tests
################################
if(ENABLE_TESTS)
add_subdirectory(${BLT_ROOT_DIR}/tests/smoke ${BLT_BUILD_DIR}/tests/smoke)
endif()
endif() # only load BLT once!