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,35 @@
set(SCRIPT_PATH "${CURRENT_INSTALLED_DIR}/share/qtbase")
include("${SCRIPT_PATH}/qt_install_submodule.cmake")
set(${PORT}_PATCHES)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
FEATURES
"textcodec" FEATURE_textcodec
"codecs" FEATURE_codecs
"big-codecs" FEATURE_big_codecs
"iconv" FEATURE_iconv
"iconv" CMAKE_DISABLE_FIND_PACKAGE_ICU
#"iconv" CMAKE_REQUIRE_FIND_PACKAGE_WrapIconv
"qml" CMAKE_REQUIRE_FIND_PACKAGE_Qt6Quick
INVERTED_FEATURES
"iconv" CMAKE_DISABLE_FIND_PACKAGE_WrapIconv
"qml" CMAKE_DISABLE_FIND_PACKAGE_Qt6Quick
)
#For iconv feature to work the following must be true:
#CONDITION NOT FEATURE_icu AND FEATURE_textcodec AND NOT WIN32 AND NOT QNX AND NOT ANDROID AND NOT APPLE AND WrapIconv_FOUND
#TODO: check if qtbase was built with ICU and fail if iconv is given here.
set(TOOL_NAMES)
qt_install_submodule(PATCHES ${${PORT}_PATCHES}
TOOL_NAMES ${TOOL_NAMES}
CONFIGURE_OPTIONS
${FEATURE_OPTIONS}
CONFIGURE_OPTIONS_RELEASE
CONFIGURE_OPTIONS_DEBUG
)
#For my documentation:
# find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Core)
# find_package(Qt6 ${PROJECT_VERSION} QUIET CONFIG OPTIONAL_COMPONENTS Network Xml Gui Quick)

81
externals/vcpkg/ports/qt5compat/vcpkg.json vendored Executable file
View File

@@ -0,0 +1,81 @@
{
"name": "qt5compat",
"version": "6.3.0",
"description": "The module contains unsupported Qt 5 APIs",
"homepage": "https://www.qt.io/",
"license": null,
"dependencies": [
{
"name": "qtbase",
"default-features": false
}
],
"default-features": [
"big-codecs",
"codecs",
"default-features",
"qml",
"textcodec"
],
"features": {
"big-codecs": {
"description": "Supports big codecs, e.g. CJK.",
"dependencies": [
{
"name": "qt5compat",
"default-features": false,
"features": [
"textcodec"
]
}
]
},
"codecs": {
"description": "Supports non-unicode text conversions.",
"dependencies": [
{
"name": "qt5compat",
"default-features": false,
"features": [
"textcodec"
]
}
]
},
"default-features": {
"description": "Platform-dependent default features"
},
"iconv": {
"description": "Provides internationalization on Unix.",
"dependencies": [
"libiconv",
{
"name": "qt5compat",
"default-features": false,
"features": [
"textcodec"
]
}
]
},
"qml": {
"description": "Build QML imports",
"dependencies": [
{
"name": "qtbase",
"default-features": false,
"features": [
"gui"
]
},
{
"name": "qtdeclarative",
"default-features": false
}
]
},
"textcodec": {
"description": "Supports conversions between text encodings."
}
}
}