-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
332 lines (274 loc) · 12 KB
/
CMakeLists.txt
File metadata and controls
332 lines (274 loc) · 12 KB
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
# Detects whether this is a top-level project
get_directory_property(HAS_PARENT PARENT_DIRECTORY)
if(HAS_PARENT)
set(IPC_TOOLKIT_TOPLEVEL_PROJECT OFF)
else()
set(IPC_TOOLKIT_TOPLEVEL_PROJECT ON)
endif()
# Check required CMake version
set(REQUIRED_CMAKE_VERSION "3.24.0")
if(IPC_TOOLKIT_TOPLEVEL_PROJECT)
cmake_minimum_required(VERSION ${REQUIRED_CMAKE_VERSION})
else()
# Don't use cmake_minimum_required here to avoid implicitly overriding parent policies
if(${CMAKE_VERSION} VERSION_LESS ${REQUIRED_CMAKE_VERSION})
message(FATAL_ERROR "CMake required version to build IPC Toolkit is ${REQUIRED_CMAKE_VERSION}")
endif()
endif()
# Include user-provided default options if available. We do that before the main
# `project()` so that we can define the C/C++ compilers from the option file.
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/IPCToolkitOptions.cmake)
message(STATUS "Using local options file: ${CMAKE_CURRENT_SOURCE_DIR}/IPCToolkitOptions.cmake")
include(${CMAKE_CURRENT_SOURCE_DIR}/IPCToolkitOptions.cmake)
endif()
# Enable ccache if available
find_program(CCACHE_PROGRAM ccache)
if(CCACHE_PROGRAM)
option(IPC_TOOLKIT_WITH_CCACHE "Enable ccache when building IPC Toolkit" ${IPC_TOOLKIT_TOPLEVEL_PROJECT})
else()
option(IPC_TOOLKIT_WITH_CCACHE "Enable ccache when building IPC Toolkit" OFF)
endif()
if(IPC_TOOLKIT_WITH_CCACHE AND CCACHE_PROGRAM)
message(STATUS "Enabling Ccache support (${CCACHE_PROGRAM})")
set(ccacheEnv
CCACHE_BASEDIR=${CMAKE_BINARY_DIR}
CCACHE_SLOPPINESS=clang_index_store,include_file_ctime,include_file_mtime,locale,pch_defines,time_macros
)
foreach(lang IN ITEMS C CXX)
set(CMAKE_${lang}_COMPILER_LAUNCHER
${CMAKE_COMMAND} -E env ${ccacheEnv} ${CCACHE_PROGRAM}
)
endforeach()
endif()
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
################################################################################
# CMake Policies
################################################################################
cmake_policy(SET CMP0054 NEW) # Only interpret if() arguments as variables or keywords when unquoted.
cmake_policy(SET CMP0076 NEW) # target_sources() command converts relative paths to absolute.
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.24")
cmake_policy(SET CMP0135 NEW) # Set the timestamps of all extracted contents to the time of the extraction.
endif()
cmake_policy(SET CMP0114 NEW) # Support the Xcode "new build system"
################################################################################
project(IPCToolkit
DESCRIPTION "A set of reusable functions to integrate IPC into an existing simulation."
LANGUAGES CXX
VERSION "1.6.0")
if(IPC_TOOLKIT_TOPLEVEL_PROJECT)
option(IPC_TOOLKIT_BUILD_TESTS "Build unit-tests" ON)
option(IPC_TOOLKIT_BUILD_PYTHON "Build Python bindings" OFF)
else()
# If this is not the top-level project, we don't want to build tests or Python
# bindings. This is useful for projects that use IPC Toolkit as a submodule.
set(IPC_TOOLKIT_BUILD_TESTS OFF CACHE BOOL "Build unit-tests" FORCE)
set(IPC_TOOLKIT_BUILD_PYTHON OFF CACHE BOOL "Build Python bindings" FORCE)
endif()
option(IPC_TOOLKIT_WITH_CUDA "Enable CUDA CCD" OFF)
option(IPC_TOOLKIT_WITH_SIMD "Enable SIMD" ON)
option(IPC_TOOLKIT_WITH_RATIONAL_INTERSECTION "Use rational edge-triangle intersection check" OFF)
option(IPC_TOOLKIT_WITH_ROBIN_MAP "Use Tessil's robin-map rather than std maps" ON)
option(IPC_TOOLKIT_WITH_ABSEIL "Use Abseil's hash functions" ON)
option(IPC_TOOLKIT_WITH_FILIB "Use filib for interval arithmetic" ON)
option(IPC_TOOLKIT_WITH_INEXACT_CCD "Use the original inexact CCD method of IPC" OFF)
option(IPC_TOOLKIT_WITH_PROFILER "Enable performance profiler" OFF)
# Advanced options
option(IPC_TOOLKIT_WITH_CODE_COVERAGE "Enable coverage reporting" OFF)
mark_as_advanced(IPC_TOOLKIT_WITH_CODE_COVERAGE) # This is used in GitHub Actions
set(IPC_TOOLKIT_VERTEX_DERIVATIVE_LAYOUT "RowMajor" CACHE STRING "Layout of the vertex derivatives")
set_property(CACHE IPC_TOOLKIT_VERTEX_DERIVATIVE_LAYOUT PROPERTY STRINGS "ColMajor" "RowMajor")
mark_as_advanced(IPC_TOOLKIT_VERTEX_DERIVATIVE_LAYOUT) # This is an advanced option that most users won't care about.
# Set default minimum C++ standard
if(IPC_TOOLKIT_TOPLEVEL_PROJECT)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
endif()
### Configuration
set(IPC_TOOLKIT_SOURCE_DIR "${PROJECT_SOURCE_DIR}/src/ipc")
set(IPC_TOOLKIT_INCLUDE_DIR "${PROJECT_SOURCE_DIR}/src")
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/ipc_toolkit/")
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/recipes/")
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/find/")
# General CMake utils
include(ipc_toolkit_cpm_cache)
include(ipc_toolkit_use_colors)
# Generate position-independent code by default
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
################################################################################
# Verify Options
################################################################################
# CUDA support
if(IPC_TOOLKIT_WITH_CUDA)
# If CMAKE_CUDA_ARCHITECTURES was not specified, set it to native.
if(DEFINED CMAKE_CUDA_ARCHITECTURES)
message(STATUS "CMAKE_CUDA_ARCHITECTURES was specified, skipping auto-detection")
else()
message(STATUS "CMAKE_CUDA_ARCHITECTURES was not specified, set it to native")
set(CMAKE_CUDA_ARCHITECTURES "native")
endif()
message(STATUS "Targeting CUDA_ARCHITECTURES \"${CMAKE_CUDA_ARCHITECTURES}\"")
# Enable CUDA support
enable_language(CUDA)
endif()
## SIMD support
if(IPC_TOOLKIT_WITH_SIMD)
# Figure out SIMD support
message(STATUS "Testing SIMD capabilities...")
find_package(SIMD)
if (SIMD_CXX_FLAGS)
message(STATUS "SIMD support found: ${SIMD_CXX_FLAGS}")
else()
message(WARNING "SIMD support requested but not found. Continuing without SIMD.")
set(IPC_TOOLKIT_WITH_SIMD OFF CACHE BOOL "Enable SIMD" FORCE)
endif()
endif()
################################################################################
# IPC Toolkit Library
################################################################################
# Add an empty library and fill in the list of sources in `src/ipc/CMakeLists.txt`.
add_library(ipc_toolkit)
add_library(ipc::toolkit ALIAS ipc_toolkit)
if(IPC_TOOLKIT_WITH_CUDA)
# We need to explicitly state that we need all CUDA files in the particle
# library to be built with -dc as the member functions could be called by
# other libraries and executables.
set_target_properties(ipc_toolkit PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
endif()
# Fill in configuration options
configure_file(
"${IPC_TOOLKIT_SOURCE_DIR}/config.hpp.in"
"${PROJECT_BINARY_DIR}/include/ipc/config.hpp")
# Add source and header files to ipc_toolkit
add_subdirectory("${IPC_TOOLKIT_SOURCE_DIR}")
# Public include directory for IPC Toolkit
target_include_directories(ipc_toolkit PUBLIC
"${IPC_TOOLKIT_INCLUDE_DIR}" # public headers
"${PROJECT_BINARY_DIR}/include" # generated config.hpp
)
# Folder name for IDE
set_target_properties(ipc_toolkit PROPERTIES FOLDER "SRC")
get_target_property(IPC_TOOLKIT_SOURCES ipc_toolkit SOURCES)
source_group(TREE "${PROJECT_SOURCE_DIR}" FILES ${IPC_TOOLKIT_SOURCES})
################################################################################
# Dependencies
################################################################################
# Eigen
include(eigen)
target_link_libraries(ipc_toolkit PUBLIC Eigen3::Eigen)
# libigl
include(libigl)
target_link_libraries(ipc_toolkit PRIVATE igl::core igl::predicates)
# TBB
include(onetbb)
target_link_libraries(ipc_toolkit PRIVATE TBB::tbb)
# Provably conservative CCD of [Wang and Ferguson et al. 2021]
include(tight_inclusion)
target_link_libraries(ipc_toolkit PRIVATE tight_inclusion::tight_inclusion)
# Scalable CCD (STQ broad phase and GPU Tight Inclusion)
include(scalable_ccd)
target_link_libraries(ipc_toolkit PRIVATE scalable_ccd::scalable_ccd)
# Logger
include(spdlog)
target_link_libraries(ipc_toolkit PUBLIC spdlog::spdlog)
# TinyAD
include(tinyad)
# TODO: Make this a private dependency once we stop exposing TinyAD types in the public API.
target_link_libraries(ipc_toolkit PUBLIC TinyAD::TinyAD)
# CCD
if(IPC_TOOLKIT_WITH_INEXACT_CCD)
# Etienne Vouga's CTCD Library for the floating point root finding algorithm
include(evouga_ccd)
target_link_libraries(ipc_toolkit PRIVATE evouga::ccd)
endif()
# rational-cpp (requires GMP)
if(IPC_TOOLKIT_WITH_RATIONAL_INTERSECTION)
include(rational_cpp)
target_link_libraries(ipc_toolkit PRIVATE rational::rational)
endif()
# Faster unordered map
if(IPC_TOOLKIT_WITH_ROBIN_MAP)
include(robin_map)
target_link_libraries(ipc_toolkit PRIVATE tsl::robin_map)
endif()
# Hashes
if(IPC_TOOLKIT_WITH_ABSEIL)
include(abseil)
target_link_libraries(ipc_toolkit PRIVATE absl::hash)
endif()
# Intervals
if(IPC_TOOLKIT_WITH_FILIB)
include(filib)
target_link_libraries(ipc_toolkit PUBLIC filib::filib)
endif()
if(IPC_TOOLKIT_WITH_PROFILER)
# Add nlohmann/json for the profiler
include(json)
target_link_libraries(ipc_toolkit PUBLIC nlohmann_json::nlohmann_json)
endif()
# Extra warnings (link last for highest priority)
include(ipc_toolkit_warnings)
target_link_libraries(ipc_toolkit PRIVATE ipc::toolkit::warnings)
################################################################################
# Compiler options
################################################################################
## SIMD support
if(IPC_TOOLKIT_WITH_SIMD)
# Add SIMD flags to compiler flags
target_compile_options(ipc_toolkit PRIVATE ${SIMD_CXX_FLAGS})
# Link against cross-platform xsimd library
include(xsimd)
target_link_libraries(ipc_toolkit PRIVATE xsimd::xsimd)
# Disable vectorization in Eigen since I've found it to have alignment issues.
# NOTE: I don't know why this needs to be public, but it crashes if I make it private.
target_compile_definitions(ipc_toolkit PUBLIC EIGEN_DONT_VECTORIZE=1)
endif()
# For MSVC, do not use the min and max macros.
if(MSVC)
target_compile_definitions(ipc_toolkit PRIVATE NOMINMAX)
endif()
# Use C++17
target_compile_features(ipc_toolkit PUBLIC cxx_std_17)
################################################################################
# Tests
################################################################################
# Enable unit testing at the root level
if(IPC_TOOLKIT_BUILD_TESTS)
include(CTest)
enable_testing()
add_subdirectory(tests)
endif()
################################################################################
# Code Coverage
################################################################################
if(IPC_TOOLKIT_WITH_CODE_COVERAGE AND CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
# Add required flags (GCC & LLVM/Clang)
target_compile_options(ipc_toolkit PRIVATE
-g # generate debug info
--coverage # sets all required flags
-fprofile-update=atomic
)
target_link_options(ipc_toolkit PUBLIC
--coverage
-fprofile-update=atomic
)
endif()
################################################################################
# Python bindings
################################################################################
if(IPC_TOOLKIT_BUILD_PYTHON)
add_subdirectory(python)
endif()
################################################################################
# Xcode
################################################################################
if (IPC_TOOLKIT_TOPLEVEL_PROJECT AND CMAKE_GENERATOR STREQUAL "Xcode")
set(CMAKE_XCODE_SCHEME_LAUNCH_CONFIGURATION "${CMAKE_BUILD_TYPE}")
set_target_properties(ipc_toolkit PROPERTIES XCODE_GENERATE_SCHEME ON)
if(IPC_TOOLKIT_BUILD_TESTS)
set_target_properties(ipc_toolkit_tests PROPERTIES XCODE_GENERATE_SCHEME ON)
endif()
if(IPC_TOOLKIT_BUILD_PYTHON)
set_target_properties(ipctk PROPERTIES XCODE_GENERATE_SCHEME ON)
endif()
endif()