mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:39:06 +08:00
22 lines
791 B
CMake
22 lines
791 B
CMake
include(vcpkg_common_functions)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Microsoft/cppwinrt
|
|
REF fall_2017_creators_update_for_vs_15.3
|
|
SHA512 e3f987ed3f3dce019b8bf9f5451e53b42357473a003b8c14f9009e1848ee0463286bd46fdc3c739c8f7c2d232707e8018f5c087ffae784c745d51a8143f9a294
|
|
HEAD_REF master
|
|
)
|
|
|
|
# Put the licence file where vcpkg expects it
|
|
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/cppwinrt)
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/cppwinrt/LICENSE ${CURRENT_PACKAGES_DIR}/share/cppwinrt/copyright)
|
|
|
|
# Copy the cppwinrt header files
|
|
file(GLOB HEADER_FILES ${SOURCE_PATH}/10.0.16299.0/winrt/*)
|
|
file(
|
|
COPY ${HEADER_FILES}
|
|
DESTINATION ${CURRENT_PACKAGES_DIR}/include/winrt
|
|
REGEX "\.(gitattributes|gitignore)$" EXCLUDE
|
|
)
|