[clipper2] Add new port (#29303)

* [clipper2] Add new port

* [clipper2] Add usage. Static-only for windows

* [clipper2] Update hash
This commit is contained in:
Andrew Kornilov 2023-02-03 07:04:34 +03:00 committed by GitHub
parent ff666f83e0
commit bb9766f573
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,25 @@
if(VCPKG_TARGET_IS_WINDOWS)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO AngusJohnson/Clipper2
REF "Clipper2_${VERSION}"
SHA512 e996ef8a2ec412189f0ba95a6f200c0818f9755930b05cd20b630d33760dec619c6a735ac056f5dfbaccf793bf6ebeb7b6c102fd9ff83b0d297a4d660389d8d9
HEAD_REF main
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}/CPP"
OPTIONS
-DCLIPPER2_EXAMPLES=OFF
-DCLIPPER2_TESTS=OFF
-DCLIPPER2_UTILS=OFF
)
vcpkg_cmake_install()
vcpkg_fixup_pkgconfig()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")

12
ports/clipper2/usage Normal file
View File

@ -0,0 +1,12 @@
The package clipper2 can be imported via CMake FindPkgConfig module:
# Clipper2
find_package(PkgConfig REQUIRED)
pkg_check_modules(Clipper2 REQUIRED IMPORTED_TARGET Clipper2)
target_link_libraries(main PkgConfig::Clipper2)
# Clipper2Z
find_package(PkgConfig REQUIRED)
pkg_check_modules(Clipper2Z REQUIRED IMPORTED_TARGET Clipper2Z)
target_link_libraries(main PkgConfig::Clipper2Z)

13
ports/clipper2/vcpkg.json Normal file
View File

@ -0,0 +1,13 @@
{
"name": "clipper2",
"version": "1.1.1",
"description": "Polygon Clipping and Offsetting",
"homepage": "http://www.angusj.com/clipper2",
"license": "BSL-1.0",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
]
}

View File

@ -1512,6 +1512,10 @@
"baseline": "2019-04-30",
"port-version": 2
},
"clipper2": {
"baseline": "1.1.1",
"port-version": 0
},
"clockutils": {
"baseline": "1.1.1",
"port-version": 1

View File

@ -0,0 +1,9 @@
{
"versions": [
{
"git-tree": "3768ef634c9d40c4bb981380ed16756c16eab600",
"version": "1.1.1",
"port-version": 0
}
]
}