mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 07:39:01 +08:00
8e926cc06c
* [qt5] Update to 5.15.2 (mqtt currently missing git tag) * deactivate update of ports * update version * reduce port version * fix typo * fix patch for linux missing pthread * fix qt5-tools * fix qt5-webengine * add xcb-util to linux provisioning script * fix version numbers * fix other typo * remove new hashes file * fix latest version info * switch to vcpkg_from_git adjust vcpkg_from_git to handle tags. add OUT_REF for vcpkg_from_git to enable scriptable update of ports * regenerate docs * [vcpkg_from_git] new options TAG and OUT_REF - TAG github tag to checkout - OUT_REF github commit id related to tag or ref (useable for automatic updates of ports if used with a version tag) * Apply suggestions from code review Co-authored-by: Robert Schumacher <roschuma@microsoft.com> * additional changes due to CR * regenerate docs * Remove 'Port-Version:0' from qt5-location Co-authored-by: ras0219 <533828+ras0219@users.noreply.github.com> * add all those versions * fix versions Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com> Co-authored-by: Robert Schumacher <roschuma@microsoft.com> Co-authored-by: ras0219 <533828+ras0219@users.noreply.github.com>
30 lines
939 B
CMake
30 lines
939 B
CMake
include(${CURRENT_INSTALLED_DIR}/share/qt5/qt_port_functions.cmake)
|
|
#qt_submodule_installation() No binary package for this port.
|
|
if(QT_UPDATE_VERSION)
|
|
set(UPDATE_PORT_GIT_OPTIONS X_OUT_REF NEW_REF) # TO get an SHA512 error if the variable is set.
|
|
endif()
|
|
|
|
vcpkg_from_git(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
URL git://code.qt.io/qt/qtmqtt.git
|
|
TAG v${QT_MAJOR_MINOR_VER}.${QT_PATCH_VER}
|
|
REF ${QT_HASH_${PORT}}
|
|
${UPDATE_PORT_GIT_OPTIONS}
|
|
PATCHES ${_qis_PATCHES}
|
|
)
|
|
|
|
if(NEW_REF)
|
|
message(STATUS "New qtmqtt ref: ${NEW_REF}")
|
|
endif()
|
|
|
|
# qt module builds from a git repository require a .git entry to invoke syncqt
|
|
file(WRITE "${SOURCE_PATH}/.git" "repocontent")
|
|
|
|
# syncqt is a perl script
|
|
vcpkg_find_acquire_program(PERL)
|
|
get_filename_component(perl_exe_path ${PERL} DIRECTORY)
|
|
vcpkg_add_to_path("${perl_exe_path}")
|
|
|
|
qt_build_submodule(${SOURCE_PATH})
|
|
qt_install_copyright(${SOURCE_PATH})
|