early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,43 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO fancycode/MemoryModule
REF 5f83e41c3a3e7c6e8284a5c1afa5a38790809461
SHA512 6d42bd80dfeaf7bc662adafe7d6a7d7301eff5ea53bb59fce7e9c1a6ee22d31d2ab5696afc0a92c1501aa4161a60366418bfc3bed7ed2dcb6cae24243f4fa6d4
HEAD_REF master
)
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
vcpkg_check_features(
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
unicode UNICODE
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
DISABLE_PARALLEL_CONFIGURE
OPTIONS
-DTESTSUITE=OFF
${FEATURE_OPTIONS}
)
vcpkg_cmake_build(TARGET MemoryModule)
file(INSTALL "${SOURCE_PATH}/MemoryModule.h" DESTINATION "${CURRENT_PACKAGES_DIR}/include")
if(EXISTS "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/MemoryModule.lib")
file(INSTALL
"${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-dbg/MemoryModule.lib"
DESTINATION "${CURRENT_PACKAGES_DIR}/debug/lib"
)
endif()
if(EXISTS "${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/MemoryModule.lib")
file(INSTALL
"${CURRENT_BUILDTREES_DIR}/${TARGET_TRIPLET}-rel/MemoryModule.lib"
DESTINATION "${CURRENT_PACKAGES_DIR}/lib"
)
endif()
file(INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)

22
externals/vcpkg/ports/memorymodule/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,22 @@
{
"name": "memorymodule",
"version-string": "2019-12-31",
"port-version": 2,
"description": "Library to load a DLL from memory",
"homepage": "https://github.com/fancycode/MemoryModule",
"supports": "!linux & !osx & !uwp",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
}
],
"default-features": [
"unicode"
],
"features": {
"unicode": {
"description": "Compile with UNICODE support"
}
}
}