mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 10:49:01 +08:00
401578455f
* [OpenCV4] update to v4.5.5 * [OpenCV] bump version * [gstreamer] fix build for opencv * fix references * [vcpkg-tool-meson] fix nuget packaging * fix references * [gstreamer] fix references * [ogre] update vcpkg tools * fix references * [OpenCV4] fixes from CI runs * fix references * [OpenCV4] force python module also in debug builds * fix references * [harfbuzz] fix cmake config * harfbuzz fixes * fix references * [OpenCV4] remove unnecessary lines from patches * fix references * fix references * [harfbuzz] bump version * [harfbuzz] fix for single config builds * fix references * freetype fixes * fix references * fix ogre references * fix references, again * python when building static windows opencv libraries is unsupported * fix references * fix * refs * use required when necessary * fix references * do not use config for hdf5, use internal module * fix references * use proper spelling for freetype config cmake * fix references * [OpenCV] restore versions after merge * fix references * [leptonica] fix building * fix references * do not require package in optional features * £fix references * fix python feat * update version * update version * [ffmpeg] remove opengl feat on arm64-windows * format manifest * fix references * fix cuda/nvidia features compatibility matrix * fix manifest * fix * fix * fix references * fix references, again * move CONTROL to manifest * [gstreamer] bump versions * fix references Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
63 lines
2.3 KiB
CMake
63 lines
2.3 KiB
CMake
# This port represents a dependency on the Meson build system.
|
|
# In the future, it is expected that this port acquires and installs Meson.
|
|
# Currently is used in ports that call vcpkg_find_acquire_program(MESON) in order to force rebuilds.
|
|
|
|
set(VCPKG_POLICY_EMPTY_PACKAGE enabled)
|
|
|
|
set(program MESON)
|
|
set(program_version 0.60.2)
|
|
set(program_name meson)
|
|
set(search_names meson meson.py)
|
|
set(interpreter PYTHON3)
|
|
set(apt_package_name "meson")
|
|
set(brew_package_name "meson")
|
|
set(ref 5e9b709ad0b34d8ac920dff057a5361080c0889b)
|
|
set(paths_to_search "${CURRENT_PACKAGES_DIR}/tools/meson")
|
|
set(download_urls "https://github.com/mesonbuild/meson/archive/${ref}.tar.gz")
|
|
set(download_filename "meson-${ref}.tar.gz")
|
|
set(download_sha512 5fb89c6b81f75825b6f300039db6dae9d907c81403a8ebe30c7426729d5cb3179e30b9b84d6ed756c2aa39ca34ea681afa0c5cd78835a94c43d5ab25e625abd0)
|
|
set(supported_on_unix ON)
|
|
set(version_command --version)
|
|
set(extra_search_args EXACT_VERSION_MATCH)
|
|
|
|
vcpkg_find_acquire_program(PYTHON3)
|
|
|
|
# Reenable if no patching of meson is required within vcpkg
|
|
# z_vcpkg_find_acquire_program_find_external("${program}"
|
|
# ${extra_search_args}
|
|
# PROGRAM_NAME "${program_name}"
|
|
# MIN_VERSION "${program_version}"
|
|
# INTERPRETER "${interpreter}"
|
|
# NAMES ${search_names}
|
|
# VERSION_COMMAND ${version_command}
|
|
# )
|
|
|
|
if(NOT "${program}")
|
|
vcpkg_download_distfile(archive_path
|
|
URLS ${download_urls}
|
|
SHA512 "${download_sha512}"
|
|
FILENAME "${download_filename}"
|
|
)
|
|
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/tools")
|
|
vcpkg_execute_in_download_mode(
|
|
COMMAND "${CMAKE_COMMAND}" -E tar xzf "${archive_path}"
|
|
WORKING_DIRECTORY "${CURRENT_PACKAGES_DIR}/tools"
|
|
)
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/tools/meson-${ref}" "${CURRENT_PACKAGES_DIR}/tools/meson")
|
|
z_vcpkg_apply_patches(
|
|
SOURCE_PATH "${CURRENT_PACKAGES_DIR}"
|
|
PATCHES meson-intl.patch
|
|
fix_linker_detection.patch
|
|
)
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/tools/meson/test cases")
|
|
endif()
|
|
|
|
z_vcpkg_find_acquire_program_find_internal("${program}"
|
|
INTERPRETER "${interpreter}"
|
|
PATHS ${paths_to_search}
|
|
NAMES ${search_names}
|
|
)
|
|
|
|
message(STATUS "Using meson: ${MESON}")
|
|
file(WRITE "${CURRENT_PACKAGES_DIR}/share/meson/version.txt" "${program_version}") # For vcpkg_find_acquire_program
|