2018-01-29 22:05:19 +02:00
|
|
|
vcpkg_from_github(
|
2023-04-10 22:27:41 -04:00
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO asmjit/asmjit
|
2024-07-05 19:57:37 +02:00
|
|
|
REF ffac9f36fb045dd2c6a81e1b5b9ccc115e5ef924 # commited on 2024-06-28
|
|
|
|
SHA512 3a594bdea7095f66356f8c21e03a4db2535811988726c25a29e66721cb703dc9dceddeb5f8a6c7daeafba3fbf6dd07e71375446d8dfb182f57c14bce28192774
|
2023-04-10 22:27:41 -04:00
|
|
|
HEAD_REF master
|
2018-01-29 22:05:19 +02:00
|
|
|
)
|
|
|
|
|
2021-10-27 00:02:03 -07:00
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" ASMJIT_STATIC)
|
2020-08-07 21:17:10 +02:00
|
|
|
|
2021-10-27 00:02:03 -07:00
|
|
|
vcpkg_cmake_configure(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
|
|
OPTIONS
|
|
|
|
-DASMJIT_STATIC=${ASMJIT_STATIC}
|
2020-08-07 21:17:10 +02:00
|
|
|
)
|
|
|
|
|
2021-10-27 00:02:03 -07:00
|
|
|
vcpkg_cmake_install()
|
2018-01-29 22:05:19 +02:00
|
|
|
vcpkg_copy_pdbs()
|
2021-10-27 00:02:03 -07:00
|
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/asmjit)
|
2020-09-27 17:41:18 -07:00
|
|
|
|
2021-10-27 00:02:03 -07:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
|
|
vcpkg_replace_string("${CURRENT_PACKAGES_DIR}/include/asmjit/core/api-config.h"
|
|
|
|
"#if !defined(ASMJIT_STATIC)"
|
|
|
|
"#if 0"
|
|
|
|
)
|
|
|
|
endif()
|
2018-01-29 22:05:19 +02:00
|
|
|
|
2023-04-10 22:27:41 -04:00
|
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE.md")
|