mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 12:09:00 +08:00
45f34d72b9
* [Qt] Update to 6.6.0 * fix patch in qtbase * add tmp port to get qtwebengine logs * remove dep in tmp port * Fix CMAKE_BUILD_TYPE being hijacked by qt scripts. * Fix qtwebengine build? * add another script to be fixed * remove path to cmake * fix qtgrpc * looks like the variable is defined somewhere. * avoid aliasing only if the target exists * try different aliasing fix * fix patch * Dep stuff * reenable atomics * reenable librt * remove tmp * v db * v db * add vulkan-header as a dependency * v db * also needs libs * v db * add a comment to remember me not to touch this again * v db
18 lines
703 B
CMake
18 lines
703 B
CMake
set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase")
|
|
include("${SCRIPT_PATH}/qt_install_submodule.cmake")
|
|
|
|
set(${PORT}_PATCHES protoc-host.patch)
|
|
set(TOOL_NAMES qtprotobufgen qtgrpcgen)
|
|
# native_grpc ->grpc WrapgRPC
|
|
# grp -> qt[network]
|
|
# qtprotobufgen -> protobuf WrapProtobuf
|
|
qt_install_submodule(PATCHES ${${PORT}_PATCHES}
|
|
TOOL_NAMES ${TOOL_NAMES}
|
|
CONFIGURE_OPTIONS
|
|
-DCMAKE_FIND_PACKAGE_TARGETS_GLOBAL=ON
|
|
#--trace-expand
|
|
CONFIGURE_OPTIONS_MAYBE_UNUSED
|
|
QT_BUILD_EXAMPLES
|
|
QT_USE_DEFAULT_CMAKE_OPTIMIZATION_FLAGS
|
|
)
|