mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 11:28:59 +08:00
950dd37e70
* [harfbuzz] update to 2.8.2 * update version * revert patch format * update version
85 lines
3.5 KiB
CMake
85 lines
3.5 KiB
CMake
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO harfbuzz/harfbuzz
|
|
REF 63e15eac4f443fa53565d1e4fb9611cdd7814f28 # 2.8.2
|
|
SHA512 8a743ce465f01d6cb49ac74efb1159d965e41c89267eeb4078ec4c342c24599e14419a0416f8d35a0b9dd00e76cc79b4dbd6f50ddd1b8da761d61158d1018ebc
|
|
HEAD_REF master
|
|
PATCHES
|
|
# This patch is a workaround that is needed until the following issues are resolved upstream:
|
|
# - https://github.com/mesonbuild/meson/issues/8375
|
|
# - https://github.com/harfbuzz/harfbuzz/issues/2870
|
|
# Details: https://github.com/microsoft/vcpkg/issues/16262
|
|
0001-circumvent-samefile-error.patch
|
|
0002-fix-uwp-build.patch
|
|
)
|
|
|
|
if("icu" IN_LIST FEATURES)
|
|
list(APPEND FEATURE_OPTIONS -Dicu=enabled) # Enable ICU library unicode functions
|
|
else()
|
|
list(APPEND FEATURE_OPTIONS -Dicu=disabled)
|
|
endif()
|
|
if("graphite2" IN_LIST FEATURES)
|
|
list(APPEND FEATURE_OPTIONS -Dgraphite=enabled) #Enable Graphite2 complementary shaper
|
|
else()
|
|
list(APPEND FEATURE_OPTIONS -Dgraphite=disabled)
|
|
endif()
|
|
if("coretext" IN_LIST FEATURES)
|
|
list(APPEND FEATURE_OPTIONS -Dcoretext=enabled) # Enable CoreText shaper backend on macOS
|
|
if(NOT VCPKG_TARGET_IS_OSX)
|
|
message(FATAL_ERROR "Feature 'coretext' os only available on OSX")
|
|
endif()
|
|
else()
|
|
list(APPEND FEATURE_OPTIONS -Dcoretext=disabled)
|
|
endif()
|
|
if("glib" IN_LIST FEATURES)
|
|
list(APPEND FEATURE_OPTIONS -Dglib=enabled) # Enable GLib unicode functions
|
|
list(APPEND FEATURE_OPTIONS -Dgobject=enabled) #Enable GObject bindings
|
|
else()
|
|
list(APPEND FEATURE_OPTIONS -Dglib=disabled)
|
|
list(APPEND FEATURE_OPTIONS -Dgobject=disabled)
|
|
endif()
|
|
list(APPEND FEATURE_OPTIONS -Dfreetype=enabled) #Enable freetype interop helpers
|
|
#if(VCPKG_TARGET_IS_WINDOWS)
|
|
#link errors in qt5-base. probably requires changes to the pc files generated by meson
|
|
#list(APPEND FEATURE_OPTIONS -Dgdi=enabled) # enable gdi helpers and uniscribe shaper backend (windows only)
|
|
#endif()
|
|
|
|
|
|
vcpkg_configure_meson(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
OPTIONS ${FEATURE_OPTIONS}
|
|
-Dcairo=disabled # Use Cairo graphics library
|
|
-Dfontconfig=disabled # Use fontconfig
|
|
-Dintrospection=disabled # Generate gobject-introspection bindings (.gir/.typelib files)
|
|
-Ddocs=disabled # Generate documentation with gtk-doc
|
|
-Dtests=disabled
|
|
-Dbenchmark=disabled
|
|
ADDITIONAL_NATIVE_BINARIES glib-genmarshal='${CURRENT_HOST_INSTALLED_DIR}/tools/glib/glib-genmarshal'
|
|
glib-mkenums='${CURRENT_HOST_INSTALLED_DIR}/tools/glib/glib-mkenums'
|
|
ADDITIONAL_CROSS_BINARIES glib-genmarshal='${CURRENT_HOST_INSTALLED_DIR}/tools/glib/glib-genmarshal'
|
|
glib-mkenums='${CURRENT_HOST_INSTALLED_DIR}/tools/glib/glib-mkenums'
|
|
)
|
|
|
|
vcpkg_install_meson()
|
|
vcpkg_copy_pdbs()
|
|
vcpkg_fixup_pkgconfig()
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/lib/cmake")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib/cmake")
|
|
configure_file("${CMAKE_CURRENT_LIST_DIR}/harfbuzzConfig.cmake.in"
|
|
"${CURRENT_PACKAGES_DIR}/share/${PORT}/harfbuzzConfig.cmake" @ONLY)
|
|
|
|
# Handle copyright
|
|
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|
|
|
|
if("glib" IN_LIST FEATURES)
|
|
list(APPEND TOOL_NAMES hb-subset hb-shape hb-ot-shape-closure)
|
|
endif()
|
|
if(TOOL_NAMES)
|
|
vcpkg_copy_tools(TOOL_NAMES ${TOOL_NAMES} AUTO_CLEAN)
|
|
endif()
|
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
endif()
|