mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-03 22:19:32 +03:00
63 lines
1.9 KiB
CMake
63 lines
1.9 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO microsoft/mimalloc
|
|
HEAD_REF master
|
|
|
|
# The "REF" can be a commit hash, branch name (dev2), or a version (v2.2.1).
|
|
# REF "v${VERSION}"
|
|
REF e2db21e9ba9fb9172b7b0aa0fe9b8742525e8774
|
|
|
|
# The sha512 is the hash of the tar.gz bundle.
|
|
# (To get the sha512, run `vcpkg install mimalloc[override] --overlay-ports=<dir of this file>` and copy the sha from the error message.)
|
|
SHA512 8cbb601fdf8b46dd6a9c0d314d6da9d4960699853829e96d2470753867f90689fb4caeaf30d628943fd388670dc11902dbecc9cc7c329b99a510524a09bdb612
|
|
)
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
c MI_NO_USE_CXX
|
|
guarded MI_GUARDED
|
|
secure MI_SECURE
|
|
override MI_OVERRIDE
|
|
optarch MI_OPT_ARCH
|
|
optsimd MI_OPT_SIMD
|
|
xmalloc MI_XMALLOC
|
|
asm MI_SEE_ASM
|
|
)
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" MI_BUILD_STATIC)
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" MI_BUILD_SHARED)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS
|
|
-DMI_USE_CXX=ON
|
|
-DMI_BUILD_TESTS=OFF
|
|
-DMI_BUILD_OBJECT=ON
|
|
-DMI_BUILD_STATIC=${MI_BUILD_STATIC}
|
|
-DMI_BUILD_SHARED=${MI_BUILD_SHARED}
|
|
-DMI_INSTALL_TOPLEVEL=ON
|
|
${FEATURE_OPTIONS}
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
vcpkg_copy_pdbs()
|
|
|
|
file(COPY
|
|
"${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake"
|
|
"${CMAKE_CURRENT_LIST_DIR}/usage"
|
|
DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}"
|
|
)
|
|
vcpkg_cmake_config_fixup(CONFIG_PATH lib/cmake/mimalloc)
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
|
# todo: why is this needed?
|
|
vcpkg_replace_string(
|
|
"${CURRENT_PACKAGES_DIR}/include/mimalloc.h"
|
|
"!defined(MI_SHARED_LIB)"
|
|
"0 // !defined(MI_SHARED_LIB)"
|
|
)
|
|
endif()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
|
|
vcpkg_fixup_pkgconfig()
|
|
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE")
|