2020-12-28 17:28:53 -08:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
|
2020-06-17 23:48:39 +02:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO Microsoft/DirectXTex
|
2022-03-28 13:52:09 -07:00
|
|
|
REF mar2022
|
|
|
|
SHA512 04f898b2cf2c76edd400147db9144e196fc8441739de3293f8851952ce8153bab033deba52a0d35e51c4fbc9705ffe183f1606a0fae29970dc2babe65ed78e19
|
[directxmath, directxtex, directxmesh, directxtk, directxtk12, uvatlas] ports updated (#23332)
* [directxmath, directxmesh, directxtex, directxtk, directxtk12, uvatlas] ports updated to February 2022 release
* Update baseline
* Updated directxmath to use non-deprecated functions
* Refresh baseline
* Updated for master-to-main rename
* Refresh baseline
* Remove en-us specific doc link
* Refresh version baseline
2022-03-02 14:58:20 -08:00
|
|
|
HEAD_REF main
|
2020-06-17 23:48:39 +02:00
|
|
|
)
|
|
|
|
|
2020-10-13 22:40:52 +02:00
|
|
|
if("openexr" IN_LIST FEATURES)
|
|
|
|
vcpkg_download_distfile(
|
|
|
|
DIRECTXTEX_EXR_HEADER
|
|
|
|
URLS "https://raw.githubusercontent.com/wiki/Microsoft/DirectXTex/DirectXTexEXR.h"
|
[directxmath, directxtex, directxmesh, directxtk, directxtk12, uvatlas] ports updated (#23332)
* [directxmath, directxmesh, directxtex, directxtk, directxtk12, uvatlas] ports updated to February 2022 release
* Update baseline
* Updated directxmath to use non-deprecated functions
* Refresh baseline
* Updated for master-to-main rename
* Refresh baseline
* Remove en-us specific doc link
* Refresh version baseline
2022-03-02 14:58:20 -08:00
|
|
|
FILENAME "DirectXTexEXR-3.h"
|
|
|
|
SHA512 b4c75fa0e3365d63beba0ba471f0ded124b2f0e20f2c11cef76a88e6af1582889abcf5aa2ec74270d7b9bde7f7b4bc36fd17f030357b4139d8c83c35060344be
|
2020-10-13 22:40:52 +02:00
|
|
|
)
|
2020-06-17 23:48:39 +02:00
|
|
|
|
2020-10-13 22:40:52 +02:00
|
|
|
vcpkg_download_distfile(
|
|
|
|
DIRECTXTEX_EXR_SOURCE
|
|
|
|
URLS "https://raw.githubusercontent.com/wiki/Microsoft/DirectXTex/DirectXTexEXR.cpp"
|
[directxmath, directxtex, directxmesh, directxtk, directxtk12, uvatlas] ports updated (#23332)
* [directxmath, directxmesh, directxtex, directxtk, directxtk12, uvatlas] ports updated to February 2022 release
* Update baseline
* Updated directxmath to use non-deprecated functions
* Refresh baseline
* Updated for master-to-main rename
* Refresh baseline
* Remove en-us specific doc link
* Refresh version baseline
2022-03-02 14:58:20 -08:00
|
|
|
FILENAME "DirectXTexEXR-3.cpp"
|
|
|
|
SHA512 9192cfea01654b1537b444cc6e3369de2f721959ad749551ad06ba92a12fa61e12f2169cf412788b0156220bb8bacf531160f924a4744e43e875163463586620
|
2020-10-13 22:40:52 +02:00
|
|
|
)
|
|
|
|
|
2021-10-15 19:34:23 -07:00
|
|
|
file(COPY ${DIRECTXTEX_EXR_HEADER} DESTINATION "${SOURCE_PATH}/DirectXTex")
|
|
|
|
file(COPY ${DIRECTXTEX_EXR_SOURCE} DESTINATION "${SOURCE_PATH}/DirectXTex")
|
[directxmath, directxtex, directxmesh, directxtk, directxtk12, uvatlas] ports updated (#23332)
* [directxmath, directxmesh, directxtex, directxtk, directxtk12, uvatlas] ports updated to February 2022 release
* Update baseline
* Updated directxmath to use non-deprecated functions
* Refresh baseline
* Updated for master-to-main rename
* Refresh baseline
* Remove en-us specific doc link
* Refresh version baseline
2022-03-02 14:58:20 -08:00
|
|
|
file(RENAME "${SOURCE_PATH}/DirectXTex/DirectXTexEXR-3.h" "${SOURCE_PATH}/DirectXTex/DirectXTexEXR.h")
|
|
|
|
file(RENAME "${SOURCE_PATH}/DirectXTex/DirectXTexEXR-3.cpp" "${SOURCE_PATH}/DirectXTex/DirectXTexEXR.cpp")
|
2021-10-15 19:34:23 -07:00
|
|
|
vcpkg_apply_patches(SOURCE_PATH "${SOURCE_PATH}" PATCHES enable_openexr_support.patch)
|
2020-06-17 23:48:39 +02:00
|
|
|
endif()
|
|
|
|
|
2020-10-13 22:40:52 +02:00
|
|
|
vcpkg_check_features(
|
|
|
|
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
2020-10-23 09:35:28 +02:00
|
|
|
FEATURES
|
|
|
|
dx12 BUILD_DX12
|
|
|
|
openexr ENABLE_OPENEXR_SUPPORT
|
2020-10-13 22:40:52 +02:00
|
|
|
)
|
|
|
|
|
2021-01-12 20:01:37 -08:00
|
|
|
if (VCPKG_HOST_IS_LINUX)
|
|
|
|
message(WARNING "Build ${PORT} requires GCC version 9 or later")
|
|
|
|
endif()
|
|
|
|
|
2020-12-28 17:28:53 -08:00
|
|
|
if(VCPKG_TARGET_IS_UWP)
|
|
|
|
set(EXTRA_OPTIONS -DBUILD_TOOLS=OFF)
|
|
|
|
else()
|
|
|
|
set(EXTRA_OPTIONS -DBUILD_TOOLS=ON)
|
|
|
|
endif()
|
|
|
|
|
2021-10-15 19:34:23 -07:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2020-10-13 22:40:52 +02:00
|
|
|
OPTIONS
|
|
|
|
${FEATURE_OPTIONS}
|
2020-12-28 17:28:53 -08:00
|
|
|
${EXTRA_OPTIONS}
|
2020-10-13 22:40:52 +02:00
|
|
|
-DBC_USE_OPENMP=ON
|
|
|
|
-DBUILD_DX11=ON
|
2020-06-17 23:48:39 +02:00
|
|
|
)
|
|
|
|
|
2021-10-15 19:34:23 -07:00
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH cmake)
|
2020-10-13 22:40:52 +02:00
|
|
|
|
2021-04-09 09:54:41 -07:00
|
|
|
if((VCPKG_HOST_IS_WINDOWS) AND (VCPKG_TARGET_ARCHITECTURE MATCHES x64) AND (NOT ("openexr" IN_LIST FEATURES)))
|
2021-01-15 15:24:06 -08:00
|
|
|
vcpkg_download_distfile(
|
|
|
|
TEXASSEMBLE_EXE
|
2022-03-28 13:52:09 -07:00
|
|
|
URLS "https://github.com/Microsoft/DirectXTex/releases/download/mar2022/texassemble.exe"
|
|
|
|
FILENAME "texassemble-mar2022.exe"
|
|
|
|
SHA512 2a2bec1f012ba6778d99f53a3b4f015f84e4ab76dd68a1980d77cdac588c60a21b30abbfc0de9f0b0ef790ef5ed8444f1648b80990053f8a1f967a04d20d3c33
|
2020-12-28 17:28:53 -08:00
|
|
|
)
|
|
|
|
|
2021-01-15 15:24:06 -08:00
|
|
|
vcpkg_download_distfile(
|
|
|
|
TEXCONV_EXE
|
2022-03-28 13:52:09 -07:00
|
|
|
URLS "https://github.com/Microsoft/DirectXTex/releases/download/mar2022/texconv.exe"
|
|
|
|
FILENAME "texconv-mar2022.exe"
|
|
|
|
SHA512 fa0b12dcc7e4688f356bb591dedd07dcb27b6029c6490438b39368f72b77f90112360544e035f89e1098dc09b26fb921840ecae851ad5eba6a339cd46316c4e3
|
2020-12-28 17:28:53 -08:00
|
|
|
)
|
|
|
|
|
2021-01-15 15:24:06 -08:00
|
|
|
vcpkg_download_distfile(
|
|
|
|
TEXDIAG_EXE
|
2022-03-28 13:52:09 -07:00
|
|
|
URLS "https://github.com/Microsoft/DirectXTex/releases/download/mar2022/texdiag.exe"
|
|
|
|
FILENAME "texdiag-mar2022.exe"
|
|
|
|
SHA512 7fe074a08599edca9ad8ad5ff930c9c4dbc74faad6502c288e9a555a4a79f51affbce51758c99518d54c4698457e0edb379ffaebfd3dcae0bd16a343195f8292
|
2020-12-28 17:28:53 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/tools/directxtex/")
|
|
|
|
|
|
|
|
file(INSTALL
|
2021-01-15 15:24:06 -08:00
|
|
|
${TEXASSEMBLE_EXE}
|
|
|
|
${TEXCONV_EXE}
|
|
|
|
${TEXDIAG_EXE}
|
2021-10-15 19:34:23 -07:00
|
|
|
DESTINATION "${CURRENT_PACKAGES_DIR}/tools/directxtex/")
|
2021-01-15 15:24:06 -08:00
|
|
|
|
2022-03-28 13:52:09 -07:00
|
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/tools/directxtex/texassemble-mar2022.exe" "${CURRENT_PACKAGES_DIR}/tools/directxtex/texassemble.exe")
|
|
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/tools/directxtex/texconv-mar2022.exe" "${CURRENT_PACKAGES_DIR}/tools/directxtex/texconv.exe")
|
|
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/tools/directxtex/texdiag-mar2022.exe" "${CURRENT_PACKAGES_DIR}/tools/directxtex/texadiag.exe")
|
2021-04-09 09:54:41 -07:00
|
|
|
|
|
|
|
elseif((VCPKG_TARGET_IS_WINDOWS) AND (NOT VCPKG_TARGET_IS_UWP))
|
|
|
|
|
|
|
|
vcpkg_copy_tools(
|
|
|
|
TOOL_NAMES texassemble texconv texdiag
|
2021-10-15 19:34:23 -07:00
|
|
|
SEARCH_DIR "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/bin/CMake"
|
2021-04-09 09:54:41 -07:00
|
|
|
)
|
|
|
|
|
2020-06-17 23:48:39 +02:00
|
|
|
endif()
|
|
|
|
|
2020-12-28 17:28:53 -08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
|
2021-10-15 19:34:23 -07:00
|
|
|
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|