forked from MaaAssistantArknights/MaaDeps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/maa' into MaaAssistantArknight…
…s-maa
- Loading branch information
Showing
17 changed files
with
10,021 additions
and
113 deletions.
There are no files selected for viewing
Submodule vcpkg
updated
3269 files
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,51 @@ | ||
vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY) | ||
|
||
set(VERSION 1.5.1) | ||
|
||
vcpkg_download_distfile(ARCHIVE | ||
URLS "https://www.nuget.org/api/v2/package/Microsoft.AI.DirectML/1.14.1" | ||
FILENAME "Microsoft.AI.DirectML.1.14.1.nupkg" | ||
SHA512 362be04b10c5a443250909e0d57b2dc3e0e709e0651578cfea8a702e2d295b78d3d058533e728d1edd61963750c76359552dd02b1a66e8a55635347b73796637 | ||
) | ||
|
||
vcpkg_extract_source_archive( | ||
SOURCE_PATH | ||
ARCHIVE ${ARCHIVE} | ||
NO_REMOVE_ONE_LEVEL | ||
) | ||
|
||
file(MAKE_DIRECTORY | ||
${CURRENT_PACKAGES_DIR}/include | ||
${CURRENT_PACKAGES_DIR}/lib | ||
${CURRENT_PACKAGES_DIR}/bin | ||
${CURRENT_PACKAGES_DIR}/debug/lib | ||
${CURRENT_PACKAGES_DIR}/debug/bin | ||
) | ||
|
||
file(COPY | ||
${SOURCE_PATH}/include | ||
DESTINATION ${CURRENT_PACKAGES_DIR} | ||
) | ||
|
||
|
||
file(COPY ${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}-win/DirectML.dll | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/bin) | ||
file(COPY ${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}-win/DirectML.pdb | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/bin) | ||
file(COPY ${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}-win/DirectML.lib | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/lib) | ||
|
||
file(COPY ${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}-win/DirectML.dll | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin) | ||
file(COPY ${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}-win/DirectML.pdb | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin) | ||
file(COPY ${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}-win/DirectML.lib | ||
DESTINATION ${CURRENT_PACKAGES_DIR}/debug/lib) | ||
|
||
# file(COPY ${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}-win/DirectML.Debug.dll | ||
# DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin) | ||
# file(COPY ${SOURCE_PATH}/bin/${VCPKG_TARGET_ARCHITECTURE}-win/DirectML.Debug.pdb | ||
# DESTINATION ${CURRENT_PACKAGES_DIR}/debug/bin) | ||
|
||
# # Handle copyright | ||
file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) |
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": "directml-bin", | ||
"version": "1.14.1", | ||
"port-version": 1, | ||
"description": "DirectML (standalone)", | ||
"homepage": "https://www.nuget.org/packages/Microsoft.AI.DirectML", | ||
"supports": "windows" | ||
} |
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,20 @@ | ||
diff --git a/src/util.cpp b/src/util.cpp | ||
index aabc23a..06e9ebe 100644 | ||
--- a/src/util.cpp | ||
+++ b/src/util.cpp | ||
@@ -434,9 +434,15 @@ bool ReadEnvironmentVariable(const char *var_name, std::string *_value) { | ||
#ifdef _MSC_VER | ||
__pragma(warning(disable : 4996)); // _CRT_SECURE_NO_WARNINGS | ||
#endif | ||
+#if _WIN32_WINNT < 0x0A00 | ||
auto env_str = std::getenv(var_name); | ||
if (!env_str) return false; | ||
if (_value) *_value = std::string(env_str); | ||
+#else | ||
+ //There is no support for environment variables in UWP | ||
+ var_name; // Do nothing | ||
+ *_value = std::string(""); | ||
+#endif | ||
return true; | ||
} | ||
|
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,47 @@ | ||
vcpkg_check_linkage(ONLY_STATIC_LIBRARY) | ||
|
||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO google/flatbuffers | ||
REF "v${VERSION}" | ||
SHA512 cd0a5efad8016e1217d01a181d6b02e546f5693c6412361bfeaee820d5dfe5e2a424cee1963270e851c1a4f936ae8a0032a51c5bb16ee19313e0ecc77dc4ba31 | ||
HEAD_REF master | ||
PATCHES | ||
fix-uwp-build.patch | ||
) | ||
|
||
set(options "") | ||
if(VCPKG_CROSSCOMPILING) | ||
list(APPEND options -DFLATBUFFERS_BUILD_FLATC=OFF -DFLATBUFFERS_BUILD_FLATHASH=OFF) | ||
if(VCPKG_TARGET_IS_OSX OR VCPKG_TARGET_IS_IOS) | ||
# The option may cause "#error Unsupported architecture" | ||
list(APPEND options -DFLATBUFFERS_OSX_BUILD_UNIVERSAL=OFF) | ||
endif() | ||
endif() | ||
|
||
vcpkg_cmake_configure( | ||
SOURCE_PATH "${SOURCE_PATH}" | ||
OPTIONS | ||
-DFLATBUFFERS_BUILD_TESTS=OFF | ||
-DFLATBUFFERS_BUILD_GRPCTEST=OFF | ||
${options} | ||
) | ||
|
||
vcpkg_cmake_install() | ||
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/flatbuffers) | ||
vcpkg_fixup_pkgconfig() | ||
|
||
file(GLOB flatc_path ${CURRENT_PACKAGES_DIR}/bin/flatc*) | ||
if(flatc_path) | ||
vcpkg_copy_tools(TOOL_NAMES flatc AUTO_CLEAN) | ||
else() | ||
file(APPEND "${CURRENT_PACKAGES_DIR}/share/flatbuffers/flatbuffers-config.cmake" | ||
"\ninclude(\"\${CMAKE_CURRENT_LIST_DIR}/../../../${HOST_TRIPLET}/share/flatbuffers/FlatcTargets.cmake\")\n") | ||
endif() | ||
|
||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") | ||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") | ||
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") | ||
|
||
# Handle copyright | ||
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") |
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,21 @@ | ||
{ | ||
"name": "flatbuffers", | ||
"version": "23.5.26", | ||
"description": "FlatBuffers is a cross platform serialization library architected for maximum memory efficiency. It allows you to directly access serialized data without parsing/unpacking it first, while still having great forwards/backwards compatibility.", | ||
"homepage": "https://google.github.io/flatbuffers/", | ||
"license": "Apache-2.0", | ||
"dependencies": [ | ||
{ | ||
"name": "flatbuffers", | ||
"host": true | ||
}, | ||
{ | ||
"name": "vcpkg-cmake", | ||
"host": true | ||
}, | ||
{ | ||
"name": "vcpkg-cmake-config", | ||
"host": true | ||
} | ||
] | ||
} |
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
Oops, something went wrong.