aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/cgal
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/cgal')
-rw-r--r--vcpkg/ports/cgal/portfile.cmake56
-rw-r--r--vcpkg/ports/cgal/usage5
-rw-r--r--vcpkg/ports/cgal/vcpkg.json78
3 files changed, 139 insertions, 0 deletions
diff --git a/vcpkg/ports/cgal/portfile.cmake b/vcpkg/ports/cgal/portfile.cmake
new file mode 100644
index 0000000..e23de10
--- /dev/null
+++ b/vcpkg/ports/cgal/portfile.cmake
@@ -0,0 +1,56 @@
+set(VCPKG_BUILD_TYPE release) # header-only
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO CGAL/cgal
+ REF v${VERSION}
+ SHA512 28963cdbf84d516290da69ca2ad5c90ec61dd9ca9cd97643ccf5b553c406e96a82621270214c0c81c32da7f8c388090a304d229925ed6e1548dbce3abcf1a259
+ HEAD_REF master
+)
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DCGAL_HEADER_ONLY=ON
+ -DCGAL_INSTALL_CMAKE_DIR=share/cgal
+ -DBUILD_TESTING=OFF
+ -DBUILD_DOC=OFF
+ -DCGAL_BUILD_THREE_DOC=OFF
+ ${FEATURE_OPTIONS}
+ MAYBE_UNUSED_VARIABLES
+ CGAL_BUILD_THREE_DOC
+ CGAL_HEADER_ONLY
+)
+
+vcpkg_cmake_install()
+
+vcpkg_cmake_config_fixup()
+
+vcpkg_copy_pdbs()
+
+# Clean
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
+if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
+ file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin")
+else()
+ foreach(ROOT "${CURRENT_PACKAGES_DIR}/bin")
+ file(REMOVE
+ "${ROOT}/cgal_create_CMakeLists"
+ "${ROOT}/cgal_create_cmake_script"
+ "${ROOT}/cgal_make_macosx_app"
+ )
+ endforeach()
+endif()
+
+file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/share/doc" "${CURRENT_PACKAGES_DIR}/share/man")
+
+set(LICENSES
+ "${SOURCE_PATH}/Installation/LICENSE"
+ "${SOURCE_PATH}/Installation/LICENSE.BSL"
+ "${SOURCE_PATH}/Installation/LICENSE.RFL"
+ "${SOURCE_PATH}/Installation/LICENSE.GPL"
+ "${SOURCE_PATH}/Installation/LICENSE.LGPL"
+)
+
+vcpkg_install_copyright(FILE_LIST ${LICENSES})
+
+file(INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
diff --git a/vcpkg/ports/cgal/usage b/vcpkg/ports/cgal/usage
new file mode 100644
index 0000000..9ea12d7
--- /dev/null
+++ b/vcpkg/ports/cgal/usage
@@ -0,0 +1,5 @@
+The package cgal provides CMake targets:
+
+ find_package(CGAL CONFIG REQUIRED)
+ target_link_libraries(main PRIVATE CGAL::CGAL)
+
diff --git a/vcpkg/ports/cgal/vcpkg.json b/vcpkg/ports/cgal/vcpkg.json
new file mode 100644
index 0000000..34ac287
--- /dev/null
+++ b/vcpkg/ports/cgal/vcpkg.json
@@ -0,0 +1,78 @@
+{
+ "name": "cgal",
+ "version": "6.0.1",
+ "description": "The Computational Geometry Algorithms Library (CGAL) is a C++ library that aims to provide easy access to efficient and reliable algorithms in computational geometry.",
+ "homepage": "https://github.com/CGAL/cgal",
+ "license": "GPL-3.0-or-later AND LGPL-3.0-or-later AND BSL-1.0",
+ "supports": "!xbox",
+ "dependencies": [
+ "boost-accumulators",
+ "boost-algorithm",
+ "boost-bimap",
+ "boost-callable-traits",
+ "boost-concept-check",
+ "boost-container",
+ "boost-core",
+ "boost-detail",
+ "boost-filesystem",
+ "boost-format",
+ "boost-functional",
+ "boost-fusion",
+ "boost-geometry",
+ "boost-graph",
+ "boost-heap",
+ "boost-intrusive",
+ "boost-iostreams",
+ "boost-iterator",
+ "boost-lambda",
+ "boost-logic",
+ "boost-math",
+ "boost-mpl",
+ "boost-multi-array",
+ "boost-multi-index",
+ "boost-multiprecision",
+ "boost-numeric-conversion",
+ "boost-optional",
+ "boost-parameter",
+ "boost-pool",
+ "boost-preprocessor",
+ "boost-property-map",
+ "boost-property-tree",
+ "boost-ptr-container",
+ "boost-random",
+ "boost-range",
+ "boost-serialization",
+ "boost-spirit",
+ "boost-thread",
+ "boost-tuple",
+ "boost-type-traits",
+ "boost-units",
+ "boost-utility",
+ "boost-variant",
+ "gmp",
+ "mpfr",
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ },
+ "zlib"
+ ],
+ "features": {
+ "qt": {
+ "description": "Qt GUI support for CGAL",
+ "dependencies": [
+ "eigen3",
+ {
+ "name": "qtbase",
+ "default-features": false
+ },
+ "qtdeclarative",
+ "qtsvg"
+ ]
+ }
+ }
+}