early-access version 2853

This commit is contained in:
pineappleEA
2022-07-23 03:01:36 +02:00
parent 1f2b5081b5
commit 1f111bb69c
8955 changed files with 418777 additions and 999 deletions

View File

@@ -0,0 +1,36 @@
set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase")
include("${SCRIPT_PATH}/qt_install_submodule.cmake")
set(${PORT}_PATCHES)
set(NO_BIN_AND_TOOLS FALSE)
if(VCPKG_TARGET_ARCHITECTURE MATCHES "^arm" AND VCPKG_TARGET_IS_WINDOWS)
set(NO_BIN_AND_TOOLS TRUE)
endif()
if(NOT NO_BIN_AND_TOOLS)
set(TOOL_NAMES
dumpcpp
dumpdoc
idc
testcon
)
endif()
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
"qml" CMAKE_REQUIRE_FIND_PACKAGE_Qt6Quick
INVERTED_FEATURES
"qml" CMAKE_DISABLE_FIND_PACKAGE_Qt6Quick
)
qt_install_submodule(PATCHES ${${PORT}_PATCHES}
TOOL_NAMES ${TOOL_NAMES}
CONFIGURE_OPTIONS ${FEATURE_OPTIONS}
CONFIGURE_OPTIONS_RELEASE
CONFIGURE_OPTIONS_DEBUG
)
if(NO_BIN_AND_TOOLS)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin" "${CURRENT_PACKAGES_DIR}/tools")
endif()

35
externals/vcpkg/ports/qtactiveqt/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,35 @@
{
"name": "qtactiveqt",
"version": "6.3.0",
"description": "ActiveQt",
"homepage": "https://www.qt.io/",
"license": null,
"supports": "windows",
"dependencies": [
{
"name": "qtactiveqt",
"host": true,
"default-features": false
},
{
"$comment": "also requires printsupport!",
"name": "qtbase",
"default-features": false,
"features": [
"gui",
"widgets"
]
}
],
"features": {
"qml": {
"description": "Build QML imports",
"dependencies": [
{
"name": "qtdeclarative",
"default-features": false
}
]
}
}
}