mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-08 05:15:13 +08:00
86a5b6fd7b
* forward extra arguments to vcpkg_configure_qmake from submodules * make image format dependent on tiff and libwebp * make tools dependent on imageformat * build options must be passed a bit different then normal qmake options * add the required dependencies * a new dependency discovered in qt5-declarative * need webpdemux also * qt5-declarative is dependent on imageformats so we can drop it here * remove empty qt.conf if it exists. closes #8180 * add all recommended dependencies as dependencies in control.
11 lines
351 B
CMake
11 lines
351 B
CMake
|
|
|
|
function(qt_submodule_installation)
|
|
qt_download_submodule(OUT_SOURCE_PATH TARGET_SOURCE_PATH ${ARGV})
|
|
if(QT_UPDATE_VERSION)
|
|
SET(VCPKG_POLICY_EMPTY_PACKAGE enabled PARENT_SCOPE)
|
|
else()
|
|
qt_build_submodule(${TARGET_SOURCE_PATH} ${ARGV})
|
|
qt_install_copyright(${TARGET_SOURCE_PATH})
|
|
endif()
|
|
endfunction() |