vcpkg/ports/ms-gltf/portfile.cmake

40 lines
1.3 KiB
CMake
Raw Normal View History

if(VCPKG_TARGET_IS_WINDOWS)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO microsoft/glTF-SDK
[rapidjson] [ms-gltf] Upgrade up to 2022-06-28 (#21112) * Add files via upload * [new port] avro-cpp * add boost-format * remove comments * remove comments * [rapidjson] Upgrade up to 2021-11-01 * [rapidjson] Upgrade up to 2021-11-01 * fix remarks * fix remarks * Update ports/rapidjson/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update ports/rapidjson/vcpkg.json Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * fix remarks * fix remarks * merge with master * add version * update hash * Update ports/rapidjson/portfile.cmake Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com> * Update ports/rapidjson/portfile.cmake Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com> * update hash * Update ports/rapidjson/vcpkg.json Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com> * update version * update hash * update hash * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * update ms-gltf * Update ports/rapidjson/portfile.cmake Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com> * update hash Co-authored-by: Alexander Smyslov <aleksandr.smyslov@libertexgroup.com> Co-authored-by: Smyslov Alexander Nikolayevich <aleksandr.smyslov@fxclub.com> Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: Frank <65999885+FrankXie05@users.noreply.github.com>
2022-07-01 04:36:33 +08:00
REF eaccf166e2718c6133db426545b6d008cb7ad79f # 28-06-2022
SHA512 112e31d2f42d2fb22060a687f7d33f22e677d8d7eca006eb8c1edef6a61b8bad637df15492665656ea88a5a0b980851eb978a180b4a01d307d1bbc92f63500f1
HEAD_REF master
PATCHES
fix-install.patch
)
# note: Test/Sample executables won't be installed
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
test ENABLE_UNIT_TESTS
samples ENABLE_SAMPLES
)
# note: Platform-native buildsystem will be more helpful to launch/debug the tests/samples.
# note: The PDB file path is making Ninja fails to install.
# For Windows, we rely on /MP. The other platforms should be able to build with PREFER_NINJA.
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
WINDOWS_USE_MSBUILD
OPTIONS
${FEATURE_OPTIONS}
)
vcpkg_cmake_install()
vcpkg_copy_pdbs()
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")