mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 23:49:06 +08:00
1e2c7c3d57
* try qt 6.4-beta4 * fix patch * fix copyright install * fix qtdeclarative * always perform import prefix correction * adjust qtmultimedia * fix qttools * add missing " * fix linux ? * fix qtmultimedia with gstreamer * fix qtvirtualkeyboard * fix qtwebengine * fix qmllint regression in qtdeclarative on osx/linux * fix details * fix qttools deps * fix qtdeclarative deps * remove xcb feature * fix hunspell patch * bump qtbase * add qt3d * format manifest * test features in CI * pass ci baseline stuff * vulkan is skip in ci so cannot force it. * remove extra , * fix deps * try to fix promotion * gstreamer adjustments. * fix gstreamer on linux * fix gstreamer stuff * fix x264 api import macro * fix gst-rsp-server * correctly replace * promote targets.... * enable arm64 qtwebengine * --trace-expand * install wrapper for egl. * add newline * remove opengl from skip list * add gl to link * another try * retry again * test dynamic angle linkage * retry * link XNVCtrl * retry * add libxnvctrl * retry * retry again... * move wrapper to angle * revert changes to egl-reg * more debugging * try again * fix stuff * add missing , * egl stuff * wrapper stuff * fix angle * remove double dep * remove libxnvctrl * format manifest * revert trace * bump version * bump v * v db * remove trace * v db * refine supports * v db * remove qtmultimedia from baseline * format manifest * update all the stuff * refine qtmultimedia * fix qtmultimedia? * fix stuff * fix stuff ? * trace again * Try fixing qtmultimedia for static windows builds. * is ci faster than me...? * refine * fix gstreamer static usage * fix all the qt things! * fix the path * try getting logs. * fix patch * trace stuff * only fix stuff when it needs fixing * force lookup of system EGL. migth need a wrapper in opengl instead. * try fixing opengl * don't directly call _find_package * don't search in install prefix * retry * disable trace * have the correct fix for linux ? * move angle into a subfolder. No way to deal with it otherwise on linux. * make the wrapper do nothing * try fixing allegro5 * lower case * remove wrapper * v db * remove trace * v db * remove trace * v db * try fixing allegro5 on arm * retry again * try again * revert allegro * put on ci baseline * v db * v db * bump port * v db fix * remove conflicting wrapper * v db * glib now uses pcre2 * fix gstreamer picking up egl on windows * v db * fix find_package call * Add bullet feature control * Disable Qt * Update versions * Remove obsolete qt patch junk * Update versions * v db * comments * v db * v db * v db * v db * restore correction lost in merge * v db * promote to global * v db * Fix minimal qtbase builds with opengl disabled * make host dependency on qtshadertools a normal dependency in qtmultimedia. * v db * opengl dynamic doesn't work on !windows * v db Co-authored-by: Kai Pastor <dg0yt@darc.de>
107 lines
3.5 KiB
CMake
107 lines
3.5 KiB
CMake
set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase")
|
|
include("${SCRIPT_PATH}/qt_install_submodule.cmake")
|
|
|
|
set(${PORT}_PATCHES)
|
|
|
|
#TODO check features and setup: (means force features!)
|
|
|
|
# -- The following OPTIONAL packages have not been found:
|
|
|
|
# * Qt6AxContainer
|
|
# * Clang
|
|
# * WrapLibClang (required version >= 8)
|
|
|
|
# Configure summary:
|
|
|
|
# Qt Tools:
|
|
# Qt Assistant ........................... yes
|
|
# QDoc ................................... no
|
|
# Clang-based lupdate parser ............. no
|
|
# Qt Designer ............................ yes
|
|
# Qt Distance Field Generator ............ yes
|
|
# kmap2qmap .............................. yes
|
|
# Qt Linguist ............................ yes
|
|
# Mac Deployment Tool .................... no
|
|
# pixeltool .............................. yes
|
|
# qdbus .................................. yes
|
|
# qev .................................... yes
|
|
# Qt Attributions Scanner ................ yes
|
|
# qtdiag ................................. yes
|
|
# qtpaths ................................ yes
|
|
# qtplugininfo ........................... yes
|
|
# Windows deployment tool ................ yes
|
|
|
|
# General features:
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
"assistant" FEATURE_assistant
|
|
"designer" FEATURE_designer
|
|
"linguist" FEATURE_linguist
|
|
"qdoc" CMAKE_REQUIRE_FIND_PACKAGE_Clang
|
|
#"qdoc" CMAKE_REQUIRE_FIND_PACKAGE_WrapLibClang
|
|
"qml" CMAKE_REQUIRE_FIND_PACKAGE_Qt6Qml
|
|
"qml" CMAKE_REQUIRE_FIND_PACKAGE_Qt6Quick
|
|
"qml" CMAKE_REQUIRE_FIND_PACKAGE_Qt6QuickWidgets
|
|
"qml" FEATURE_distancefieldgenerator
|
|
INVERTED_FEATURES
|
|
"qdoc" CMAKE_DISABLE_FIND_PACKAGE_Clang
|
|
"qdoc" CMAKE_DISABLE_FIND_PACKAGE_WrapLibClang
|
|
"qml" CMAKE_DISABLE_FIND_PACKAGE_Qt6Qml
|
|
"qml" CMAKE_DISABLE_FIND_PACKAGE_Qt6Quick
|
|
"qml" CMAKE_DISABLE_FIND_PACKAGE_Qt6QuickWidgets
|
|
)
|
|
|
|
set(TOOL_NAMES
|
|
assistant
|
|
designer
|
|
lconvert
|
|
linguist
|
|
lprodump
|
|
lrelease-pro
|
|
lrelease
|
|
lupdate-pro
|
|
lupdate
|
|
pixeltool
|
|
qcollectiongenerator
|
|
qdistancefieldgenerator
|
|
qhelpgenerator
|
|
qtattributionsscanner
|
|
qtdiag
|
|
qtdiag6
|
|
qtpaths
|
|
qtplugininfo
|
|
qdbus
|
|
qdbusviewer
|
|
qdoc
|
|
)
|
|
if(VCPKG_TARGET_IS_WINDOWS)
|
|
list(APPEND TOOL_NAMES windeployqt)
|
|
elseif(VCPKG_TARGET_IS_OSX)
|
|
list(APPEND TOOL_NAMES macdeployqt)
|
|
endif()
|
|
|
|
qt_install_submodule(PATCHES ${${PORT}_PATCHES}
|
|
TOOL_NAMES ${TOOL_NAMES}
|
|
CONFIGURE_OPTIONS
|
|
${FEATURE_OPTIONS}
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_Qt6AxContainer=ON
|
|
CONFIGURE_OPTIONS_RELEASE
|
|
CONFIGURE_OPTIONS_DEBUG
|
|
)
|
|
|
|
if(VCPKG_TARGET_IS_OSX)
|
|
set(OSX_APP_FOLDERS Designer.app Linguist.app pixeltool.app qdbusviewer.app)
|
|
foreach(_appfolder IN LISTS OSX_APP_FOLDERS)
|
|
message(STATUS "Moving: ${_appfolder}")
|
|
file(MAKE_DIRECTORY "${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin/${_appfolder}")
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/bin/${_appfolder}/" "${CURRENT_PACKAGES_DIR}/tools/${PORT}/bin/${_appfolder}/")
|
|
endforeach()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin")
|
|
endif()
|
|
|
|
file(GLOB_RECURSE debug_dir "${CURRENT_PACKAGES_DIR}/debug/*")
|
|
list(LENGTH debug_dir debug_dir_elements)
|
|
if(debug_dir_elements EQUAL 0)
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug")
|
|
endif()
|