diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-10-23 11:44:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-23 11:44:10 -0700 |
| commit | e82ee998c2641047b2034fef6fd678cac2dd6cf4 (patch) | |
| tree | dbac3d9d6fcd0438e87157e0f47960c4ce546023 /ports/cppwinrt | |
| parent | 7edfa3c802128003eaf57d7019743f263ddd341e (diff) | |
| parent | 7f0dcbc15dbf8e0cb202f8a197f5582c36b4b546 (diff) | |
| download | vcpkg-e82ee998c2641047b2034fef6fd678cac2dd6cf4.tar.gz vcpkg-e82ee998c2641047b2034fef6fd678cac2dd6cf4.zip | |
Merge pull request #2035 from sgreenlay/cppwinrt
Update cppwinrt to Fall Creators SDK
Diffstat (limited to 'ports/cppwinrt')
| -rw-r--r-- | ports/cppwinrt/CONTROL | 2 | ||||
| -rw-r--r-- | ports/cppwinrt/portfile.cmake | 15 |
2 files changed, 8 insertions, 9 deletions
diff --git a/ports/cppwinrt/CONTROL b/ports/cppwinrt/CONTROL index e470b2458..4f160a6e0 100644 --- a/ports/cppwinrt/CONTROL +++ b/ports/cppwinrt/CONTROL @@ -1,3 +1,3 @@ Source: cppwinrt -Version: spring_2017_creators_update_for_vs_15.3 +Version: fall_2017_creators_update_for_vs_15.3-1 Description: C++/WinRT is a standard C++ language projection for the Windows Runtime. diff --git a/ports/cppwinrt/portfile.cmake b/ports/cppwinrt/portfile.cmake index c83465efe..703f9b6a1 100644 --- a/ports/cppwinrt/portfile.cmake +++ b/ports/cppwinrt/portfile.cmake @@ -1,18 +1,17 @@ include(vcpkg_common_functions) -find_program(GIT git) -set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/cppwinrt-spring_2017_creators_update_for_vs_15.3) -vcpkg_download_distfile(ARCHIVE - URLS "https://github.com/Microsoft/cppwinrt/archive/spring_2017_creators_update_for_vs_15.3.tar.gz" - FILENAME "cppwinrt-spring_2017_creators_update_for_vs_15.3.tar.gz" - SHA512 779586122552e49a79aff08f4476905e00c3b4ad3dbc502240e9a7cc59ec0e4ab6304149a66505923ab84d2b334059de9e18c84a5b0ed6bde106d19119ef911f +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 ) -vcpkg_extract_source_archive(${ARCHIVE}) # Put the licence file where vcpkg expects it file(COPY ${SOURCE_PATH}/license DESTINATION ${CURRENT_PACKAGES_DIR}/share/cppwinrt/license.txt) file(RENAME ${CURRENT_PACKAGES_DIR}/share/cppwinrt/license.txt ${CURRENT_PACKAGES_DIR}/share/cppwinrt/copyright) # Copy the cppwinrt header files -file(GLOB HEADER_FILES ${SOURCE_PATH}/10.0.15063.0/winrt/*) +file(GLOB HEADER_FILES ${SOURCE_PATH}/10.0.16299.0/winrt/*) file(COPY ${HEADER_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/include/winrt) |
