diff options
Diffstat (limited to 'vcpkg/ports/gz-msgs/portfile.cmake')
| -rw-r--r-- | vcpkg/ports/gz-msgs/portfile.cmake | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/vcpkg/ports/gz-msgs/portfile.cmake b/vcpkg/ports/gz-msgs/portfile.cmake new file mode 100644 index 0000000..cef2ace --- /dev/null +++ b/vcpkg/ports/gz-msgs/portfile.cmake @@ -0,0 +1,36 @@ +string(REGEX MATCH "^[0-9]+" VERSION_MAJOR "${VERSION}") +string(REGEX REPLACE "^gz-" "" PACKAGE_NAME "${PORT}") + +set(options "") +if(VCPKG_CROSSCOMPILING) + list(APPEND options + "-Dgz-msgs${VERSION_MAJOR}_PROTO_GENERATOR_PLUGIN=${CURRENT_HOST_INSTALLED_DIR}/tools/gz-msgs${VERSION_MAJOR}/gz-msgs${VERSION_MAJOR}_protoc_plugin${VCPKG_HOST_EXECUTABLE_SUFFIX}" + "-Dgz-msgs${VERSION_MAJOR}_PROTOC_EXECUTABLE=${CURRENT_HOST_INSTALLED_DIR}/tools/protobuf/protoc${VCPKG_HOST_EXECUTABLE_SUFFIX}" + ) +endif() + +vcpkg_find_acquire_program(PYTHON3) + +ignition_modular_library( + NAME ${PACKAGE_NAME} + REF ${PORT}${VERSION_MAJOR}_${VERSION} + VERSION ${VERSION} + SHA512 43c75eb30f00708c54f3de54737a4f1bda4a77a1d1ca3ba1354270beb01db078e73b909fdebb33b938a45a9808d4d2f2c164efe01c98aaec7a88003c85fab6f9 + OPTIONS + ${options} + "-DCMAKE_PROJECT_INCLUDE=${CURRENT_PORT_DIR}/cmake-project-include.cmake" + "-DPython3_EXECUTABLE=${PYTHON3}" + PATCHES + remove_ruby.patch + move_bin_to_tools.patch + pthread.diff +) + +file(GLOB python_files_debug "${CURRENT_PACKAGES_DIR}/debug/bin/${PORT}${VERSION_MAJOR}_*.py") +file(GLOB python_files_release "${CURRENT_PACKAGES_DIR}/bin/${PORT}${VERSION_MAJOR}_*.py") +file(COPY ${python_files_release} DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}${VERSION_MAJOR}") +file(REMOVE ${python_files_release} ${python_files_debug}) + +vcpkg_copy_tools(TOOL_NAMES "${PORT}${VERSION_MAJOR}_protoc_plugin" AUTO_CLEAN + DESTINATION "${CURRENT_PACKAGES_DIR}/tools/${PORT}${VERSION_MAJOR}" +) |