mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 06:29:08 +08:00
[dstorage] Add port for Microsoft.Direct3D.DirectStorage NuGet (#24063)
* [dstorage] new port for Microsoft.Direct3D.DirectStorage NuGet * Format fix * Update baseline * Moved headers up a folder per code review * Update baselnie * More code review feedback * Refresh baseline
This commit is contained in:
parent
c556911a79
commit
4415a0f31b
25
ports/dstorage/dstorage-config.cmake.in
Normal file
25
ports/dstorage/dstorage-config.cmake.in
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
get_filename_component(_dstorage_root "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||
get_filename_component(_dstorage_root "${_dstorage_root}" PATH)
|
||||
get_filename_component(_dstorage_root "${_dstorage_root}" PATH)
|
||||
|
||||
set(_dstorage_root_lib "${_dstorage_root}/lib/dstorage.lib")
|
||||
if (EXISTS "${_dstorage_root_lib}")
|
||||
|
||||
add_library(Microsoft::DirectStorage SHARED IMPORTED)
|
||||
set_target_properties(Microsoft::DirectStorage PROPERTIES
|
||||
IMPORTED_LOCATION "${_dstorage_root}/bin/dstorage.dll"
|
||||
IMPORTED_IMPLIB "${_dstorage_root_lib}"
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${_dstorage_root}/include"
|
||||
IMPORTED_LINK_INTERFACE_LANGUAGES "C")
|
||||
|
||||
set(dstorage_FOUND TRUE)
|
||||
|
||||
else()
|
||||
|
||||
set(dstorage_FOUND FALSE)
|
||||
|
||||
endif()
|
||||
|
||||
unset(_dstorage_root_lib)
|
||||
unset(_dstorage_root)
|
28
ports/dstorage/portfile.cmake
Normal file
28
ports/dstorage/portfile.cmake
Normal file
@ -0,0 +1,28 @@
|
||||
vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY)
|
||||
|
||||
vcpkg_download_distfile(ARCHIVE
|
||||
URLS "https://www.nuget.org/api/v2/package/Microsoft.Direct3D.DirectStorage/1.0.0"
|
||||
FILENAME "directstorage.1.0.0.zip"
|
||||
SHA512 34f24842d509ccddf2c8a06e94a2f67c0746ed8acb6d90ab89453ed4ec9b123970cf1e802375af27e6d5be3c82211813009f8f4b83f233ce419a1467b8c10846
|
||||
)
|
||||
|
||||
vcpkg_extract_source_archive_ex(
|
||||
OUT_SOURCE_PATH PACKAGE_PATH
|
||||
ARCHIVE ${ARCHIVE}
|
||||
NO_REMOVE_ONE_LEVEL
|
||||
)
|
||||
|
||||
file(INSTALL "${PACKAGE_PATH}/Include/DirectStorage/dstorage.h" DESTINATION "${CURRENT_PACKAGES_DIR}/include")
|
||||
file(INSTALL "${PACKAGE_PATH}/Include/DirectStorage/dstorageerr.h" DESTINATION "${CURRENT_PACKAGES_DIR}/include")
|
||||
|
||||
file(INSTALL "${PACKAGE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}/dstorage.lib" DESTINATION "${CURRENT_PACKAGES_DIR}/lib")
|
||||
|
||||
file(COPY "${PACKAGE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}/dstorage.dll" DESTINATION "${CURRENT_PACKAGES_DIR}/bin")
|
||||
file(COPY "${PACKAGE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}/dstoragecore.dll" DESTINATION "${CURRENT_PACKAGES_DIR}/bin")
|
||||
|
||||
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/debug")
|
||||
file(COPY "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/lib" DESTINATION "${CURRENT_PACKAGES_DIR}/debug")
|
||||
|
||||
file(INSTALL "${PACKAGE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
||||
|
||||
configure_file("${CMAKE_CURRENT_LIST_DIR}/dstorage-config.cmake.in" "${CURRENT_PACKAGES_DIR}/share/${PORT}/${PORT}-config.cmake" COPYONLY)
|
8
ports/dstorage/vcpkg.json
Normal file
8
ports/dstorage/vcpkg.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "dstorage",
|
||||
"version": "1.0.0",
|
||||
"description": "DirectStorage for Windows",
|
||||
"homepage": "https://aka.ms/directstorage/",
|
||||
"license": null,
|
||||
"supports": "windows & !uwp & !static"
|
||||
}
|
@ -1944,6 +1944,10 @@
|
||||
"baseline": "1.7.5",
|
||||
"port-version": 0
|
||||
},
|
||||
"dstorage": {
|
||||
"baseline": "1.0.0",
|
||||
"port-version": 0
|
||||
},
|
||||
"dtl": {
|
||||
"baseline": "1.19",
|
||||
"port-version": 1
|
||||
|
9
versions/d-/dstorage.json
Normal file
9
versions/d-/dstorage.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "b2494bc112c6d12ffbb8a8bc687a1ae2ad583221",
|
||||
"version": "1.0.0",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user