mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-24 00:18:10 +08:00
a9303736fd
* [LibLZMA] add a config-generated by CMake * bump control files of LibLZMA and dependent ports * [tiff] use proper liblzma target [OpenCV] add an explicit dependency on LibLZMA for static linking * [liblzma] fix header install path * [LibLZMA] avoid using targets in old symbols * fixes for windows-static and trying to see if CI is happier with a share/lib folder written in lowercase * [LibLZMA] use only modern CMake language, remove patch in favour of target public definition * [lzma] put symbols in cmake cache * [libxmlpp] remove CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS regression * [lzma] fix header install path * [liblzma] install wrapper to force config mode * [liblzma] remove function check inside cmake config since we know it will pass * [liblzma] wrapper fix * [tiff,geotiff] general cleanup and patch fixes * [libgeotiff] remove debug tools * [tesseract] modernize * [tiff] fix also tiff_library symbol * [pdal,libgeotiff] better library integration * [tiff] restore using unix i/o on UWP, since it was working... for sure win32 one cannot work * [tiff] enable lzma also on uwp, since it works and is requested by many dependencies * [selene] enable build on arm/arm64-windows, which was surely broken before * [lzma] uniform naming with cmake 3.14 * [podofo] fix regression, it requires openssl which was disabled in dependencies * [many ports] remove unnecessary mods * [boost-iostream] chmod * [openssl] fix regression due to missing architecture * [podofo] fix regression on uwp due to missing include * [libpq] explicitly fail on UWP, it should avoid being marked as regression * [shiva] fix regression on linux
79 lines
2.6 KiB
CMake
79 lines
2.6 KiB
CMake
# vcpkg portfile.cmake for PDAL
|
|
#
|
|
# NOTE: update the version string for new PDAL release
|
|
set(PDAL_VERSION_STR "1.7.1")
|
|
|
|
include(vcpkg_common_functions)
|
|
|
|
vcpkg_download_distfile(ARCHIVE
|
|
URLS "http://download.osgeo.org/pdal/PDAL-${PDAL_VERSION_STR}-src.tar.gz"
|
|
FILENAME "PDAL-${PDAL_VERSION_STR}-src.tar.gz"
|
|
SHA512 e3e63bb05930c1a28c4f46c7edfaa8e9ea20484f1888d845b660a29a76f1dd1daea3db30a98607be0c2eeb86930ec8bfd0965d5d7d84b07a4fe4cb4512da9b09
|
|
)
|
|
|
|
vcpkg_extract_source_archive_ex(
|
|
ARCHIVE ${ARCHIVE}
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
PATCHES
|
|
0001-win32_compiler_options.cmake.patch
|
|
0002-no-source-dir-writes.patch
|
|
0003-fix-copy-vendor.patch
|
|
)
|
|
|
|
file(REMOVE "${SOURCE_PATH}/pdal/gitsha.cpp")
|
|
file(REMOVE "${SOURCE_PATH}/cmake/modules/FindGDAL.cmake")
|
|
file(REMOVE "${SOURCE_PATH}/cmake/modules/FindGEOS.cmake")
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/FindGDAL.cmake DESTINATION ${SOURCE_PATH}/cmake/modules/)
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/FindGEOS.cmake DESTINATION ${SOURCE_PATH}/cmake/modules/)
|
|
|
|
# NOTE: CMake native BUILD_SHARED_LIBS option will be set by vcpkg_configure_cmake
|
|
# TODO: Remove this as soon as PDAL switches to use BUILD_SHARED_LIBS
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
set(PDAL_BUILD_STATIC OFF)
|
|
else()
|
|
set(PDAL_BUILD_STATIC ON)
|
|
endif()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DPDAL_BUILD_STATIC:BOOL=${PDAL_BUILD_STATIC}
|
|
-DWITH_TESTS:BOOL=OFF
|
|
-DWITH_COMPLETION:BOOL=OFF
|
|
)
|
|
|
|
vcpkg_install_cmake(ADD_BIN_TO_PATH)
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/pdal/cmake)
|
|
vcpkg_copy_pdbs()
|
|
|
|
# Install copyright
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE.txt
|
|
DESTINATION ${CURRENT_PACKAGES_DIR}/share/pdal RENAME copyright
|
|
)
|
|
|
|
# Install PDAL executable
|
|
file(GLOB _pdal_apps ${CURRENT_PACKAGES_DIR}/bin/*.exe)
|
|
file(COPY ${_pdal_apps} DESTINATION ${CURRENT_PACKAGES_DIR}/tools/pdal)
|
|
file(REMOVE ${_pdal_apps})
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/${PORT})
|
|
|
|
# Post-install clean-up
|
|
file(REMOVE_RECURSE
|
|
${CURRENT_PACKAGES_DIR}/lib/pdal
|
|
${CURRENT_PACKAGES_DIR}/debug/lib/pdal
|
|
${CURRENT_PACKAGES_DIR}/debug/include
|
|
${CURRENT_PACKAGES_DIR}/debug/share
|
|
)
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/bin ${CURRENT_PACKAGES_DIR}/bin)
|
|
else()
|
|
file(GLOB _pdal_bats ${CURRENT_PACKAGES_DIR}/bin/*.bat)
|
|
file(REMOVE ${_pdal_bats})
|
|
file(GLOB _pdal_bats ${CURRENT_PACKAGES_DIR}/debug/bin/*.bat)
|
|
file(REMOVE ${_pdal_bats})
|
|
file(GLOB _pdal_apps ${CURRENT_PACKAGES_DIR}/debug/bin/*.exe)
|
|
file(REMOVE ${_pdal_apps})
|
|
endif()
|