-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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
- Loading branch information
Showing
5 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"versions": [ | ||
{ | ||
"git-tree": "b2494bc112c6d12ffbb8a8bc687a1ae2ad583221", | ||
"version": "1.0.0", | ||
"port-version": 0 | ||
} | ||
] | ||
} |