-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
276 lines (224 loc) · 12.7 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
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
########################################################################################################################
# CMAKE Settings
########################################################################################################################
cmake_minimum_required(VERSION 3.14)
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")
project(hops)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake/")
if (UNIX)
message(STATUS "Adjusting CMAKE_PREFIX_PATH on UNIX for CLP")
list(APPEND CMAKE_PREFIX_PATH /usr/lib/x86_64-linux-gnu)
endif (UNIX)
########################################################################################################################
# MSVC stuff
########################################################################################################################
if (CMAKE_GENERATOR MATCHES "Visual Studio")
add_definitions(-D_USE_MATH_DEFINES)
add_compile_options(/Ze)
add_compile_options(/bigobj)
endif ()
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
########################################################################################################################
# Build Parameters
########################################################################################################################
set(MKL_ROOT_DIR "~/intel/compilers_and_libraries/linux/mkl" CACHE PATH "Path to installed mkl directory.")
set(MKL_USE_interface lp64)
########################################################################################################################
# Set Options
########################################################################################################################
option(HOPS_DNEST4_SUPPORT "Enables Nested Sampling support with DNEST4. Use -DHOPS_DNEST4_SUPPORT=ON to enable." ON)
option(HOPS_BENCHMARKS "Enables compilation of Benchmarks (Requires Celero). Use -DHOPS_BENCHMARKS=ON to enable." OFF)
option(HOPS_DOCS "Enables generation of documentation. Use -DHOPS_DOCS=OFF to disable." ON)
option(HOPS_TUNING "Enables module for tuning, default is ON." ON)
option(HOPS_IO "Enables module for writing and reading csv. Not always required when using HOPS as a librarly. Default is OFF." ON)
option(HOPS_BINARIES "Enables compilation of hops executables. Use -DHOPS_BINARIES=OFF to disable." OFF)
option(HOPS_EXAMPLES "Enables compilation of hops examples. Use -DHOPS_EXAMPLES=OFF to disable." ON)
option(HOPS_TESTS "Enables compilation of unit tests. Use -DHOPS_TESTS=OFF to disable." ON)
option(HOPS_GUROBI "Enables use of gurobi, if available. Use -DHOPS_GUROBI=ON to enable." OFF)
option(HOPS_LP "Enables module for linear programming, if dependencies are available." ON)
option(HOPS_MPI "Enables module for using MPI, if a MPI implementation is available." ON)
option(HOPS_NO_INSTALL "Disables installation. Use -DHOPS_NO_INSTALL=ON to disable installation." OFF)
option(HOPS_BUILD_NATIVE "Enable this option for maximum performance. Disable it when linking to third-party software that also uses Eigen3 but is not compiled with -march=native" OFF)
set(HOPS_LIBRARY_TYPE SHARED CACHE STRING "Type of library to build. Options are HEADER_ONLY, STATIC or SHARED")
set_property(CACHE HOPS_LIBRARY_TYPE PROPERTY STRINGS HEADER_ONLY STATIC SHARED)
########################################################################################################################
# C++-Compiler Settings
########################################################################################################################
include(CheckCXXCompilerFlag)
set(CMAKE_C_FLAGS "${CMAKE_FLAGS} ${MPI_FLAGS}")
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${MPI_CXX_FLAGS}")
if (CMAKE_COMPILER_IS_GNUCXX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unknown-warning -Wno-pragmas -Wall -Wextra --pedantic-errors -Wno-deprecated-copy -Wno-expansion-to-defined")
set(CMAKE_CXX_FLAGS_DEBUG "-g")
elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unknown-warning-option -Wall -Wextra --pedantic-errors -Wno-deprecated -Wno-gnu-zero-variadic-macro-arguments")
elseif (CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4;/WX")
endif ()
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${MPI_EXE_LINKER_FLAGS}")
if (HOPS_BUILD_NATIVE)
message(STATUS "Building natively using -march=native")
CHECK_CXX_COMPILER_FLAG("-march=native" COMPILER_SUPPORTS_MARCH_NATIVE)
if (COMPILER_SUPPORTS_MARCH_NATIVE)
message(STATUS "Adding compiler flag march=native")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
else (COMPILER_SUPPORTS_MARCH_NATIVE)
message(WARNING "compiler does not support flag -march=native")
endif (COMPILER_SUPPORTS_MARCH_NATIVE)
else (HOPS_BUILD_NATIVE)
message(STATUS "NOT building natively using -march=native")
endif (HOPS_BUILD_NATIVE)
CHECK_CXX_COMPILER_FLAG("-O3" COMPILER_SUPPORTS_O3)
if (COMPILER_SUPPORTS_O3)
message(STATUS "Adding compiler flag -O3")
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
else ()
message(STATUS "Adding compiler flag -O2")
set(CMAKE_CXX_FLAGS_RELEASE "-O2")
endif ()
########################################################################################################################
# Pre-Third-Party-Search Definitions
########################################################################################################################
if (NOT ${CMAKE_BUILD_TYPE} STREQUAL "Debug")
message(STATUS "Disabling Runtime checks: Using Release mode for hops and Eigen")
add_definitions(-DNDEBUG)
else ()
message(STATUS "Enabling Runtime checks.")
endif (NOT ${CMAKE_BUILD_TYPE} STREQUAL "Debug")
########################################################################################################################
# System-Installed Third-Party Dependencies
########################################################################################################################
find_package(Doxygen)
find_package(Eigen3 REQUIRED)
find_package(MKL)
message(STATUS "FOUND MKL ? ${MKL_FOUND}")
########################################################################################################################
# Post-Third-Party-Search Definitions
########################################################################################################################
if (MKL_LIBRARY_DIR)
message(STATUS "Found MKL: Adding preprocessor definition EIGEN_USE_MKL_ALL")
add_definitions(-DEIGEN_USE_MKL_ALL)
endif (MKL_LIBRARY_DIR)
########################################################################################################################
# HOPS
########################################################################################################################
if (HOPS_LIBRARY_TYPE STREQUAL "HEADER_ONLY")
message(STATUS "Set to header-only installation")
set(SCOPE INTERFACE)
add_library(hops INTERFACE)
target_compile_definitions(hops INTERFACE HOPS_HEADER_ONLY)
if (HOPS_DNEST4_SUPPORT)
target_compile_definitions(hops INTERFACE HOPS_DNEST4_SUPPORT)
endif (HOPS_DNEST4_SUPPORT)
target_include_directories(hops INTERFACE ${EIGEN3_INCLUDE_DIR}
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
$<INSTALL_INTERFACE:include>
)
else (HOPS_LIBRARY_TYPE STREQUAL "HEADER_ONLY")
message(STATUS "Set to ${HOPS_LIBRARY_TYPE} library installation")
set(SCOPE PRIVATE)
add_library(hops ${HOPS_LIBRARY_TYPE})
target_compile_definitions(hops ${SCOPE} HOPS_HDF5_SUPPORT)
target_include_directories(hops PUBLIC ${EIGEN3_INCLUDE_DIR}
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
$<INSTALL_INTERFACE:include>
)
endif (HOPS_LIBRARY_TYPE STREQUAL "HEADER_ONLY")
add_subdirectory(src)
########################################################################################################################
# Linking libc++ and MKL support for faster linear algebra
########################################################################################################################
if (MKL_INCLUDE_DIR)
target_include_directories(hops ${SCOPE} ${MKL_INCLUDE_DIR})
endif (MKL_INCLUDE_DIR)
if (MKL_LIBRARY_DIR)
target_link_directories(hops ${SCOPE} ${MKL_LIBRARY_DIR})
endif (MKL_LIBRARY_DIR)
if (MKL_LIBRARIES)
target_link_libraries(hops ${SCOPE} ${MKL_LIBRARIES})
endif (MKL_LIBRARIES)
########################################################################################################################
# HOPS_DOCS
########################################################################################################################
if (HOPS_DOCS)
if (NOT_DOXYGEN_FOUND)
message(WARNING "Skipping Doxygen documentation, because Doxygen is not found.
Doxygen is needed to build the API docs.")
else ()
message(STATUS "Enabled Doxygen documentation. Use -DHOPS_DOCS=OFF to disable.")
set(DOCUMENTATION_DIR "docs")
set(SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/src")
set(doxy_main_page "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
set(doxyfile_in "${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in")
set(doxyfile "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile")
configure_file(${doxyfile_in} ${doxyfile} @ONLY)
add_custom_target(docs
COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile} && make -C ${CMAKE_CURRENT_BINARY_DIR}/docs/latex
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API docs with Doxygen"
VERBATIM
)
endif ()
else ()
message(STATUS "Disabled Doxygen generation. Use -DHOPS_DOCS=ON to enable.")
endif ()
########################################################################################################################
# HOPS_BENCHMARKS
########################################################################################################################
if (HOPS_BENCHMARKS)
message(STATUS "Enabled compilation of benchmarks. Use -DHOPS_BENCHMARKS=OFF to disable.")
add_subdirectory(benchmarks)
else ()
message(STATUS "Disabled compilation of benchmarks. Use -DHOPS_BENCHMARKS=ON to enable.")
endif ()
########################################################################################################################
# HOPS_BINARIES
########################################################################################################################
if (HOPS_BINARIES)
message(STATUS "Enabled compilation of executables. Use -DHOPS_BINARIES=OFF to disable.")
add_subdirectory(bin)
else ()
message(STATUS "Disabled compilation of executables. Use -DHOPS_BINARIES=ON to enable.")
endif ()
########################################################################################################################
# HOPS_EXAMPLES
########################################################################################################################
if (HOPS_EXAMPLES)
message(STATUS "Enabled compilation of examples. Use -DHOPS_EXAMPLES=OFF to disable.")
add_subdirectory(examples)
else ()
message(STATUS "Disabled compilation of examples. Use -DHOPS_EXAMPLES=ON to enable.")
endif ()
########################################################################################################################
# HOPS_TESTS
########################################################################################################################
if (HOPS_TESTS)
message(STATUS "Enabled compilation of tests. Use -DHOPS_TESTS=OFF to disable.")
enable_testing()
add_subdirectory(tests)
else ()
message(STATUS "Disabled compilation of tests. Use -DHOPS_TESTS=ON to enable.")
endif ()
########################################################################################################################
# Resources
########################################################################################################################
if (HOPS_BENCHMARKS OR HOPS_EXAMPLES OR HOPS_TESTS)
message(STATUS "Copying resources")
add_subdirectory(resources)
endif ()
########################################################################################################################
# Install
########################################################################################################################
if (NOT HOPS_NO_INSTALL)
install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/src/ DESTINATION include/
FILES_MATCHING
PATTERN "*.hpp"
PATTERN "*.h")
# TODO reinclude when hops-sampler is fixed
# if (HOPS_BINARIES)
# install(TARGETS hops-sampler DESTINATION bin/)
# endif ()
install(TARGETS hops EXPORT hops-config LIBRARY DESTINATION "lib")
install(EXPORT hops-config DESTINATION "lib")
endif (NOT HOPS_NO_INSTALL)