diff options
Diffstat (limited to 'vcpkg/ports/gz-utils')
| -rw-r--r-- | vcpkg/ports/gz-utils/portfile.cmake | 10 | ||||
| -rw-r--r-- | vcpkg/ports/gz-utils/vcpkg.json | 15 |
2 files changed, 25 insertions, 0 deletions
diff --git a/vcpkg/ports/gz-utils/portfile.cmake b/vcpkg/ports/gz-utils/portfile.cmake new file mode 100644 index 0000000..24f8ca0 --- /dev/null +++ b/vcpkg/ports/gz-utils/portfile.cmake @@ -0,0 +1,10 @@ +string(REGEX MATCH "^[0-9]+" VERSION_MAJOR ${VERSION}) +string(REGEX MATCH "^gz-([a-z-]+)" MATCHED_VALUE ${PORT}) +set(PACKAGE_NAME ${CMAKE_MATCH_1}) + +ignition_modular_library(NAME ${PACKAGE_NAME} + REF ${PORT}${VERSION_MAJOR}_${VERSION} + VERSION ${VERSION} + SHA512 abac6e68ccb9b036dab4a49e5c9c64045045311595ac5d7a96222f8368d8fe4b007fe274abe45b877df19dce12bb08350e6600a28f040bb09acc3f15a5851bd2 + PATCHES +) diff --git a/vcpkg/ports/gz-utils/vcpkg.json b/vcpkg/ports/gz-utils/vcpkg.json new file mode 100644 index 0000000..9af644d --- /dev/null +++ b/vcpkg/ports/gz-utils/vcpkg.json @@ -0,0 +1,15 @@ +{ + "name": "gz-utils", + "version": "3.1.0", + "description": "Ignition Utils, a component of Ignition Robotics, provides general purpose classes and functions designed for robotic applications.", + "homepage": "https://gazebosim.org", + "license": "Apache-2.0", + "dependencies": [ + "gz-cmake", + { + "name": "ignition-modularscripts", + "host": true + }, + "spdlog" + ] +} |