aboutsummaryrefslogtreecommitdiff
path: root/ports/asmjit
diff options
context:
space:
mode:
authorζeh Matt <m.moninger.h@gmail.com>2020-08-07 21:17:10 +0200
committerGitHub <noreply@github.com>2020-08-07 12:17:10 -0700
commit15141fbc95f1994c164ec55b93cad163008ca0b0 (patch)
tree58235c5daaa1a3d7fae42968456a65dc31a15a73 /ports/asmjit
parent5945950b251ebf5c58b0ff36663a1c1d67e4e3c5 (diff)
downloadvcpkg-15141fbc95f1994c164ec55b93cad163008ca0b0.tar.gz
vcpkg-15141fbc95f1994c164ec55b93cad163008ca0b0.zip
[asmjit] Update to the latest commit (#12524)
* [asmjit] Update to the latest commit * Use the correct date for version * Update ci.baseline.txt * [polyhook2] Update to the latest commit * Update portfile.cmake * Remove polyhook2 from ci.baseline.txt Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Diffstat (limited to 'ports/asmjit')
-rw-r--r--ports/asmjit/CONTROL2
-rw-r--r--ports/asmjit/portfile.cmake20
2 files changed, 11 insertions, 11 deletions
diff --git a/ports/asmjit/CONTROL b/ports/asmjit/CONTROL
index 5ec779ce7..d4b46b6a5 100644
--- a/ports/asmjit/CONTROL
+++ b/ports/asmjit/CONTROL
@@ -1,5 +1,5 @@
Source: asmjit
-Version: 2020-05-08
+Version: 2020-07-22
Homepage: https://github.com/asmjit/asmjit
Description: Complete x86/x64 JIT and Remote Assembler for C++
Supports: !arm
diff --git a/ports/asmjit/portfile.cmake b/ports/asmjit/portfile.cmake
index d95645d7e..812083b6d 100644
--- a/ports/asmjit/portfile.cmake
+++ b/ports/asmjit/portfile.cmake
@@ -3,23 +3,23 @@ vcpkg_fail_port_install(ON_ARCH "arm")
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO asmjit/asmjit
- REF 80645e66a8ae85749937bda3b329388c8a76ea4c
- SHA512 8e7b0aed14e8ce05e6e6b2eed77be23a81b9548a146aef187ac6beced3bc2a6cba92835718adb901a1ab983fab32f3e9f18061b157b2276bb1451a71ca1195b8
+ REF 8474400e82c3ea65bd828761539e5d9b25f6bd83
+ SHA512 435be4ed22abbbbcdea3869b31bc2fc27aae969775773c24155d7490bca9591f51613fa3319cce54200c6d18dbe73a6be2d5449c49afb46934d93760501e98f6
HEAD_REF master
)
if(VCPKG_LIBRARY_LINKAGE STREQUAL static)
- vcpkg_configure_cmake(
- SOURCE_PATH ${SOURCE_PATH}
- PREFER_NINJA
- OPTIONS -DASMJIT_STATIC=1
- )
+ set(ASMJIT_STATIC 1)
else()
- vcpkg_configure_cmake(
+ set(ASMJIT_STATIC 0)
+endif()
+
+vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
- )
-endif()
+ OPTIONS -DASMJIT_STATIC=${ASMJIT_STATIC}
+ )
+
vcpkg_install_cmake()
vcpkg_copy_pdbs()