-
Notifications
You must be signed in to change notification settings - Fork 0
/
SetupBLT.cmake
205 lines (178 loc) · 6.87 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
###############################################################################
# Copyright (c) 2017, Lawrence Livermore National Security, LLC.
#
# Produced at the Lawrence Livermore National Laboratory
#
# LLNL-CODE-725085
#
# All rights reserved.
#
# This file is part of BLT.
#
# For additional details, please also read BLT/LICENSE.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the disclaimer below.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the disclaimer (as noted below) in the
# documentation and/or other materials provided with the distribution.
#
# * Neither the name of the LLNS/LLNL nor the names of its contributors may
# be used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
# LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
###############################################################################
if (NOT BLT_LOADED)
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 "
"CMakeCache.txt from the 'src' dir and configure an "
"out-of-source build in another directory.")
endif()
################################
# Setup build options and their default values
################################
include(${BLT_ROOT_DIR}/cmake/BLTOptions.cmake)
################################
# 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 == ON
################################
if(ENABLE_FOLDERS)
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
endif()
################################
# Macros
################################
include(${BLT_ROOT_DIR}/cmake/BLTMacros.cmake)
################################
# Standard TPL support
################################
include(${BLT_ROOT_DIR}/cmake/thirdparty/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
################################
# Defines the layout of the build directory. Namely,
# it indicates the location where the various header files should go,
# where to store libraries (static or shared), the location of the
# bin directory for all executables and the location for fortran modules.
# Set the path where all the headers will be stored
if ( ENABLE_COPY_HEADERS )
set(HEADER_INCLUDES_DIRECTORY
${PROJECT_BINARY_DIR}/include/
CACHE PATH
"Directory where all headers will go in the build tree"
)
include_directories(${HEADER_INCLUDES_DIRECTORY})
endif()
# 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
)
################################
# 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 ${BLT_BUILD_DIR}/tests)
endif()
endif() # only load BLT once!