forked from PedestrianDynamics/jupedsim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
250 changed files
with
4,421 additions
and
3,725 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
################################################################################ | ||
# libfmt | ||
################################################################################ | ||
set(FMT_INSTALL OFF) | ||
add_subdirectory(fmt-10.1.1) | ||
set_target_properties(fmt PROPERTIES | ||
POSITION_INDEPENDENT_CODE ON | ||
SYSTEM ON | ||
) | ||
|
||
################################################################################ | ||
# boost | ||
################################################################################ | ||
find_package(Boost 1.82 | ||
REQUIRED | ||
CONFIG | ||
NO_DEFAULT_PATH | ||
PATHS | ||
${CMAKE_CURRENT_SOURCE_DIR}/boost-1.82.0 | ||
GLOBAL | ||
) | ||
################################################################################ | ||
# threading | ||
################################################################################ | ||
find_package(Threads REQUIRED GLOBAL) | ||
|
||
################################################################################ | ||
# CGAL | ||
################################################################################ | ||
# Silence CGAL CMake warning. No example data for CGAL will be loaded anyways | ||
set(CGAL_DATA_DIR "none") | ||
set(WITH_CGAL_ImageIO OFF) | ||
set(WITH_CGAL_Qt5 OFF) | ||
set(CGAL_DISABLE_GMP ON) | ||
find_package(CGAL 5.5 | ||
REQUIRED | ||
CONFIG | ||
NO_DEFAULT_PATH | ||
PATHS | ||
${CMAKE_CURRENT_SOURCE_DIR}/cgal-5.6.0 | ||
GLOBAL | ||
) | ||
|
||
################################################################################ | ||
# poly2tri | ||
################################################################################ | ||
add_subdirectory(poly2tri) | ||
|
||
################################################################################ | ||
# Python Interpreter / CPython | ||
################################################################################ | ||
set(Python_FIND_VIRTUALENV "FIRST") | ||
find_package(Python COMPONENTS Interpreter Development.Module REQUIRED GLOBAL) | ||
add_subdirectory(pybind11-2.11.1) | ||
set(Python_EXECUTABLE ${Python_EXECUTABLE} PARENT_SCOPE) | ||
|
||
################################################################################ | ||
# Googletest | ||
################################################################################ | ||
if(BUILD_TESTS) | ||
add_subdirectory(googletest-1.14.0) | ||
endif() | ||
|
||
################################################################################ | ||
# Googlebenchmarks | ||
################################################################################ | ||
if (BUILD_BENCHMARKS) | ||
set(BENCHMARK_ENABLE_TESTING OFF) | ||
set(BENCHMARK_ENABLE_INSTALL OFF) | ||
set(BENCHMARK_ENABLE_WERROR OFF) | ||
set(BENCHMARK_INSTALL_DOCS OFF) | ||
add_subdirectory(benchmark-1.8.2) | ||
endif () |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.