2019-12-10 10:08:54 +00:00
|
|
|
prusaslicer_add_cmake_project(
|
|
|
|
CGAL
|
2021-03-23 18:01:18 +00:00
|
|
|
# GIT_REPOSITORY https://github.com/CGAL/cgal.git
|
|
|
|
# GIT_TAG bec70a6d52d8aacb0b3d82a7b4edc3caa899184b # releases/CGAL-5.0
|
2019-12-10 11:50:52 +00:00
|
|
|
# For whatever reason, this keeps downloading forever (repeats downloads if finished)
|
2021-03-23 18:01:18 +00:00
|
|
|
URL https://github.com/CGAL/cgal/archive/releases/CGAL-5.0.zip
|
|
|
|
URL_HASH SHA256=bd9327be903ab7ee379a8a7a0609eba0962f5078d2497cf8e13e8e1598584154
|
2021-03-22 13:35:49 +00:00
|
|
|
DEPENDS dep_Boost dep_GMP dep_MPFR
|
2019-12-17 12:05:18 +00:00
|
|
|
)
|
|
|
|
|
2019-12-18 14:42:53 +00:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
|
|
|
# CGAL, for whatever reason, makes itself non-relocatable by writing the build directory into
|
|
|
|
# CGALConfig-installation-dirs.cmake and including it in configure time.
|
|
|
|
# If this file is not present, it will not consider the stored absolute path
|
2019-12-17 12:05:18 +00:00
|
|
|
ExternalProject_Add_Step(dep_CGAL dep_CGAL_relocation_fix
|
|
|
|
DEPENDEES install
|
2020-10-26 14:39:40 +00:00
|
|
|
|
2019-12-17 12:05:18 +00:00
|
|
|
COMMAND ${CMAKE_COMMAND} -E remove CGALConfig-installation-dirs.cmake
|
2019-12-18 14:42:53 +00:00
|
|
|
WORKING_DIRECTORY "${DESTDIR}/usr/local/${CMAKE_INSTALL_LIBDIR}/cmake/CGAL"
|
2019-12-20 09:33:53 +00:00
|
|
|
)
|
2020-10-26 14:39:40 +00:00
|
|
|
|
|
|
|
# Again, for whatever reason, CGAL thinks that its version is not relevant if
|
|
|
|
# configured as a header only library. Fixing it by placing a cmake version file
|
|
|
|
# besides the installed config file.
|
|
|
|
ExternalProject_Add_Step(dep_CGAL dep_CGAL_version_fix
|
|
|
|
DEPENDEES install
|
|
|
|
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy cgal/CGALConfigVersion.cmake "${DESTDIR}/usr/local/${CMAKE_INSTALL_LIBDIR}/cmake/CGAL/CGALConfigVersion.cmake"
|
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}"
|
|
|
|
)
|