diff options
| author | Chuck Walbourn <walbourn@users.noreply.github.com> | 2021-01-15 15:24:06 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-15 15:24:06 -0800 |
| commit | a2cc2b1735dc260f455ef7ce6ef935646dc69329 (patch) | |
| tree | 118b55beb7805c0bb2df0185407da0b9c4af1f67 /ports/directxmesh | |
| parent | 21b569f3e6773554b9e8284318c118bce0426f7b (diff) | |
| download | vcpkg-a2cc2b1735dc260f455ef7ce6ef935646dc69329.tar.gz vcpkg-a2cc2b1735dc260f455ef7ce6ef935646dc69329.zip | |
directxtex, directxmesh, directxtk, uvatlas ports updated to fix cach… (#15639)
* directxtex, directxmesh, directxtk, uvatlas ports updated to fix cache-collision issues
* Updated ports to jan2021b
* update baseline
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Diffstat (limited to 'ports/directxmesh')
| -rw-r--r-- | ports/directxmesh/CONTROL | 2 | ||||
| -rw-r--r-- | ports/directxmesh/portfile.cmake | 13 |
2 files changed, 9 insertions, 6 deletions
diff --git a/ports/directxmesh/CONTROL b/ports/directxmesh/CONTROL index dd19d931a..9acc00503 100644 --- a/ports/directxmesh/CONTROL +++ b/ports/directxmesh/CONTROL @@ -1,5 +1,5 @@ Source: directxmesh -Version: jan2021 +Version: jan2021b Homepage: https://walbourn.github.io/directxmesh Description: DirectXMesh geometry processing library Build-Depends: directxmath(linux), directx-headers(linux) diff --git a/ports/directxmesh/portfile.cmake b/ports/directxmesh/portfile.cmake index 9c7d27a70..f88841682 100644 --- a/ports/directxmesh/portfile.cmake +++ b/ports/directxmesh/portfile.cmake @@ -5,8 +5,8 @@ vcpkg_fail_port_install(ON_TARGET "OSX") vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Microsoft/DirectXMesh
- REF jan2021
- SHA512 2e3950571703e48de083900e5f4ff94a6f882071969e48dd200ecbf7d8357f3131f647ba6ad97e7dcdbd3e051edad99521661738e7af73ca6f89e8715cd29f9c
+ REF jan2021b
+ SHA512 dab353d5033c32cf5667b95820cf3048e4773fa3fed16d24b25a515fbf4b6f6792ab5955dc9bb790c911b4cae1af1166aa0fdc4f5a639b3f4c3c81a2451a9a40
HEAD_REF master
)
@@ -42,17 +42,20 @@ if((VCPKG_TARGET_IS_WINDOWS) AND (NOT VCPKG_TARGET_IS_UWP)) )
elseif((VCPKG_HOST_IS_WINDOWS) AND (VCPKG_TARGET_ARCHITECTURE MATCHES x64))
- vcpkg_download_distfile(meshconvert
+ vcpkg_download_distfile(
+ MESHCONVERT_EXE
URLS "https://github.com/Microsoft/DirectXMesh/releases/download/jan2021/meshconvert.exe"
- FILENAME "meshconvert.exe"
+ FILENAME "meshconvert-jan2021.exe"
SHA512 7df51baa495859aab418d194fd885cf37945ec2927122c18718b3a1a7d7ceb08c6853d084d74bf2bf2bc9ace47a351fd6b8d03706507f4966111ec1cb83f43a2
)
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/tools/directxmesh/")
file(INSTALL
- ${DOWNLOADS}/meshconvert.exe
+ ${MESHCONVERT_EXE}
DESTINATION ${CURRENT_PACKAGES_DIR}/tools/directxmesh/)
+
+ file(RENAME ${CURRENT_PACKAGES_DIR}/tools/directxmesh/meshconvert-jan2021.exe ${CURRENT_PACKAGES_DIR}/tools/directxmesh/meshconvert.exe)
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
