mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:59:05 +08:00
ce9c857d28
* updating qt stuff to 6.2.2 * add missing modules for 6.2.2 * remove patch from qtbase * add qtpositioning * add qml feature * add supports statement * small ref change * fix hash * remove , * qtlocation is now emtpy * get as list of files * fix error in manifest * add tool name * fix qtapplication? * print bin files * fix qtapplicationmanager * format * set policy * fix git fetch * fix ref variable * fix pc files for taglib closes #21834 * fix qtinterfaceframework * format manifest * version stuff * fix qtapplicationmanager * fix version * make qt buildable for static windows builds. * version corrections * add extra paths; otherwise it breaks out of the buildtree * version stuff. * trying to fix qtapplicationmanager * add supports field * fix cross case * fix stuff * version stuff
19 lines
616 B
CMake
19 lines
616 B
CMake
set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase")
|
|
include("${SCRIPT_PATH}/qt_install_submodule.cmake")
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
INVERTED_FEATURES
|
|
"qml" CMAKE_DISABLE_FIND_PACKAGE_Qt6Quick
|
|
)
|
|
|
|
list(APPEND FEATURE_OPTIONS "-DCMAKE_DISABLE_FIND_PACKAGE_Gypsy=ON"
|
|
"-DCMAKE_DISABLE_FIND_PACKAGE_Gconf=ON"
|
|
)
|
|
|
|
qt_install_submodule(PATCHES ${${PORT}_PATCHES}
|
|
CONFIGURE_OPTIONS ${FEATURE_OPTIONS}
|
|
CONFIGURE_OPTIONS_RELEASE
|
|
CONFIGURE_OPTIONS_DEBUG
|
|
)
|