2019-05-03 13:57:43 +08:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
|
2017-07-06 05:16:34 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO google/draco
|
2023-05-06 01:55:33 +08:00
|
|
|
REF "${VERSION}"
|
|
|
|
SHA512 d4bc48aeac23aba377d1770a46e6676cb01596a436493385fb0c4ef9ba3f0fae42027232131a3d438250909aff4311353e114925753d045cc585af42660be0b1
|
2017-07-06 05:16:34 +08:00
|
|
|
HEAD_REF master
|
2019-03-22 14:20:18 +08:00
|
|
|
PATCHES
|
|
|
|
fix-compile-error-uwp.patch
|
2021-05-12 04:57:05 +08:00
|
|
|
fix-uwperror.patch
|
2023-05-06 01:55:33 +08:00
|
|
|
fix-pkgconfig.patch
|
2021-11-05 03:57:01 +08:00
|
|
|
disable-symlinks.patch
|
2017-07-06 05:16:34 +08:00
|
|
|
)
|
|
|
|
|
2021-11-05 03:57:01 +08:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2017-07-06 05:16:34 +08:00
|
|
|
)
|
|
|
|
|
2021-11-05 03:57:01 +08:00
|
|
|
vcpkg_cmake_install()
|
2017-07-06 05:16:34 +08:00
|
|
|
|
2022-10-10 04:59:27 +08:00
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH share/cmake/${PORT})
|
2021-09-28 11:53:48 +08:00
|
|
|
vcpkg_fixup_pkgconfig()
|
2021-11-05 03:57:01 +08:00
|
|
|
|
2017-07-06 05:16:34 +08:00
|
|
|
# Install tools and plugins
|
2021-11-05 03:57:01 +08:00
|
|
|
vcpkg_copy_tools(
|
|
|
|
TOOL_NAMES
|
|
|
|
draco_encoder
|
|
|
|
draco_decoder
|
|
|
|
AUTO_CLEAN
|
|
|
|
)
|
2017-07-06 05:16:34 +08:00
|
|
|
|
2022-10-10 04:59:27 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include" "${CURRENT_PACKAGES_DIR}/debug/share")
|
2017-07-06 05:16:34 +08:00
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
|
2022-10-10 04:59:27 +08:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|