aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
Diffstat (limited to 'ports')
-rw-r--r--ports/xbyak/portfile.cmake20
-rw-r--r--ports/xbyak/vcpkg.json14
2 files changed, 20 insertions, 14 deletions
diff --git a/ports/xbyak/portfile.cmake b/ports/xbyak/portfile.cmake
index a2a06b1aa..2bfc9ff8f 100644
--- a/ports/xbyak/portfile.cmake
+++ b/ports/xbyak/portfile.cmake
@@ -3,23 +3,19 @@ vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "uwp")
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO herumi/xbyak
- REF 77ffe717376d194f1e5cc910bbd755d99bbba94e # 5.991 + cmake targets
- SHA512 4e1ffa98dc63444aebf0a6e7a4ea57a9040cbf261f3a6fa43d23f0361cece71f1f4b597e95b6c85efbd4668e421081730b04ee924450ea0b0114923c36fc9c74
+ REF v6.00
+ SHA512 8bea95ddb44be39312083173cd4401039bd402c4732d97f9ff63174f6db29793f80dc1f1589d64bd96b4b13af819133897cd9843523662d13d57158c3837a778
HEAD_REF master
)
-vcpkg_configure_cmake(
- SOURCE_PATH ${SOURCE_PATH}
- PREFER_NINJA
-)
-
-vcpkg_install_cmake()
+vcpkg_cmake_configure(SOURCE_PATH "${SOURCE_PATH}")
+vcpkg_cmake_install()
-vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT})
+vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/${PORT}")
file(REMOVE_RECURSE
- ${CURRENT_PACKAGES_DIR}/debug
- ${CURRENT_PACKAGES_DIR}/lib
+ "${CURRENT_PACKAGES_DIR}/debug"
+ "${CURRENT_PACKAGES_DIR}/lib"
)
-file(INSTALL ${SOURCE_PATH}/COPYRIGHT DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
+file(INSTALL "${SOURCE_PATH}/COPYRIGHT" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/ports/xbyak/vcpkg.json b/ports/xbyak/vcpkg.json
index 3f18d44c5..cf7a9efbd 100644
--- a/ports/xbyak/vcpkg.json
+++ b/ports/xbyak/vcpkg.json
@@ -1,7 +1,17 @@
{
"name": "xbyak",
- "version-string": "5.991",
+ "version-string": "6.00",
"description": "Xbyak is a JIT assembler for x86(IA-32)/x64(AMD64, x86-64).",
"homepage": "https://github.com/herumi/xbyak",
- "supports": "!(arm | uwp)"
+ "supports": "!(arm | uwp)",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
}