vcpkg/ports/sdformat9/portfile.cmake
JonLiu1993 5d95142670
[sdformat6/sdformat9/sdformat10]sets correct environment variable (#37370)
Fixes #37338

Fix error:
````
CMake Warning (dev) at ports/sdformat6/portfile.cmake:30 (set):
  Only the first value argument is used when setting an environment variable.
  Argument 'C:\Program Files\Microsoft Visual
  Studio\2022\Enterprise\Common7\IDE\VC\VCPackages' and later are unused.
````
2024-03-11 20:39:47 -07:00

43 lines
1.3 KiB
CMake

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO osrf/sdformat
REF a978ade73e7b3509d378667dca394681e55ca068 #9.8.0
SHA512 958c0613da7c885f81cceee726da10574188e5edafb7d3aca680e40bbdca6ff1bc7b721ee1c56c53e3973960ae715912adfa6541cf3e35d32a5dc2ef2a997505
HEAD_REF sdf9
PATCHES
fix-dependency-urdfdom.patch
fix-quote.patch
no-absolute.patch
use-external-tinyxml-windows.patch
)
# Ruby is required by the sdformat build process
vcpkg_find_acquire_program(RUBY)
get_filename_component(RUBY_PATH "${RUBY}" DIRECTORY)
set(_path $ENV{PATH})
vcpkg_add_to_path("${RUBY_PATH}")
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DBUILD_TESTING=OFF
-DUSE_INTERNAL_URDF=OFF
)
vcpkg_cmake_install()
# Restore original path
set(ENV{PATH} "${_path}")
# Fix cmake targets and pkg-config file location
vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/sdformat9")
vcpkg_fixup_pkgconfig()
# Remove debug files
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include"
"${CURRENT_PACKAGES_DIR}/debug/lib/cmake"
"${CURRENT_PACKAGES_DIR}/debug/share")
# Handle copyright
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)