early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,3 @@
if(WIN32)
add_compile_definitions(NOMINMAX)
endif()

28
externals/vcpkg/ports/pdal-c/portfile.cmake vendored Executable file
View File

@@ -0,0 +1,28 @@
vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO PDAL/CAPI
REF v2.1.0
SHA512 07c671f83af93594d7792d770890205aad1a44803696f9567aa25f69a277fa5c3f4e9f9f5f0210ebd59f5cf75aff1f80ce532bd7bbd536a699724ceb6e3277fd
HEAD_REF master
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
"-DCMAKE_PROJECT_INCLUDE=${CMAKE_CURRENT_LIST_DIR}/cmake-project-include.cmake"
-DPDALC_ENABLE_CODE_COVERAGE:BOOL=OFF
-DPDALC_ENABLE_DOCS:BOOL=OFF
-DPDALC_ENABLE_TESTS:BOOL=OFF
-DCMAKE_DISABLE_FIND_PACKAGE_Git:BOOL=ON
)
vcpkg_cmake_install()
vcpkg_copy_pdbs()
# Remove headers from debug
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
# Install copyright
file(INSTALL "${SOURCE_PATH}/LICENSE.md" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

17
externals/vcpkg/ports/pdal-c/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,17 @@
{
"name": "pdal-c",
"version-string": "2.1",
"description": "C API for the Point Data Abstraction Library (PDAL)",
"homepage": "https://github.com/PDAL/CAPI#readme",
"supports": "!(windows & staticcrt)",
"dependencies": [
{
"name": "pdal",
"default-features": false
},
{
"name": "vcpkg-cmake",
"host": true
}
]
}