diff --git a/Mk/Uses/qmake.mk b/Mk/Uses/qmake.mk index 1524aed3d95d..48304c742493 100644 --- a/Mk/Uses/qmake.mk +++ b/Mk/Uses/qmake.mk @@ -1,150 +1,150 @@ # There are three Qt related USES files with different access to Qt. # - qmake: The port requires Qt's qmake to build -- creates the configure target # - auto includes qt.mk # - qt-dist: The port is a port for a part of Qt5 # - auto inclues qt.mk # - qt.mk - Dependency handling. USE_QT=foo bar # # # Provide support for qmake-based projects # # Feature: qmake # Usage: USES=qmake or USES=qmake:ARGS # Must be used along with 'USE_QT*=#' # Valid ARGS: norecursive outsource # ARGS description: # norecursive Don't pass -recursive argument to qmake binary # outsource Perform an out-of-source build # no_env Suppress modification of configure and make environment. # no_configure Don't add the configure target -- this is implied by # HAS_CONFIGURE=yes and GNU_CONFIGURE=yes # # # Variables for ports: # QMAKE_ENV - Environment passed to qmake. # Default: ${CONFIGURE_ENV} # QMAKE_ARGS - Arguments passed to qmake. # Default: see below # QMAKE_CONFIGURE_ARGS - Extra arguments passed to qmake after everything # else, such as "-foo -no-bar". The arguments are usually # set in configure.json. This variable is specific to # qmake from Qt 5. # Default: empty # QMAKE_SOURCE_PATH - Path to qmake project files. # Default: ${WRKSRC} if out-of-source build is # requested, empty otherwise. # # User defined variables: # QMAKE_VERBOSE - Enable verbose configure output. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_QMAKE_MK) _INCLUDE_USES_QMAKE_MK= yes # Suck in qt.mk .include "${USESDIR}/qt.mk" _VALID_ARGS= norecursive outsource no_env no_configure . for arg in ${qmake_ARGS} . if empty(_VALID_ARGS:M${arg}) IGNORE= Incorrect 'USES+= qmake' usage: argument '${arg}' is not recognized . endif . endfor # Check whether we need to add the configure target _ADD_CONFIGURE_TARGET= yes . if !empty(qmake_ARGS:Mno_configure) || defined(HAS_CONFIGURE) || defined(GNU_CONFIGURE) _ADD_CONFIGURE_TARGET= # unset . endif # QMAKESPEC belongs to bsd.qt.mk. QMAKE_ENV?= ${CONFIGURE_ENV} QMAKE_ARGS+= -spec ${QMAKESPEC} \ QMAKE_CC="${CC}" QMAKE_CXX="${CXX}" \ QMAKE_LINK_C="${CC}" QMAKE_LINK_C_SHLIB="${CC}" \ QMAKE_LINK="${CXX}" QMAKE_LINK_SHLIB="${CXX}" \ QMAKE_CFLAGS="${CFLAGS}" \ QMAKE_CXXFLAGS="${CXXFLAGS}" \ QMAKE_LFLAGS="${LDFLAGS}" \ QMAKE_LIBS="${LIBS}" \ QMAKE_CFLAGS_DEBUG="" \ QMAKE_CFLAGS_RELEASE="" \ QMAKE_CXXFLAGS_DEBUG="" \ QMAKE_CXXFLAGS_RELEASE="" \ PREFIX="${PREFIX}" . if defined(WITH_DEBUG) PLIST_SUB+= DEBUG="" QMAKE_ARGS+= CONFIG+="debug separate_debug_info" \ CONFIG-="release" . else PLIST_SUB+= DEBUG="@comment " QMAKE_ARGS+= CONFIG+="release" \ CONFIG-="debug separate_debug_info" . endif # defined(WITH_DEBUG) # We set -recursive by default to keep qmake from running in the build stage. . if ! ${qmake_ARGS:Mnorecursive} QMAKE_ARGS+= -recursive . endif . if defined(QMAKE_VERBOSE) QMAKE_ARGS+= -d . endif # _QMAKE_WRKSRC (and _QMAKE, below) are needed to abstract the qmake target and # use it for both qtbase and USES=qmake ports. They are private, not supposed to # be used anywhere else. _QMAKE_WRKSRC?= ${CONFIGURE_WRKSRC} . if ${qmake_ARGS:Moutsource} CONFIGURE_WRKSRC= ${WRKDIR}/.build BUILD_WRKSRC= ${CONFIGURE_WRKSRC} INSTALL_WRKSRC= ${BUILD_WRKSRC} TEST_WRKSRC= ${BUILD_WRKSRC} QMAKE_SOURCE_PATH?= ${WRKSRC} . else QMAKE_SOURCE_PATH?= # empty . endif # Add qmake to USE_QT -- unless it's qmake itself -. if !${PORTNAME} == qmake +. if !${PORTNAME} == qmake && ${_QT_VER:M5} USE_QT+= qmake_build . endif . if empty(qmake_ARGS:Mno_env) DESTDIRNAME= INSTALL_ROOT CONFIGURE_ENV+= QTDIR="${QT_ARCHDIR}" QMAKE="${QMAKE}" \ MOC="${MOC}" RCC="${RCC}" UIC="${UIC}" \ QMAKESPEC="${QMAKESPEC}" CONFIGURE_ARGS+= --with-qt-includes=${QT_INCDIR} \ --with-qt-libraries=${QT_LIBDIR} \ --with-extra-includes=${LOCALBASE}/include \ --with-extra-libs=${LOCALBASE}/lib . endif _USES_POST+= qmake .endif # _QMAKE_MK_INCLUDED # ============================================================================= # # ============================================================================= .if defined(_POSTMKINCLUDED) && !defined(_QMAKE_MK_POST_INCLUDED) _QMAKE_MK_POST_INCLUDED= qmake.mk # Define a custom target to make it usable by bsd.qt.mk for internal Qt # configuration. qmake-configure: @${MKDIR} ${_QMAKE_WRKSRC} @cd ${_QMAKE_WRKSRC} && \ ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} \ ${QMAKE_SOURCE_PATH} \ ${QMAKE_CONFIGURE_ARGS:?--:} ${QMAKE_CONFIGURE_ARGS} . if !target(do-configure) && !empty(_ADD_CONFIGURE_TARGET) _USES_configure+= 450:qmake-configure . endif .endif # !defined(_INCLUDE_USES_QMAKE_MK) diff --git a/Mk/Uses/qt-dist.mk b/Mk/Uses/qt-dist.mk index d644f0b44d58..7a8ed434bf0b 100644 --- a/Mk/Uses/qt-dist.mk +++ b/Mk/Uses/qt-dist.mk @@ -1,471 +1,503 @@ # There are three Qt related USES files with different access to Qt. # - qmake: The port requires Qt's qmake to build -- creates the configure target # - auto includes qt.mk # - qt-dist: The port is a port for an part of Qt5 # - auto inclues qt.mk # - qt.mk - Dependency handling. USE_QT=foo bar # # # Usage # qt-dist:[,yes|modulename] # # MAINTAINER: kde@FreeBSD.org .if !defined(_QT_DIST_MK_INCLUDED) _QT_DIST_MK_INCLUDED= qt-dist.mk # Suck in qt.mk and qmake.mk qt_ARGS?= # empty .include "${USESDIR}/qt.mk" qmake_ARGS?= # empty .include "${USESDIR}/qmake.mk" # Supported distribution arguments _QT5_DISTS= 3d activeqt androidextras base charts connectivity datavis3d \ declarative doc gamepad graphicaleffects imageformats location \ lottie macextras multimedia networkauth purchasing quick3d quickcontrols \ quickcontrols2 quicktimeline remoteobjects script scxml sensors serialbus \ serialport speech svg tools translations virtualkeyboard wayland \ webchannel webengine webglplugin websockets webview winextras \ x11extras xmlpatterns +_QT6_DISTS= 3d 5compat base declarative doc imageformats quick3d quickcontrols2 \ + quicktimeline networkauth shadertools svg tools translations webengine wayland + _QT_DISTS= ${_QT${_QT_VER}_DISTS} # We only accept one item as an argument. The fetch target further below works # around this. _QT_DIST= # empty . for dist in ${_QT_DISTS:O:u} . if ${qt-dist_ARGS:M${dist}} . if empty(_QT_DIST) _QT_DIST= ${dist} . else IGNORE= cannot be installed: different Qt dists specified via qt-dist:[${qt-dist_ARGS:S/ /,/g}] . endif . endif . endfor # Fall back to sensible defaults for _QT_DIST . if empty(_QT_DIST) -. if ${_QT_VER:M5} _QT_DIST= ${PORTNAME} # don't force qt-dist to be set for Qt5 ports which 75% of time are ${PORTNAME} -. endif . endif # Check validitiy . if empty(_QT_DISTS:M${_QT_DIST}) IGNORE= Unsupported qt-dist ${_QT_DIST} for qt:${_QT_VER} . endif ################################################################################ -# Set standard bsd.port.mk variables +# Set standard bsd.port.mk variables. LICENSE?= LGPL21 . if !exists(${PKGDIR}/pkg-descr) DESCR?= ${PORTSDIR}/devel/${_QT_RELNAME}/pkg-descr . endif + # Stage support. -DESTDIRNAME= INSTALL_ROOT +_QT5_DESTDIRNAME= INSTALL_ROOT +_QT6_DESTDIRNAME= DESTDIR +DESTDIRNAME= ${_QT${_QT_VER}_DESTDIRNAME} -. if ${_QT_VER:M5} +# Qt's tarballs are xz compressed. +. if empty(USES:Mtar) +EXTRACT_SUFX?= .tar.xz +. endif +# Qt5 specific master sites +_QT5_MASTER_SITES_kde= LOCAL +_QT5_MASTER_SITE_SUBDIR_kde= tcberner/KDE/Qt/${_QT_VERSION} +_QT5_MASTER_SITES= ${MASTER_SITE_QT} +_QT5_MASTER_SITE_SUBDIR= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/ +# Qt6 specific master sites +_QT6_MASTER_SITES= ${MASTER_SITE_QT} +_QT6_MASTER_SITE_SUBDIR= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules \ + official_releases/additional_libraries/${_QT_VERSION:R}/${_QT_VERSION}/ +# Qt5 specific distnames +_QT5_DISTNAME= ${_QT_DIST:S,^,qt,:S,$,-everywhere-src-${DISTVERSION},} +_QT5_DISTNAME_kde= ${_QT_DIST:S,^,kde-qt,:S,$,-${DISTVERSION},} +# Qt6 specific distnames +_QT6_DISTNAME= ${_QT_DIST:S,^,qt,:S,$,-everywhere-src-${DISTVERSION},} + +# Effective master sites and disfile valus +MASTER_SITES= ${_QT${_QT_VER}_MASTER_SITES${_KDE_${_QT_DIST}:D_kde}} +MASTER_SITE_SUBDIR= ${_QT${_QT_VER}_MASTER_SITE_SUBDIR${_KDE_${_QT_DIST}:D_kde}} +DISTNAME= ${_QT${_QT_VER}_DISTNAME${_KDE_${_QT_DIST}:D_kde}} +DISTFILES= ${DISTNAME:S,$,${EXTRACT_SUFX},} +DIST_SUBDIR= KDE/Qt/${_QT_VERSION} + +. if ${_QT_VER:M5} # KDE maintains a repository with a patched Qt5 distribution. _KDE_3d= 15 _KDE_base= 165 _KDE_charts= 1 _KDE_connectivity= 5 _KDE_datavis3d= 0 _KDE_declarative= 19 _KDE_gamepad= 0 _KDE_graphicaleffects= 0 _KDE_imageformats= 3 _KDE_location= 3 _KDE_multimedia= 1 _KDE_networkauth= 0 _KDE_quick3d= 1 _KDE_quickcontrols= 0 _KDE_quickcontrols2= 5 _KDE_quicktimeline= 0 _KDE_remoteobjects= 0 _KDE_script= 0 _KDE_script_ORIGIN_TAG= v5.15.10-lts _KDE_script_VERSION= 5.15.10 _KDE_scxml= 0 _KDE_sensors= 0 _KDE_serialbus= 0 _KDE_serialport= 0 _KDE_speech= 1 _KDE_svg= 10 _KDE_tools= 1 _KDE_translations= 2 _KDE_virtualkeyboard= 3 _KDE_wayland= 39 _KDE_webchannel= 3 _KDE_webglplugin= 0 _KDE_websockets= 3 _KDE_webview= 0 _KDE_x11extras= 0 _KDE_xmlpatterns= 0 - . if defined(_KDE_${_QT_DIST}) -# KDE patched Qt parts QT5_KDE_PATCH= p${_KDE_${_QT_DIST}} _KDE_${_QT_DIST}_VERSION?= ${_QT_VERSION} _KDE_${_QT_DIST}_ORIGIN_TAG?= v${_KDE_${_QT_DIST}_VERSION}-lts-lgpl -MASTER_SITES= LOCAL/tcberner/KDE/Qt/${_QT_VERSION} -DISTNAME= ${_QT_DIST:S,^,kde-qt,:S,$,-${DISTVERSION},} COMMENT+= (KDE patched) . else -# non KDE patched Qt parts QT5_KDE_PATCH= # -MASTER_SITES= ${MASTER_SITE_QT} -MASTER_SITE_SUBDIR?= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/ -DISTNAME= ${_QT_DIST:S,^,qt,:S,$,-everywhere-src-${DISTVERSION},} . endif +. endif # ${_QT_VER:M5} -DISTFILES= ${DISTNAME:S,$,${EXTRACT_SUFX},} -DIST_SUBDIR= KDE/Qt/${_QT_VERSION} - +# Environment setup for Qt5 +. if ${_QT_VER:M5} # Qt (at least when used with qmake) has a tendency to overlink: some libraries # have dependencies on others in the mkspec configurations and the latter are # always passed to the linker even if they are not actually used. By passing # --as-needed to the linker by default when building the Qt ports we do not # have to declare a lot of unnecessary dependencies in USE_QT5. LDFLAGS+= -Wl,--as-needed -. if ${.TARGETS:Mmakesum} || ${.TARGETS:Mfetch} && \ - defined(DISABLE_SIZE) && defined(NO_CHECKSUM) -# Ensure that the "makesum" target (with its inner "fetch" one) uses -# devel/qt*/distinfo for every port. -. endif - -# Qt5's tarballs are xz compressed. -. if empty(USES:Mtar) -EXTRACT_SUFX?= .tar.xz -. endif - . if ${_QT_DIST} == "base" && ${PORTNAME} != "qmake" # Qt configure requires pkg-config to detect dependencies. .include "${USESDIR}/pkgconfig.mk" . endif # -nomake is only used by qtbase's configure script. # Other ports from other Qt modules will automatically build examples and # tests if the directories exist because of mkspecs/features/qt_parts.prf. EXTRACT_AFTER_ARGS?= ${DISTNAME:S,$,/examples,:S,^,--exclude ,} \ ${DISTNAME:S,$,/tests,:S,^,--exclude ,} \ --no-same-owner --no-same-permissions . endif # ! ${_QT_VER:M5} +# Build setup for Qt6 +. if ${_QT_VER:M6} +CMAKE_ARGS+= -DCMAKE_INSTALL_PREFIX=${PREFIX} \ + -DINSTALL_BINDIR=${PREFIX}/${QT_BINDIR_REL} \ + -DINSTALL_PUBLICBINDIR=${PREFIX}/bin \ + -DINSTALL_LIBDIR=${PREFIX}/${QT_LIBDIR_REL} \ + -DINSTALL_LIBEXECDIR=${PREFIX}/${QT_LIBEXECDIR_REL} \ + -DINSTALL_DOCDIR=${PREFIX}/${QT_DOCDIR_REL} \ + -DINSTALL_ARCHDATADIR=${PREFIX}/${QT_ARCHDIR_REL} \ + -DINSTALL_DATADIR=${PREFIX}/${QT_DATADIR_REL} \ + -DINSTALL_INCLUDEDIR=${PREFIX}/${QT_INCDIR_REL} \ + -DINSTALL_MKSPECSDIR=${PREFIX}/${QT_MKSPECDIR_REL} \ + -DINSTALL_EXAMPLESDIR=${PREFIX}/${QT_EXAMPLEDIR_REL} \ + -DINSTALL_DESCRIPTIONSDIR=${PREFIX}/${QT_DESCRIPTIONSDIR_REL} \ + -DQT_QMAKE_TARGET_MKSPEC:String=freebsd-clang \ + --log-level=TRACE +. endif + +# Build setup for Qt5 +. if ${_QT_VER:M5} CONFIGURE_ENV+= MAKE="${MAKE:T}" CONFIGURE_ARGS+= -opensource -confirm-license \ -no-pch \ -prefix ${PREFIX} \ -bindir ${PREFIX}/${QT_BINDIR_REL} \ -headerdir ${PREFIX}/${QT_INCDIR_REL} \ -libdir ${PREFIX}/${QT_LIBDIR_REL} \ -plugindir ${PREFIX}/${QT_PLUGINDIR_REL} \ -importdir ${PREFIX}/${QT_IMPORTDIR_REL} \ -datadir ${PREFIX}/${QT_DATADIR_REL} \ -docdir ${PREFIX}/${QT_DOCDIR_REL} \ -translationdir ${PREFIX}/${QT_L10NDIR_REL} \ - -sysconfdir ${PREFIX}/${QT_ETCDIR_REL} - -. if ${_QT_VER:M5} -CONFIGURE_ARGS+= -nomake examples -nomake tests \ + -sysconfdir ${PREFIX}/${QT_ETCDIR_REL} \ + -nomake examples -nomake tests \ -platform ${QMAKESPECNAME} \ -archdatadir ${PREFIX}/${QT_ARCHDIR_REL} \ -libexecdir ${PREFIX}/${QT_LIBEXECDIR_REL} \ -qmldir ${PREFIX}/${QT_QMLDIR_REL} \ -examplesdir ${PREFIX}/${QT_EXAMPLEDIR_REL} \ -testsdir ${PREFIX}/${QT_TESTDIR_REL} . if ${ARCH} == i386 && empty(MACHINE_CPU:Msse2) CONFIGURE_ARGS+= -no-sse2 . endif # Work around a bug in current binutils, where the gold linker creates # duplicate symbols. See pr 218187. Disable the gold-linker for Qt5 ports. CONFIGURE_ARGS+= -no-use-gold-linker # Pass -recheck-all so that multiple calls to the configure script really # re-run all checks. CONFIGURE_ARGS+= -recheck-all . endif # ${_QT_VER:M5} . if defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) WITH_DEBUG= yes STRIP= # It's done prior to bsd.qt.mk inclusion. CONFIGURE_ARGS+= -debug -separate-debug-info # Override configuration in global qconfig.pri. QMAKE_ARGS+= QT_CONFIG+="debug separate_debug_info" \ QT_CONFIG-="release" . else CONFIGURE_ARGS+= -release -no-separate-debug-info QMAKE_ARGS+= QT_CONFIG+="release" \ QT_CONFIG-="debug separate_debug_info" . endif # defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) . if defined(WANT_QT_VERBOSE_CONFIGURE) CONFIGURE_ARGS+= -verbose . endif . if ${_QT_DIST} == "base" _EXTRA_PATCHES_QT5= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_create__cmake.prf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_qt__module.prf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_common_bsd_bsd.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-clang_qmake.conf . if ${ARCH:Mmips*} || (${ARCH:Mpowerpc*} && !exists(/usr/bin/clang)) || ${ARCH} == sparc64 _EXTRA_PATCHES_QT5+= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_g++-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_gcc-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-g++_qmake.conf USE_GCC= yes . elif ${ARCH} == armv7 || ${ARCH} == powerpc _EXTRA_PATCHES_QT5+= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_g++-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_gcc-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-g++_qmake.conf . endif +. if ${_QT_VER:M5} EXTRA_PATCHES?= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-configure \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-sync.profiles \ ${_EXTRA_PATCHES_QT5} +. endif # ${_QT_VER:M5} . endif # ${_QT_DIST} == "base" # Override settings installed in qconfig.h and *.pri files. The flags will be # installed along with the port, but have to be passed as arguments while # building the port itself. Flags prefixed with "-" (e.g., "-CUPS" and "-cups") # are needed to disable some features. . if !defined(${QT_MODNAME}) || empty(${QT_MODNAME}) # Used for both qconfig-*.h and qt_config_*.pri; it can't be empty. QT_MODNAME= ${PORTNAME} . endif QT_DEFINES?= # For qconfig.h flags (without "QT_" prefix). QT_CONFIG?= # For *.pri files QT_CONFIG flags. . if ${QT_DEFINES} QMAKE_ARGS+= DEFINES+="${QT_DEFINES:O:u:C/^([^-])/QT_\1/:C/^-/QT_NO_/:O}" . endif # ${QT_DEFINES} PKGDEINSTALL= ${WRKDIR}/pkg-deinstall PKGINSTALL= ${WRKDIR}/pkg-install . if ${QT_CONFIG:N-*} QMAKE_ARGS+= QT_CONFIG+="${QT_CONFIG:N-*:O:u}" . endif . if ${QT_CONFIG:M-*} QMAKE_ARGS+= QT_CONFIG-="${QT_CONFIG:M-*:O:u:C/^-//}" . endif PLIST_SUB+= SHORTVER=${_QT_VERSION:R} \ FULLVER=${_QT_VERSION:C/-.*//} # Handle additional PLIST directories, which should only be used for Qt-dist ports. . for dir in CMAKE ETC # Export QT_CMAKEDIR and QT_ETCDIR. PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}" . endfor . if ${_QT_VER:M5} . if ${_QT_DIST} == "base" # qtbase requires some tools to be symlinked to the build directory. _QT_TOOLS= # empty . if ${PORTNAME} != "qmake" _QT_TOOLS+= ${QMAKE} . endif . if ${PORTNAME} != "buildtools" _QT_TOOLS+= ${MOC} ${RCC} . endif . if ${PORTNAME} != "qdoc" _QT_TOOLS+= qdoc . endif . if ${PORTNAME} != "dbus" _QT_TOOLS+= qdbuscpp2xml qdbusxml2cpp . endif . if ${PORTNAME} != "widgets" _QT_TOOLS+= ${UIC} . endif # The list of QtBase components that need to be linked into WRKSRC/lib for # other QtBase ports. See below. _QT5_BASE= core dbus gui network sql widgets _QT5_ADDITIONAL_LINK?= # Ensure definition . if ${_QT_VER:M5} post-patch: gcc-post-patch gcc-post-patch: ${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/mkspecs/common/gcc-base.conf \ ${WRKSRC}/mkspecs/freebsd-g++/qmake.conf ${REINPLACE_CMD} 's|%%GCC_DEFAULT%%|${GCC_DEFAULT}|g' \ ${WRKSRC}/mkspecs/common/gcc-base.conf \ ${WRKSRC}/mkspecs/common/g++-base.conf \ ${WRKSRC}/mkspecs/common/bsd/bsd.conf \ ${WRKSRC}/mkspecs/freebsd-g++/qmake.conf . endif pre-configure: qtbase-pre-configure qtbase-pre-configure: . for tool in ${_QT_TOOLS} @${TEST} -e ${QT_BINDIR}/${tool:T} && \ ${LN} -sf ${QT_BINDIR}/${tool:T} ${CONFIGURE_WRKSRC}/bin/${tool:T} || \ ${TRUE} . endfor # The following is a fix for the inplace upgrade problem we faced (see # QTBUG-40825 and ports bugs 194088, 195105 and 198720) previously, # which previously was adressed by making sure, that ${LOCALBASE}/lib, which # would often gets added by pkgconf for the dependencies, was passed after # ${WRKSRC}/lib. # * We fix the inplace upgrade problem by moving the Qt5 libraries into # ${LOCALBASE}/lib/qt5. Therefore a -L${LOCALBASE}/lib does no harm anymore. # * However, this means, that the ports belonging to the split up QtBase package # now no longer can find their depending QtBase libraries. We fix this by # linking these into ${CONFIGURE_WRKSRC}/lib if the given QtBase port depends # on them. . if ${_QT_DIST:Mbase} . for basedep in ${_QT5_BASE} . if ! empty(USE_QT:M${basedep}) ${LN} -sf ${QT_LIBDIR}/${${basedep}_LIB} ${CONFIGURE_WRKSRC}/lib . endif . endfor . endif # # **** THIS PART IS OBSOLETE FOR THE NEXT QT UPGRADE **** # # Add ${LOCALBASE}/lib to DEFAULT_LIBDIRS, which we use to filter out # certain paths from pkg-config calls (see the explanation in # devel/qt5/files/patch-configure) as well as for setting # QMAKE_DEFAULT_LIBDIR in mkspecs/qconfig.pri. Part of the solution for # ports/194088. post-patch: qtbase-post-patch qtbase-post-patch: ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/mkspecs/common/bsd/bsd.conf \ ${WRKSRC}/mkspecs/freebsd-clang/qmake.conf . if ${PORTNAME} != "qmake" _QMAKE= ${CONFIGURE_WRKSRC}/bin/qmake . endif . endif pre-configure: qt5-pre-configure qt5-pre-configure: # Qt 5.3.2 introduced a check in mkspecs/features/create_cmake.prf that # requires tests/auto/cmake to be present, otherwise the configure stage will # fail. # Since we cannot extract tests/auto/cmake/ and exclude tests/ at the same # time, we have to disable the check in a cache file (the only way to get this # value through to the configure script in qtbase). ${MKDIR} ${CONFIGURE_WRKSRC} ${ECHO_CMD} 'CMAKE_MODULE_TESTS = -' > ${CONFIGURE_WRKSRC}/.qmake.cache # configure will run syncqt.pl if it finds a .git entry in the working directory touch ${WRKSRC}/.git # As the patch collection was created after a version bump, all module verisions # are tagged as 5.15.3 touch ${WRKSRC}/.qmake.conf # easier than to -f before the sed ${REINPLACE_CMD} -e '/MODULE_VERSION/s|5\.15\.[0-9]|${_QT_VERSION}|g' \ ${WRKSRC}/.qmake.conf # **** THIS PART IS OBSOLETE FOR THE NEXT QT UPGRADE **** # # We piggyback on QMAKE_LIBDIR_FLAGS to make sure -L${WRKSRC}/lib is passed to # the linker before -L/usr/local/lib. By default, the opposite happens, which # is a problem when a Qt port is being upgraded, since an existing library # would end up being picked up instead of those built in ${WRKSRC}/lib. Since # qmake appends the value of QMAKE_LIBDIR to QMAKE_LIBDIR_FLAGS, we can use the # latter to get the linker path order right. qmake is smart enough to strip # occurrences of ${WRKSRC}/lib from .pc and .prl files when installing them. # See QTBUG-40825 and ports bugs 194088, 195105 and 198720. ${ECHO_CMD} 'QMAKE_LIBDIR_FLAGS = -L${CONFIGURE_WRKSRC}/lib' >> ${CONFIGURE_WRKSRC}/.qmake.cache ${ECHO_CMD} 'QMAKE_DEFAULT_LIBDIRS += ${LOCALBASE}/lib /usr/lib /lib' >> ${CONFIGURE_WRKSRC}/.qmake.cache ${ECHO_CMD} 'QMAKE_DEFAULT_INCDIRS += ${LOCALBASE}/include /usr/include' >> ${CONFIGURE_WRKSRC}/.qmake.cache # Allow linking of further libraries to the configure directory. . if !empty(_QT5_ADDITIONAL_LINK) . for dep in ${_QT5_ADDITIONAL_LINK} ${MKDIR} ${CONFIGURE_WRKSRC}/lib . if ! empty(USE_QT:M${dep}) ${LN} -sf ${QT_LIBDIR}/${qt-${dep}_LIB} ${CONFIGURE_WRKSRC}/lib . endif . endfor . endif . if ${QT_DEFINES:N-*} # There **are** defines, so we need to **add** this port to the # qconfig-modules.h header; make @need_add empty and comment out # the @need_remove lines in the script (see below in qt-post-install). # If there are no defines, do it the other way around. _sub_need_add= _sub_need_remove= \#\# . else _sub_need_add= \#\# _sub_need_remove= . endif # If a port installs Qt version-specific binaries (e.g. "designer" which # existed as a Qt4 application and exists as a Qt5 application and will # probably be a Qt6 application) the port should set `QT_BINARIES=yes`. . if defined(QT_BINARIES) _sub_need_bin= . else _sub_need_bin= \#\# . endif . if ${QT_MODNAME} == core # QtCore (e.g. devel/qt5-core) is the one that starts the header, # and is also the one that can clean it up when deinstalled. _sub_need_clean= . else _sub_need_clean= \#\# . endif post-install: qt-post-install qt-post-install: # We can't use SUB_FILES with the shared pkg-change.in. # We need it to be a script instead of a group of @unexecs. # Do two steps of processing -- introducing the Qt variables, # and replacing the @tags with comment (or nothing) characters # according to the port's settings -- in one sed and write # to pkg-change.tmp. Then split it up and minify for the # install and deinstall step. @${SED} -e 's,%%QT_MODNAME%%,${QT_MODNAME},g' \ -e 's,%%QT_INCDIR%%,${QT_INCDIR},g' \ -e 's,@need_add,${_sub_need_add},' \ -e 's,@need_remove,${_sub_need_remove},' \ -e 's,@need_clean,${_sub_need_clean},' \ -e 's,@need_bin,${_sub_need_bin},' \ ${PORTSDIR}/devel/${_QT_RELNAME}/${FILESDIR:T}/pkg-change.in > \ ${WRKDIR}/pkg-change.tmp @${SED} -e 's,@install,,' -e 's,@deinstall,##,' ${WRKDIR}/pkg-change.tmp | ${SED} -e '/##/d' > ${PKGINSTALL} @${SED} -e 's,@install,##,' -e 's,@deinstall,,' ${WRKDIR}/pkg-change.tmp | ${SED} -e '/##/d' > ${PKGDEINSTALL} # Drop all leading spaces in the script, to minify @${REINPLACE_CMD} 's/^ *//' ${PKGINSTALL} ${PKGDEINSTALL} . if ${QT_DEFINES:N-*} @${MKDIR} ${STAGEDIR}${QT_INCDIR}/QtCore/modules @${ECHO_CMD} -n \ > ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h . for def in ${QT_DEFINES:N-*:O:u:C/=.*$//} @${ECHO_CMD} "#if !defined(QT_${def}) && !defined(QT_NO_${def})" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h ${ECHO_CMD} "# define QT_${def}" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h @${ECHO_CMD} "#endif" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h @${ECHO_CMD} \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h . endfor @${ECHO_CMD} "${PREFIX}/${QT_INCDIR_REL}/QtCore/modules/qconfig-${QT_MODNAME}.h" \ >> ${TMPPLIST} . endif # ${QT_DEFINES:N-*} . if ${QT_CONFIG:N-*} @${MKDIR} ${STAGEDIR}${QT_MKSPECDIR}/modules ${ECHO_CMD} "QT_CONFIG += ${QT_CONFIG:N-*:O:u}" \ > ${STAGEDIR}${QT_MKSPECDIR}/modules/qt_config_${QT_MODNAME}.pri @${ECHO_CMD} "${PREFIX}/${QT_MKSPECDIR_REL}/modules/qt_config_${QT_MODNAME}.pri" \ >> ${TMPPLIST} . endif # ${QT_CONFIG:N-*} . endif # M5 qt-create-kde-distfile: ${SH} ${PORTSDIR}/devel/${_QT_RELNAME}/files/create_kde-qt_release.sh \ ${_QT_DIST} \ ${DISTDIR}/${DIST_SUBDIR} \ ${_KDE_${_QT_DIST}_VERSION} \ ${_KDE_${_QT_DIST}_ORIGIN_TAG} .endif # defined(_QT_DIST_MK_INCLUDED) + diff --git a/Mk/Uses/qt.mk b/Mk/Uses/qt.mk index 659dda05c8c8..9fb06dad9578 100644 --- a/Mk/Uses/qt.mk +++ b/Mk/Uses/qt.mk @@ -1,409 +1,433 @@ # There are three Qt related USES files with different access to Qt. # - qmake: The port requires Qt's qmake to build -- creates the configure target # - auto includes qt.mk # - qt-dist: The port is a port for a part of Qt5 # - auto includes qt.mk and qmake.mk # - qt.mk - Dependency handling. USE_QT=foo bar # # Usage: # USES=qt:[,no_env] # # Versions: 5 # # Port variables: # USE_QT - List of Qt modules to depend on, with optional '_build' # and '_run' suffixes. Define it empty to include this file # without depending on Qt ports. # # MAINTAINER: kde@FreeBSD.org .if !defined(_QT_MK_INCLUDED) _QT_MK_INCLUDED= qt.mk # Qt versions currently supported by the framework. -_QT_SUPPORTED?= 5 +_QT_SUPPORTED?= 5 6 QT5_VERSION?= 5.15.5 +QT6_VERSION?= 6.3.1 # We accept the Qt version to be passed by either or all of the three mk files. . if empty(qt_ARGS) && empty(qmake_ARGS) && empty(qt-dist_ARGS) IGNORE= qt needs a version (${_QT_SUPPORTED}) passed via qt, qmake or qt-dist. . endif # Gather all the args together _QT_GLOBAL_ARGS= ${qt_ARGS} ${qmake_ARGS} ${qt-dist_ARGS} # Check fo the Qt version to be used _QT_VER= # empty . for ver in ${_QT_SUPPORTED:O:u} . if ${_QT_GLOBAL_ARGS:M${ver}} . if !defined(_QT_VERSION) _QT_VER= ${ver} . else . if ${_QT_VERSION} != ${ver} IGNORE?= cannot be installed: different Qt versions specified via qt:[${_QT_SUPPORTED:S/ //g}], qmake:[${_QT_SUPPORTED:S/ //g}] a qt-dist:[${_QT_SUPPORTED:S/ //g}] . endif . endif . endif . endfor . if empty(_QT_VER) IGNORE?= cannot decide what Qt version to use: specify one via qt:[${_QT_SUPPORTED:S/ //g}], qmake:[${_QT_SUPPORTED:S/ //g}] or qt-dist:[${_QT_SUPPORTED:S/ //g}] . endif # Set the shortcuts used from now on _QT_RELNAME= qt${_QT_VER} _QT_VERSION= ${QT${_QT_VER}_VERSION} -# A wrapper (qtchooser) is used to invoke binaries. QT_BINDIR_REL?= ${QT_ARCHDIR_REL}/bin QT_INCDIR_REL?= include/${_QT_RELNAME} QT_LIBDIR_REL?= lib/${_QT_RELNAME} QT_ARCHDIR_REL?= ${QT_LIBDIR_REL} QT_PLUGINDIR_REL?= ${QT_ARCHDIR_REL}/plugins +QT_DESCRIPTIONSDIR_REL?=${QT_DATADIR_REL}/modules QT_LIBEXECDIR_REL?= libexec/${_QT_RELNAME} QT_IMPORTDIR_REL?= ${QT_ARCHDIR_REL}/imports QT_QMLDIR_REL?= ${QT_ARCHDIR_REL}/qml QT_DATADIR_REL?= share/${_QT_RELNAME} QT_DOCDIR_REL?= share/doc/${_QT_RELNAME} QT_L10NDIR_REL?= ${QT_DATADIR_REL}/translations QT_ETCDIR_REL?= etc/xdg QT_EXAMPLEDIR_REL?= share/examples/${_QT_RELNAME} QT_TESTDIR_REL?= ${QT_DATADIR_REL}/tests QT_CMAKEDIR_REL?= lib/cmake # Not customizable. QT_MKSPECDIR_REL= ${QT_ARCHDIR_REL}/mkspecs _QT_LIBVER= ${_QT_VERSION:R:R} LCONVERT?= ${QT_BINDIR}/lconvert LRELEASE?= ${QT_BINDIR}/lrelease LUPDATE?= ${QT_BINDIR}/lupdate MOC?= ${QT_BINDIR}/moc RCC?= ${QT_BINDIR}/rcc UIC?= ${QT_BINDIR}/uic QMAKE?= ${QT_BINDIR}/qmake QCOLLECTIONGENERATOR?= ${QT_BINDIR}/qcollectiongenerator QHELPGENERATOR?= ${QT_BINDIR}/qhelpgenerator # Needed to redefine the qmake target for internal Qt configuration. _QMAKE?= ${QMAKE} QMAKESPECNAME?= freebsd-${QMAKE_COMPILER} QMAKESPEC?= ${QT_MKSPECDIR}/${QMAKESPECNAME} # The whole Qt distribution should be built with the same compiler, but it's # better to support custom settings. Dereferencing the detection allows to # avoid forking a shell on each inclusion of this file, and to catch any CXX # customization (via USE_GCC, etc.). QMAKE_COMPILER= $$(ccver="$$(${CXX} --version)"; case "$$ccver" in *clang*) echo clang ;; *) echo g++ ;; esac) . for dir in BIN INC LIB ARCH PLUGIN LIBEXEC IMPORT \ QML DATA DOC L10N ETC EXAMPLE TEST MKSPEC \ CMAKE QT_${dir}DIR= ${PREFIX}/${QT_${dir}DIR_REL} # Export all directories to the plist substituion for QT_DIST ports. # For the others, exclude QT_CMAKEDIR and QT_ETCDIR. . if ${dir:NCMAKE} && ${dir:NETC} PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}" . endif . endfor -# Pass the chosen Qt version to the environment for qtchooser. CONFIGURE_ENV+= QT_SELECT=${_QT_RELNAME} MAKE_ENV+= QT_SELECT=${_QT_RELNAME} # Make sure both the installed mkspecs as well as the ones being built are # found, with the ones from the port being built having preference. CONFIGURE_ENV+= QMAKEMODULES="${WRKSRC}/mkspecs/modules:${LOCALBASE}/${QT_MKSPECDIR_REL}/modules" MAKE_ENV+= QMAKEMODULES="${WRKSRC}/mkspecs/modules:${LOCALBASE}/${QT_MKSPECDIR_REL}/modules" _USES_POST+= qt .endif # _QT_MK_INCLUDED # ============================================================================= # # ============================================================================= .if defined(_POSTMKINCLUDED) && !defined(_QT_MK_POST_INCLUDED) _QT_MK_POST_INCLUDED= qt.mk # The Qt components supported by qt.mk: list of shared, and version specific ones _USE_QT_ALL= assistant dbus declarative declarative-test designer doc gui help \ imageformats l10n linguist linguisttools multimedia \ network opengl pixeltool qdbusviewer qmake script \ scripttools sql sql-mysql sql-odbc sql-pgsql \ sql-sqlite2 sql-sqlite3 svg testlib webkit \ xml xmlpatterns . if ${ARCH} == amd64 || ${ARCH} == i386 _USE_QT_ALL+= sql-ibase . endif _USE_QT5_ONLY= 3d buildtools charts concurrent connectivity \ - core datavis3d diag examples gamepad \ - graphicaleffects location networkauth paths phonon4 plugininfo printsupport \ + core datavis3d diag examples gamepad graphicaleffects \ + location networkauth paths phonon4 plugininfo printsupport \ qdbus qdoc qdoc-data qev quick3d quickcontrols quickcontrols2 \ - quicktimeline remoteobjects scxml sensors serialbus serialport speech \ - sql-tds uiplugin uitools virtualkeyboard wayland webchannel webglplugin \ - webengine websockets websockets-qml webview widgets x11extras + quicktimeline remoteobjects scxml sensors serialbus serialport \ + speech sql-tds uiplugin uitools virtualkeyboard wayland \ + webchannel webglplugin webengine websockets websockets-qml \ + webview widgets x11extras assistant dbus declarative designer \ + doc gui help imageformats l10n linguist linguisttools \ + multimedia network opengl pixeltool qdbusviewer qmake script \ + scripttools sql sql-mysql sql-odbc sql-pgsql sql-sqlite2 \ + sql-sqlite3 svg testlib webkit xml xmlpatterns + +_USE_QT6_ONLY= 3d 5compat base declarative doc imageformats quick3d \ + quickcontrols2 quicktimeline networkauth shadertools \ + svg tools translations wayland # Dependency tuples: _LIB should be preferred if possible. qt-3d_PORT= graphics/${_QT_RELNAME}-3d qt-3d_LIB= libQt${_QT_LIBVER}3DCore.so +qt-5compat_PORT= devel/${_QT_RELNAME}-5compat +qt-5compat_LIB= libQt${_QT_LIBVER}Core5Compat.so + qt-assistant_PORT= devel/${_QT_RELNAME}-assistant qt-assistant_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/assistant # Always build with *this* version's buildtools qt-buildtools_PORT= devel/${_QT_RELNAME}-buildtools qt-buildtools_PATH= ${_QT_RELNAME}-buildtools>=${_QT_VERSION:R} +qt-base_PORT= devel/${_QT_RELNAME}-base +qt-base_LIB= libQt${_QT_LIBVER}Core.so + qt-charts_PORT= x11-toolkits/${_QT_RELNAME}-charts qt-charts_LIB= libQt${_QT_LIBVER}Charts.so qt-concurrent_PORT= devel/${_QT_RELNAME}-concurrent qt-concurrent_LIB= libQt${_QT_LIBVER}Concurrent.so qt-connectivity_PORT= comms/${_QT_RELNAME}-connectivity qt-connectivity_LIB= libQt${_QT_LIBVER}Bluetooth.so qt-core_PORT= devel/${_QT_RELNAME}-core qt-core_LIB= libQt${_QT_LIBVER}Core.so qt-datavis3d_PORT= x11-toolkits/${_QT_RELNAME}-datavis3d qt-datavis3d_LIB= libQt${_QT_LIBVER}DataVisualization.so qt-dbus_PORT= devel/${_QT_RELNAME}-dbus qt-dbus_LIB= libQt${_QT_LIBVER}DBus.so qt-declarative_PORT= x11-toolkits/${_QT_RELNAME}-declarative qt-declarative_LIB= libQt${_QT_LIBVER}Qml.so qt-declarative-test_PORT= x11-toolkits/${_QT_RELNAME}-declarative-test qt-declarative-test_LIB= libQt${_QT_LIBVER}QuickTest.so qt-designer_PORT= devel/${_QT_RELNAME}-designer qt-designer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/designer qt-diag_PORT= sysutils/${_QT_RELNAME}-qtdiag qt-diag_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtdiag qt-doc_PORT= misc/${_QT_RELNAME}-doc qt-doc_PATH= ${_QT_RELNAME}-doc>=${_QT_VERSION:R:R} qt-examples_PORT= misc/${_QT_RELNAME}-examples qt-examples_PATH= ${_QT_RELNAME}-examples>=${_QT_VERSION:R:R} qt-gamepad_PORT= x11-toolkits/${_QT_RELNAME}-gamepad qt-gamepad_LIB= libQt${_QT_LIBVER}Gamepad.so qt-graphicaleffects_PORT= graphics/${_QT_RELNAME}-graphicaleffects qt-graphicaleffects_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtGraphicalEffects/qmldir qt-gui_PORT= x11-toolkits/${_QT_RELNAME}-gui qt-gui_LIB= libQt${_QT_LIBVER}Gui.so qt-help_PORT= devel/${_QT_RELNAME}-help qt-help_LIB= libQt${_QT_LIBVER}Help.so qt-imageformats_PORT= graphics/${_QT_RELNAME}-imageformats qt-imageformats_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/imageformats/libqtiff.so qt-linguist_PORT= devel/${_QT_RELNAME}-linguist qt-linguist_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/linguist qt-linguisttools_PORT= devel/${_QT_RELNAME}-linguisttools qt-linguisttools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/lrelease qt-location_PORT= devel/${_QT_RELNAME}-location qt-location_LIB= libQt${_QT_LIBVER}Location.so qt-l10n_PORT= misc/${_QT_RELNAME}-l10n qt-l10n_PATH= ${_QT_RELNAME}-l10n>=${_QT_VERSION:R:R} qt-multimedia_PORT= multimedia/${_QT_RELNAME}-multimedia qt-multimedia_LIB= libQt${_QT_LIBVER}Multimedia.so qt-network_PORT= net/${_QT_RELNAME}-network qt-network_LIB= libQt${_QT_LIBVER}Network.so qt-networkauth_PORT= net/${_QT_RELNAME}-networkauth qt-networkauth_LIB= libQt${_QT_LIBVER}NetworkAuth.so qt-opengl_PORT= graphics/${_QT_RELNAME}-opengl qt-opengl_LIB= libQt${_QT_LIBVER}OpenGL.so qt-paths_PORT= sysutils/${_QT_RELNAME}-qtpaths qt-paths_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtpaths qt-pixeltool_PORT= graphics/${_QT_RELNAME}-pixeltool qt-pixeltool_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/pixeltool qt-phonon4_PORT= multimedia/phonon qt-phonon4_LIB= libphonon4${_QT_RELNAME}.so qt-plugininfo_PORT= sysutils/${_QT_RELNAME}-qtplugininfo qt-plugininfo_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtplugininfo qt-printsupport_PORT= print/${_QT_RELNAME}-printsupport qt-printsupport_LIB= libQt${_QT_LIBVER}PrintSupport.so qt-qdbus_PORT= devel/${_QT_RELNAME}-qdbus qt-qdbus_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdbus qt-qdbusviewer_PORT= devel/${_QT_RELNAME}-qdbusviewer qt-qdbusviewer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdbusviewer qt-qdoc_PORT= devel/${_QT_RELNAME}-qdoc qt-qdoc_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdoc qt-qdoc-data_PORT= devel/${_QT_RELNAME}-qdoc-data qt-qdoc-data_PATH= ${LOCALBASE}/${QT_DOCDIR_REL}/global/config.qdocconf qt-qev_PORT= x11/${_QT_RELNAME}-qev qt-qev_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qev # Always build with *this* version's qmake qt-qmake_PORT= devel/${_QT_RELNAME}-qmake qt-qmake_PATH= ${_QT_RELNAME}-qmake>=${_QT_VERSION:R} qt-quick3d_PORT= x11-toolkits/${_QT_RELNAME}-quick3d qt-quick3d_LIB= libQt${_QT_LIBVER}Quick3D.so qt-quickcontrols_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols qt-quickcontrols_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtQuick/Controls/qmldir qt-quickcontrols2_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols2 qt-quickcontrols2_LIB= libQt${_QT_LIBVER}QuickControls2.so qt-quicktimeline_PORT= x11-toolkits/${_QT_RELNAME}-quicktimeline qt-quicktimeline_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtQuick/Timeline/libqtquicktimelineplugin.so qt-remoteobjects_PORT= devel/${_QT_RELNAME}-remoteobjects qt-remoteobjects_LIB= libQt${_QT_LIBVER}RemoteObjects.so qt-sensors_PORT= comms/${_QT_RELNAME}-sensors qt-sensors_LIB= libQt${_QT_LIBVER}Sensors.so qt-script_PORT= devel/${_QT_RELNAME}-script qt-script_LIB= libQt${_QT_LIBVER}Script.so qt-scripttools_PORT= devel/${_QT_RELNAME}-scripttools qt-scripttools_LIB= libQt${_QT_LIBVER}ScriptTools.so qt-scxml_PORT= devel/${_QT_RELNAME}-scxml qt-scxml_LIB= libQt${_QT_LIBVER}Scxml.so qt-serialbus_PORT= comms/${_QT_RELNAME}-serialbus qt-serialbus_LIB= libQt${_QT_LIBVER}SerialBus.so qt-serialport_PORT= comms/${_QT_RELNAME}-serialport qt-serialport_LIB= libQt${_QT_LIBVER}SerialPort.so +qt-shadertools_PORT= x11-toolkits/${_QT_RELNAME}-shadertools +qt-shadertools_LIB= libQt${_QT_LIBVER}ShaderTools.so + qt-speech_PORT= accessibility/${_QT_RELNAME}-speech qt-speech_LIB= libQt${_QT_LIBVER}TextToSpeech.so qt-sql_PORT= databases/${_QT_RELNAME}-sql qt-sql_LIB= libQt${_QT_LIBVER}Sql.so qt-sql-pgsql_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsqlpsql.so qt-sql-sqlite3_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsqlite.so . for db in ibase mysql odbc pgsql sqlite2 sqlite3 tds qt-sql-${db}_PORT= databases/${_QT_RELNAME}-sqldrivers-${db} qt-sql-${db}_PATH?= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsql${db:C/^sql//}.so . endfor qt-svg_PORT= graphics/${_QT_RELNAME}-svg qt-svg_LIB= libQt${_QT_LIBVER}Svg.so qt-testlib_PORT= devel/${_QT_RELNAME}-testlib qt-testlib_LIB= libQt${_QT_LIBVER}Test.so +qt-tools_PORT= devel/${_QT_RELNAME}-tools +qt-tools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/lupdate + +qt-translations_PORT= devel/${_QT_RELNAME}-translations +qt-translations_PATH= ${LOCALBASE}/${QT_DATADIR_REL}/translations + qt-uiplugin_PORT= x11-toolkits/${_QT_RELNAME}-uiplugin qt-uiplugin_PATH= ${LOCALBASE}/${QT_INCDIR_REL}/QtUiPlugin/QtUiPlugin qt-uitools_PORT= devel/${_QT_RELNAME}-uitools qt-uitools_PATH= ${LOCALBASE}/${QT_LIBDIR_REL}/libQt${_QT_LIBVER}UiTools.a qt-virtualkeyboard_PORT= x11-toolkits/${_QT_RELNAME}-virtualkeyboard qt-virtualkeyboard_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/platforminputcontexts/libqtvirtualkeyboardplugin.so qt-wayland_PORT= graphics/${_QT_RELNAME}-wayland qt-wayland_LIB= libQt${_QT_LIBVER}WaylandClient.so qt-webchannel_PORT= www/${_QT_RELNAME}-webchannel qt-webchannel_LIB= libQt${_QT_LIBVER}WebChannel.so qt-webengine_PORT= www/${_QT_RELNAME}-webengine qt-webengine_LIB= libQt${_QT_LIBVER}WebEngine.so qt-webglplugin_PORT= www/${_QT_RELNAME}-webglplugin qt-webglplugin_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/platforms/libqwebgl.so qt-websockets_PORT= www/${_QT_RELNAME}-websockets qt-websockets_LIB= libQt${_QT_LIBVER}WebSockets.so qt-websockets-qml_PORT= www/${_QT_RELNAME}-websockets-qml qt-websockets-qml_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtWebSockets/qmldir qt-webkit_PORT= www/${_QT_RELNAME}-webkit qt-webkit_LIB= libQt${_QT_LIBVER}WebKit.so qt-webview_PORT= www/${_QT_RELNAME}-webview qt-webview_LIB= libQt${_QT_LIBVER}WebView.so qt-widgets_PORT= x11-toolkits/${_QT_RELNAME}-widgets qt-widgets_LIB= libQt${_QT_LIBVER}Widgets.so qt-x11extras_PORT= x11/${_QT_RELNAME}-x11extras qt-x11extras_LIB= libQt${_QT_LIBVER}X11Extras.so qt-xml_PORT= textproc/${_QT_RELNAME}-xml qt-xml_LIB= libQt${_QT_LIBVER}Xml.so qt-xmlpatterns_PORT= textproc/${_QT_RELNAME}-xmlpatterns qt-xmlpatterns_LIB= libQt${_QT_LIBVER}XmlPatterns.so # Actually add the dependencies to the proper lists. _USE_QT_ALL+= ${_USE_QT${_QT_VER}_ONLY} _USE_QT= ${USE_QT} # Iterate through components deprived of suffix. . for component in ${_USE_QT:O:u:C/_(build|run)$//} # Check that the component is valid. . if ${_USE_QT_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(qt-${component}_PORT) && (defined(qt-${component}_PATH) || defined(qt-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == "" qt-${component}_TYPE= # empty . if ${_USE_QT:M${component}_build} != "" qt-${component}_TYPE+= build . endif . if ${_USE_QT:M${component}_run} != "" qt-${component}_TYPE+= run . endif . endif # ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(qt-${component}_TYPE) qt-${component}_TYPE= build run . endif # Set real dependencies. . if defined(qt-${component}_LIB) && ${qt-${component}_TYPE:Mbuild} && ${qt-${component}_TYPE:Mrun} LIB_DEPENDS+= ${qt-${component}_LIB}:${qt-${component}_PORT} . else qt-${component}_PATH?= ${QT_LIBDIR}/${qt-${component}_LIB} qt-${component}_DEPENDS= ${qt-${component}_PATH}:${qt-${component}_PORT} . if ${qt-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${qt-${component}_DEPENDS} . endif . if ${qt-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${qt-${component}_DEPENDS} . endif . endif # ${qt-${component}_LIB} && ${qt-${component}_TYPE:Mbuild} && ${qt-${component}_TYPE:Mrun} . endif # defined(qt-${component}_PORT) && defined(qt-${component}_PATH) . else # ! ${_USE_QT_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_QT component '${component}' . endif # ${_USE_QT_ALL:M${component}} != "" . endfor .endif # defined(_QT_MK_POST_INCLUDED) diff --git a/devel/Makefile b/devel/Makefile index 0e0c824919a9..e7049c5222d2 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -1,7381 +1,7385 @@ COMMENT = Development utilities SUBDIR += 9base SUBDIR += ElectricFence SUBDIR += R-cran-BH SUBDIR += R-cran-Defaults SUBDIR += R-cran-Hmisc SUBDIR += R-cran-ModelMetrics SUBDIR += R-cran-R6 SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp SUBDIR += R-cran-RcppProgress SUBDIR += R-cran-Rdpack SUBDIR += R-cran-abind SUBDIR += R-cran-bindr SUBDIR += R-cran-bindrcpp SUBDIR += R-cran-bit SUBDIR += R-cran-bit64 SUBDIR += R-cran-bitops SUBDIR += R-cran-blob SUBDIR += R-cran-brio SUBDIR += R-cran-broom SUBDIR += R-cran-caTools SUBDIR += R-cran-callr SUBDIR += R-cran-caret SUBDIR += R-cran-checkmate SUBDIR += R-cran-chron SUBDIR += R-cran-classInt SUBDIR += R-cran-cli SUBDIR += R-cran-cliapp SUBDIR += R-cran-clipr SUBDIR += R-cran-clisymbols SUBDIR += R-cran-collapse SUBDIR += R-cran-covr SUBDIR += R-cran-cpp11 SUBDIR += R-cran-crayon SUBDIR += R-cran-cyclocomp SUBDIR += R-cran-data.table SUBDIR += R-cran-desc SUBDIR += R-cran-devtools SUBDIR += R-cran-diffobj SUBDIR += R-cran-doParallel SUBDIR += R-cran-ellipsis SUBDIR += R-cran-evaluate SUBDIR += R-cran-fansi SUBDIR += R-cran-filelock SUBDIR += R-cran-fontawesome SUBDIR += R-cran-foreach SUBDIR += R-cran-future SUBDIR += R-cran-future.apply SUBDIR += R-cran-gbRd SUBDIR += R-cran-gbm SUBDIR += R-cran-gdata SUBDIR += R-cran-generics SUBDIR += R-cran-gert SUBDIR += R-cran-getopt SUBDIR += R-cran-git2r SUBDIR += R-cran-glmnet SUBDIR += R-cran-globals SUBDIR += R-cran-glue SUBDIR += R-cran-gmodels SUBDIR += R-cran-gsubfn SUBDIR += R-cran-gtools SUBDIR += R-cran-hardhat SUBDIR += R-cran-hms SUBDIR += R-cran-ini SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools SUBDIR += R-cran-later SUBDIR += R-cran-lifecycle SUBDIR += R-cran-lintr SUBDIR += R-cran-listenv SUBDIR += R-cran-lubridate SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise SUBDIR += R-cran-microbenchmark SUBDIR += R-cran-mockery SUBDIR += R-cran-msm SUBDIR += R-cran-multicool SUBDIR += R-cran-optparse SUBDIR += R-cran-pak SUBDIR += R-cran-parallelly SUBDIR += R-cran-pillar SUBDIR += R-cran-pkgbuild SUBDIR += R-cran-pkgcache SUBDIR += R-cran-pkgconfig SUBDIR += R-cran-pkgload SUBDIR += R-cran-pkgmaker SUBDIR += R-cran-plogr SUBDIR += R-cran-plyr SUBDIR += R-cran-praise SUBDIR += R-cran-prettycode SUBDIR += R-cran-prettyunits SUBDIR += R-cran-progress SUBDIR += R-cran-progressr SUBDIR += R-cran-promises SUBDIR += R-cran-proto SUBDIR += R-cran-purrr SUBDIR += R-cran-rJava SUBDIR += R-cran-randomForest SUBDIR += R-cran-rappdirs SUBDIR += R-cran-rcmdcheck SUBDIR += R-cran-registry SUBDIR += R-cran-rematch2 SUBDIR += R-cran-remotes SUBDIR += R-cran-repr SUBDIR += R-cran-reshape SUBDIR += R-cran-reshape2 SUBDIR += R-cran-rgexf SUBDIR += R-cran-rlang SUBDIR += R-cran-rngtools SUBDIR += R-cran-roxygen2 SUBDIR += R-cran-rprojroot SUBDIR += R-cran-rstudioapi SUBDIR += R-cran-rversions SUBDIR += R-cran-sessioninfo SUBDIR += R-cran-sfsmisc SUBDIR += R-cran-sourcetools SUBDIR += R-cran-sys SUBDIR += R-cran-testthat SUBDIR += R-cran-tibble SUBDIR += R-cran-tidyr SUBDIR += R-cran-tidyselect SUBDIR += R-cran-tinytest SUBDIR += R-cran-tzdb SUBDIR += R-cran-usethis SUBDIR += R-cran-uuid SUBDIR += R-cran-vcd SUBDIR += R-cran-vctrs SUBDIR += R-cran-waldo SUBDIR += R-cran-whisker SUBDIR += R-cran-withr SUBDIR += R-cran-zeallot SUBDIR += RStudio SUBDIR += SpecTcl SUBDIR += aarch64-none-elf-gcc SUBDIR += abi-compliance-checker SUBDIR += abseil SUBDIR += acme SUBDIR += acsccid SUBDIR += activitymail SUBDIR += adacurses SUBDIR += aegis SUBDIR += agar SUBDIR += aifad SUBDIR += aixlog SUBDIR += ald SUBDIR += allegro SUBDIR += allegro5 SUBDIR += aml SUBDIR += ammonite SUBDIR += amqp-cpp SUBDIR += android-tools SUBDIR += android-tools-simpleperf SUBDIR += anjuta SUBDIR += antlr SUBDIR += antlr3 SUBDIR += antlr4 SUBDIR += apache-ant SUBDIR += apache-commons-configuration SUBDIR += apache-commons-daemon SUBDIR += apache-commons-io SUBDIR += apache-commons-jxpath SUBDIR += apache-log4j2 SUBDIR += apache-rat SUBDIR += aphpbreakdown SUBDIR += aphpunit SUBDIR += api-sanity-autotest SUBDIR += apitrace SUBDIR += app-builder SUBDIR += appstream SUBDIR += appstream-glib SUBDIR += apr1 SUBDIR += arachne-pnr SUBDIR += arcanist SUBDIR += arcanist-lib SUBDIR += arduino SUBDIR += arduino-avrdude SUBDIR += arduino-bsd-mk SUBDIR += arduino-builder SUBDIR += arduino-core SUBDIR += arduino-ctags SUBDIR += arduino-irremote SUBDIR += arduino-mk SUBDIR += arduino-openglcd SUBDIR += arduino-sevseg SUBDIR += arduino-tools SUBDIR += arduino18 SUBDIR += arduinoOTA SUBDIR += argdata SUBDIR += argobots SUBDIR += argouml SUBDIR += argp-standalone SUBDIR += argparse SUBDIR += args SUBDIR += argtable SUBDIR += arm-elf-binutils SUBDIR += arm-none-eabi-gcc SUBDIR += arm-none-eabi-gcc492 SUBDIR += arm-none-eabi-newlib SUBDIR += aros-sdk SUBDIR += arpc SUBDIR += art SUBDIR += artifactory SUBDIR += asl SUBDIR += asmjit SUBDIR += asmutils SUBDIR += asmx SUBDIR += astah-community SUBDIR += astyle SUBDIR += asyncplusplus SUBDIR += atf SUBDIR += athens SUBDIR += atlantis SUBDIR += atlas SUBDIR += atlas-devel SUBDIR += autobook SUBDIR += autoconf SUBDIR += autoconf-archive SUBDIR += autoconf-switch SUBDIR += autoconf2.13 SUBDIR += autoconf2.69 SUBDIR += autodia SUBDIR += autogen SUBDIR += automake SUBDIR += autotools SUBDIR += avalon-framework SUBDIR += avarice SUBDIR += avce00 SUBDIR += avr-gcc SUBDIR += avr-gdb SUBDIR += avr-libc SUBDIR += avra SUBDIR += avrdude SUBDIR += avro SUBDIR += avro-c SUBDIR += avro-cpp SUBDIR += awless SUBDIR += aws-c-common SUBDIR += aws-c-compression SUBDIR += aws-c-event-stream SUBDIR += aws-c-http SUBDIR += aws-c-io SUBDIR += aws-c-mqtt SUBDIR += aws-c-s3 SUBDIR += aws-c-sdkutils SUBDIR += aws-checksums SUBDIR += aws-crt-cpp SUBDIR += aws-sdk-cpp SUBDIR += aws-sdk-php SUBDIR += awscli SUBDIR += axmldec SUBDIR += ayatana-ido SUBDIR += b2 SUBDIR += babeltrace SUBDIR += bam SUBDIR += bashdb SUBDIR += basu SUBDIR += bats-core SUBDIR += bazel SUBDIR += bazel-buildtools SUBDIR += bazel029 SUBDIR += bbparse SUBDIR += bcc SUBDIR += bcpp SUBDIR += bcunit SUBDIR += bear SUBDIR += benchmark SUBDIR += bennugd-core SUBDIR += bennugd-modules SUBDIR += bglibs SUBDIR += binaryen SUBDIR += bingrep SUBDIR += binutils SUBDIR += bison SUBDIR += bit SUBDIR += bitkeeper SUBDIR += blame SUBDIR += blitz SUBDIR += bloaty SUBDIR += bmake SUBDIR += bmkdep SUBDIR += bnf SUBDIR += boehm-gc SUBDIR += boehm-gc-redirect SUBDIR += boehm-gc-threaded SUBDIR += boost-all SUBDIR += boost-docs SUBDIR += boost-jam SUBDIR += boost-libs SUBDIR += boost-python-libs SUBDIR += boost_build SUBDIR += bossa SUBDIR += boxfort SUBDIR += bpython SUBDIR += brz SUBDIR += bsdbuild SUBDIR += bsdcflow SUBDIR += bsddialog SUBDIR += bsdowl SUBDIR += bugzilla44 SUBDIR += bugzilla50 SUBDIR += build SUBDIR += buildkite-agent SUBDIR += buildstream SUBDIR += bullet SUBDIR += busybee SUBDIR += byacc SUBDIR += byaccj SUBDIR += c2mdoc SUBDIR += c4core SUBDIR += caf SUBDIR += calibrator SUBDIR += caliper SUBDIR += capnproto SUBDIR += capnproto080 SUBDIR += capstone3 SUBDIR += capstone4 SUBDIR += capstone5 SUBDIR += cargo-c SUBDIR += cargo-generate SUBDIR += cask SUBDIR += catch SUBDIR += cbang SUBDIR += cbrowser SUBDIR += cc65 SUBDIR += ccache SUBDIR += ccache-memcached SUBDIR += ccache-memcached-static SUBDIR += ccache-static SUBDIR += cccc SUBDIR += ccdoc SUBDIR += ccls SUBDIR += ccrtp SUBDIR += cctz SUBDIR += cdash SUBDIR += cdecl SUBDIR += cdialog SUBDIR += cdk SUBDIR += cereal SUBDIR += cervisia SUBDIR += cflow SUBDIR += cflow2vcg SUBDIR += cfr SUBDIR += cgdb SUBDIR += cgilib SUBDIR += cgit SUBDIR += cgprof SUBDIR += charva SUBDIR += check SUBDIR += checkbashisms SUBDIR += checkheaders SUBDIR += chroma SUBDIR += chrpath SUBDIR += chruby SUBDIR += cil SUBDIR += cirrus-cli SUBDIR += cityhash SUBDIR += cjose SUBDIR += cl-alexandria SUBDIR += cl-alexandria-sbcl SUBDIR += cl-asdf SUBDIR += cl-cffi SUBDIR += cl-infix SUBDIR += cl-infix-sbcl SUBDIR += cl-port SUBDIR += cl-port-sbcl SUBDIR += cl-split-sequence SUBDIR += cl-split-sequence-sbcl SUBDIR += cl-trivial-features SUBDIR += cl-trivial-features-sbcl SUBDIR += cl-trivial-gray-streams SUBDIR += cl-trivial-gray-streams-sbcl SUBDIR += clazy SUBDIR += cld2 SUBDIR += clewn SUBDIR += cli11 SUBDIR += clig SUBDIR += cligen SUBDIR += clinfo SUBDIR += clipp SUBDIR += clisp-hyperspec SUBDIR += clixon SUBDIR += clojure-cider SUBDIR += cloudabi SUBDIR += cloudabi-toolchain SUBDIR += clthreads SUBDIR += cltune SUBDIR += clxclient SUBDIR += cmake SUBDIR += cmake-doc SUBDIR += cmake-fedora SUBDIR += cmake-gui SUBDIR += cmake-modules-webos SUBDIR += cmakedoc SUBDIR += cmph SUBDIR += cmunge SUBDIR += coccinelle SUBDIR += codeblocks SUBDIR += codequery SUBDIR += codesearch-py SUBDIR += codeville SUBDIR += codeworker SUBDIR += collada-dom SUBDIR += color SUBDIR += colorgcc SUBDIR += colormake SUBDIR += commit-patch SUBDIR += commoncpp SUBDIR += compiler-rt SUBDIR += compiz-bcop SUBDIR += concurrencpp SUBDIR += concurrencykit SUBDIR += concurrentqueue SUBDIR += configkit SUBDIR += cons SUBDIR += cons-test SUBDIR += containers SUBDIR += cook SUBDIR += corrade SUBDIR += courier-unicode SUBDIR += coursier SUBDIR += covtool SUBDIR += cpan-upload SUBDIR += cpan-upload-http SUBDIR += cpp-hocon SUBDIR += cpp-netlib SUBDIR += cpp2py SUBDIR += cppcheck SUBDIR += cppcheck-gui SUBDIR += cppi SUBDIR += cpplint SUBDIR += cpprestsdk SUBDIR += cpptest SUBDIR += cppunit SUBDIR += cppurses SUBDIR += cpputest SUBDIR += cproto SUBDIR += cpu_features SUBDIR += cquery SUBDIR += cram SUBDIR += crc32c SUBDIR += creduce SUBDIR += critcl SUBDIR += criterion SUBDIR += cscope SUBDIR += cscout SUBDIR += csmith SUBDIR += csoap SUBDIR += cssc SUBDIR += ctags SUBDIR += ctre SUBDIR += ctypes.sh SUBDIR += cunit SUBDIR += cut SUBDIR += cutils SUBDIR += cutter SUBDIR += cvise SUBDIR += cvs SUBDIR += cvs+ipv6 SUBDIR += cvs-devel SUBDIR += cvs-syncmail SUBDIR += cvs2cl SUBDIR += cvs2darcs SUBDIR += cvs2html SUBDIR += cvsadmin SUBDIR += cvsbook SUBDIR += cvschangelogbuilder SUBDIR += cvschk SUBDIR += cvsd SUBDIR += cvsdadm SUBDIR += cvsdelta SUBDIR += cvsdiff2patch SUBDIR += cvsgraph SUBDIR += cvslines SUBDIR += cvsmonitor SUBDIR += cvsplot SUBDIR += cvsps SUBDIR += cvsps-devel SUBDIR += cvsspam SUBDIR += cvstrac SUBDIR += cvsutils SUBDIR += cvsweb SUBDIR += cvsweb3 SUBDIR += cvswrap SUBDIR += cweb SUBDIR += cwrap SUBDIR += cxmon SUBDIR += cxref SUBDIR += cxxopts SUBDIR += cxxtest SUBDIR += cxxtools SUBDIR += d-feet SUBDIR += d-scanner SUBDIR += darts SUBDIR += dash.el SUBDIR += dasm SUBDIR += datadraw SUBDIR += date SUBDIR += dbus SUBDIR += dbus-c++ SUBDIR += dbus-glib SUBDIR += dbus-java SUBDIR += dbus-sharp SUBDIR += dbus-sharp-glib SUBDIR += dbus-tcl SUBDIR += dcd-client SUBDIR += dcd-server SUBDIR += dconf SUBDIR += dconf-editor SUBDIR += debugedit SUBDIR += dee SUBDIR += deforaos-libsystem SUBDIR += deheader SUBDIR += delta SUBDIR += delve SUBDIR += deployer SUBDIR += derelict-sdl2 SUBDIR += derelict-util SUBDIR += desed SUBDIR += desktop-file-utils SUBDIR += dev86 SUBDIR += devhelp SUBDIR += devtodo SUBDIR += dfuife-curses SUBDIR += dia2code SUBDIR += dia2code+ SUBDIR += ding-libs SUBDIR += directfb SUBDIR += dispy SUBDIR += distcc SUBDIR += distel SUBDIR += distorm SUBDIR += djgpp-binutils SUBDIR += dlib SUBDIR += dmake SUBDIR += dmalloc SUBDIR += dmlc-core SUBDIR += dmucs SUBDIR += docopt.cpp SUBDIR += doctest SUBDIR += doctorj SUBDIR += dolphin-plugins SUBDIR += dotconf SUBDIR += double-conversion SUBDIR += doxygen SUBDIR += dparser SUBDIR += dragon SUBDIR += ds2 SUBDIR += dsymbol SUBDIR += dtool SUBDIR += dub SUBDIR += dulwich SUBDIR += dupl SUBDIR += duplo SUBDIR += dwarf2json SUBDIR += dwarfdump SUBDIR += dwarves SUBDIR += dwz SUBDIR += dxa65 SUBDIR += dyncall SUBDIR += e00compr SUBDIR += eastl SUBDIR += easy-profiler SUBDIR += easyexif SUBDIR += easygit SUBDIR += easyloggingpp SUBDIR += ebnf2yacc SUBDIR += ecgi SUBDIR += editline SUBDIR += efivar SUBDIR += efl SUBDIR += egypt SUBDIR += eiffelstudio SUBDIR += electron17 SUBDIR += electron18 SUBDIR += electron19 SUBDIR += elf SUBDIR += elf-dissector SUBDIR += elfcat SUBDIR += elfio SUBDIR += elfkickers SUBDIR += elfsh SUBDIR += elfutils SUBDIR += elixir-hex SUBDIR += elixir-make SUBDIR += elm-format SUBDIR += embb SUBDIR += emscripten SUBDIR += entt SUBDIR += envsubst SUBDIR += epl.el SUBDIR += epm SUBDIR += eql5 SUBDIR += eric6 SUBDIR += eris SUBDIR += erlang-cl SUBDIR += erlang-native-compiler SUBDIR += erlang-rebar3_hex SUBDIR += erlang-recon SUBDIR += es-eric6 SUBDIR += esbuild SUBDIR += estd SUBDIR += etcd SUBDIR += etcd31 SUBDIR += etcd32 SUBDIR += etcd33 SUBDIR += etcd34 SUBDIR += etl SUBDIR += evdev-proto SUBDIR += evemu SUBDIR += eventxx SUBDIR += exercisix SUBDIR += f18 SUBDIR += f77flow SUBDIR += fam SUBDIR += fastcrc SUBDIR += fatal SUBDIR += fbthrift SUBDIR += fc++ SUBDIR += fccf SUBDIR += fhist SUBDIR += fifechan SUBDIR += fire-hpp SUBDIR += firmware-utils SUBDIR += fistgen SUBDIR += flang SUBDIR += flang-clang SUBDIR += flatbuffers SUBDIR += flatbuffers205 SUBDIR += flatcc SUBDIR += flatzebra SUBDIR += flex-sdk SUBDIR += flex-sdk35 SUBDIR += flexdock SUBDIR += flexjson SUBDIR += flyspray SUBDIR += fmake SUBDIR += fnc SUBDIR += fnccheck SUBDIR += folly SUBDIR += forge SUBDIR += forge-devel SUBDIR += fortran-utils SUBDIR += fortytwo-encore SUBDIR += fossil SUBDIR += fossology-nomos-standalone SUBDIR += fp16 SUBDIR += fpc-bfd SUBDIR += fpc-dbus SUBDIR += fpc-fcl-async SUBDIR += fpc-fcl-base SUBDIR += fpc-fcl-db SUBDIR += fpc-fcl-extra SUBDIR += fpc-fcl-fpcunit SUBDIR += fpc-fcl-image SUBDIR += fpc-fcl-js SUBDIR += fpc-fcl-json SUBDIR += fpc-fcl-net SUBDIR += fpc-fcl-passrc SUBDIR += fpc-fcl-pdf SUBDIR += fpc-fcl-registry SUBDIR += fpc-fcl-report SUBDIR += fpc-fcl-res SUBDIR += fpc-fcl-sdo SUBDIR += fpc-fcl-sound SUBDIR += fpc-fcl-stl SUBDIR += fpc-fcl-web SUBDIR += fpc-fcl-xml SUBDIR += fpc-fppkg SUBDIR += fpc-fv SUBDIR += fpc-gdbint SUBDIR += fpc-libmagic SUBDIR += fpc-newt SUBDIR += fpc-odata SUBDIR += fpc-pthreads SUBDIR += fpc-regexpr SUBDIR += fpc-sdl SUBDIR += fpc-symbolic SUBDIR += fpc-tplylib SUBDIR += fpc-zlib SUBDIR += fpp SUBDIR += frama-c SUBDIR += freebsd-gcc6 SUBDIR += freebsd-gcc9 SUBDIR += freebsd-gcc12 SUBDIR += freebsd-git-devtools SUBDIR += freebsd-sysroot SUBDIR += frink SUBDIR += fsmtrie SUBDIR += fstrcmp SUBDIR += fstrm SUBDIR += ftjam SUBDIR += ftnchek SUBDIR += fuel SUBDIR += functionalplus SUBDIR += fungw SUBDIR += fuzzylite SUBDIR += fxdiv SUBDIR += g-wrap SUBDIR += ga SUBDIR += gaa SUBDIR += gamin SUBDIR += gammaray SUBDIR += gauche-readline SUBDIR += gaul SUBDIR += gbump SUBDIR += gcc-arm-embedded SUBDIR += gcc-msp430-ti-toolchain SUBDIR += gccmakedep SUBDIR += gcem SUBDIR += gconf2 SUBDIR += gconfmm26 SUBDIR += gdb SUBDIR += gdcm SUBDIR += geany SUBDIR += geany-plugin-addons SUBDIR += geany-plugin-autoclose SUBDIR += geany-plugin-automark SUBDIR += geany-plugin-codenav SUBDIR += geany-plugin-commander SUBDIR += geany-plugin-ctags SUBDIR += geany-plugin-debugger SUBDIR += geany-plugin-defineformat SUBDIR += geany-plugin-doc SUBDIR += geany-plugin-extrasel SUBDIR += geany-plugin-gendoc SUBDIR += geany-plugin-geniuspaste SUBDIR += geany-plugin-git-changebar SUBDIR += geany-plugin-insertnum SUBDIR += geany-plugin-latex SUBDIR += geany-plugin-lineoperations SUBDIR += geany-plugin-lipsum SUBDIR += geany-plugin-lua SUBDIR += geany-plugin-macro SUBDIR += geany-plugin-markdown SUBDIR += geany-plugin-miniscript SUBDIR += geany-plugin-numberedbookmarks SUBDIR += geany-plugin-overview SUBDIR += geany-plugin-pairtaghighlighter SUBDIR += geany-plugin-pg SUBDIR += geany-plugin-pohelper SUBDIR += geany-plugin-pretty-printer SUBDIR += geany-plugin-prj SUBDIR += geany-plugin-projectorganizer SUBDIR += geany-plugin-scope SUBDIR += geany-plugin-sendmail SUBDIR += geany-plugin-shiftcolumn SUBDIR += geany-plugin-spellcheck SUBDIR += geany-plugin-tableconvert SUBDIR += geany-plugin-treebrowser SUBDIR += geany-plugin-updatechecker SUBDIR += geany-plugin-utilslib SUBDIR += geany-plugin-vc SUBDIR += geany-plugin-vimode SUBDIR += geany-plugin-workbench SUBDIR += geany-plugin-xmlsnippets SUBDIR += geany-plugins SUBDIR += geany-plugins-l10n SUBDIR += geany-themes SUBDIR += gearmand SUBDIR += generate SUBDIR += gengetopt SUBDIR += genht SUBDIR += genie SUBDIR += genromfs SUBDIR += getoptions SUBDIR += gettext SUBDIR += gettext-lint SUBDIR += gettext-msghack SUBDIR += gettext-po-mode SUBDIR += gettext-runtime SUBDIR += gettext-tiny SUBDIR += gettext-tools SUBDIR += gflags SUBDIR += gfold SUBDIR += gh SUBDIR += ghidra SUBDIR += ghq SUBDIR += ghub SUBDIR += ghub-devel SUBDIR += gindent SUBDIR += gio-sharp SUBDIR += git SUBDIR += git-absorb SUBDIR += git-bug SUBDIR += git-cinnabar SUBDIR += git-codereview SUBDIR += git-cola SUBDIR += git-cvs SUBDIR += git-delta SUBDIR += git-extras SUBDIR += git-filter-repo SUBDIR += git-gui SUBDIR += git-lab SUBDIR += git-lfs SUBDIR += git-merge-changelog SUBDIR += git-modes SUBDIR += git-p4 SUBDIR += git-prev-next SUBDIR += git-review SUBDIR += git-subrepo SUBDIR += git-svn SUBDIR += git-town SUBDIR += gitaly SUBDIR += gitflow SUBDIR += gitg SUBDIR += github-backup-utils SUBDIR += gitinspector SUBDIR += gitlab-metrics-exporter SUBDIR += gitlab-runner SUBDIR += gitlab-shell SUBDIR += gitleaks SUBDIR += gitlist SUBDIR += gitolite SUBDIR += gitolite2 SUBDIR += gitqlient SUBDIR += gittrac SUBDIR += gitty SUBDIR += gitui SUBDIR += glab SUBDIR += glade SUBDIR += glademm SUBDIR += glib20 SUBDIR += glibmm SUBDIR += gllvm SUBDIR += global SUBDIR += glog SUBDIR += glrparser SUBDIR += glui SUBDIR += gmake SUBDIR += gn SUBDIR += gnome-builder SUBDIR += gnome-common SUBDIR += gnu-efi SUBDIR += gnucflow SUBDIR += gnulib SUBDIR += gnulibiberty SUBDIR += gnustep SUBDIR += gnustep-make SUBDIR += go-bindata SUBDIR += go-bindata-assetfs SUBDIR += go-git SUBDIR += go-perf SUBDIR += go-protobuf SUBDIR += go-tools SUBDIR += go-wire SUBDIR += gob2 SUBDIR += gobject-introspection SUBDIR += gocheese SUBDIR += gocritic SUBDIR += godot SUBDIR += godot-tools SUBDIR += godot2 SUBDIR += godot2-tools SUBDIR += goffice SUBDIR += gogs SUBDIR += golangci-lint SUBDIR += golint SUBDIR += google-cloud-cpp SUBDIR += google-cloud-cpp117 SUBDIR += google-perftools SUBDIR += google-styleguide SUBDIR += googletest SUBDIR += gopls SUBDIR += goprotobuf SUBDIR += goredo SUBDIR += goreleaser SUBDIR += gorm SUBDIR += goswagger SUBDIR += got SUBDIR += gpds SUBDIR += gperf SUBDIR += gpm SUBDIR += gputils SUBDIR += gradle SUBDIR += gradle-completion SUBDIR += gradle5 SUBDIR += gradle6 SUBDIR += gradle62 SUBDIR += grantlee5 SUBDIR += grcov SUBDIR += grex SUBDIR += grpc SUBDIR += grpc142 SUBDIR += grv SUBDIR += gsettings-desktop-schemas SUBDIR += gsoap SUBDIR += gstreamer1-plugins-soup SUBDIR += gtgt SUBDIR += gtranslator SUBDIR += guichan SUBDIR += guile-lib SUBDIR += gumbo SUBDIR += gvfs SUBDIR += gvp SUBDIR += gwenhywfar SUBDIR += gwenhywfar-fox16 SUBDIR += gwenhywfar-gtk2 SUBDIR += gwenhywfar-gtk3 SUBDIR += gwenhywfar-qt5 SUBDIR += gzstream SUBDIR += hapy SUBDIR += hare SUBDIR += hcs12mem SUBDIR += heaptrack SUBDIR += heimdall SUBDIR += hexcompare SUBDIR += hexd SUBDIR += hgreviewboard SUBDIR += hgsvn SUBDIR += hhdate SUBDIR += highlighterkit SUBDIR += highway SUBDIR += hoel SUBDIR += horde-content SUBDIR += horde-timeobjects SUBDIR += horde-whups SUBDIR += hp48cc SUBDIR += hp48xgcc SUBDIR += hpx SUBDIR += hs-ShellCheck SUBDIR += hs-alex SUBDIR += hs-cabal-install SUBDIR += hs-cpphs SUBDIR += hs-darcs SUBDIR += hs-ghc-events SUBDIR += hs-ghcprofview SUBDIR += hs-git-annex SUBDIR += hs-git-brunch SUBDIR += hs-happy SUBDIR += hs-haskell-language-server SUBDIR += hs-hasktags SUBDIR += hs-hlint SUBDIR += hs-hoogle SUBDIR += hs-hpack SUBDIR += hs-hspec-discover SUBDIR += hs-mueval SUBDIR += hs-ormolu SUBDIR += hs-profiteur SUBDIR += hs-shake SUBDIR += hs-spago SUBDIR += hs-threadscope SUBDIR += htable SUBDIR += hub SUBDIR += hwloc SUBDIR += hwloc2 SUBDIR += hyperscan SUBDIR += ice SUBDIR += ice37 SUBDIR += icestorm SUBDIR += icmake SUBDIR += icontheme SUBDIR += icu SUBDIR += icu-le-hb SUBDIR += icu-lx SUBDIR += idutils SUBDIR += ignition-cmake SUBDIR += ignition-common SUBDIR += ignition-msgs SUBDIR += ignition-plugin SUBDIR += ignition-tools SUBDIR += ikos SUBDIR += imake SUBDIR += inastemp SUBDIR += include-what-you-use SUBDIR += indi SUBDIR += indicators SUBDIR += influx-pkg-config SUBDIR += inifiled SUBDIR += inih SUBDIR += inilib SUBDIR += inilike SUBDIR += iniparser SUBDIR += initutil SUBDIR += injeqt SUBDIR += intel-graphics-compiler SUBDIR += interactive_rebase_tool SUBDIR += ioncube SUBDIR += ipython SUBDIR += ireport SUBDIR += isa-l SUBDIR += isfreedesktop SUBDIR += isl SUBDIR += ispc SUBDIR += ivykis SUBDIR += jam SUBDIR += jansson SUBDIR += java-findbugs SUBDIR += jclassinfo SUBDIR += jcmdline SUBDIR += jech-dht SUBDIR += jenkins SUBDIR += jenkins-lts SUBDIR += jetbrains-clion SUBDIR += jetbrains-goland SUBDIR += jetbrains-phpstorm SUBDIR += jetbrains-webstorm SUBDIR += jgoodies-looks SUBDIR += jiic SUBDIR += jiri SUBDIR += jline SUBDIR += jna SUBDIR += jrtplib SUBDIR += jsap SUBDIR += jsl SUBDIR += jsmin SUBDIR += json-c SUBDIR += json-glib SUBDIR += jsoncpp SUBDIR += jsonnet SUBDIR += jsonrpc-glib SUBDIR += juce SUBDIR += judy SUBDIR += jwasm SUBDIR += kBuild SUBDIR += kapptemplate SUBDIR += kcachegrind SUBDIR += kcov SUBDIR += kdbg SUBDIR += kde-dev-scripts SUBDIR += kde-dev-utils SUBDIR += kdesdk SUBDIR += kdesdk-kio SUBDIR += kdesdk-thumbnailers SUBDIR += kdesvn SUBDIR += kdev-php SUBDIR += kdev-python SUBDIR += kdevelop SUBDIR += kdevelop-pg-qt SUBDIR += kerl SUBDIR += kf5-extra-cmake-modules SUBDIR += kf5-kapidox SUBDIR += kf5-kauth SUBDIR += kf5-kbookmarks SUBDIR += kf5-kcmutils SUBDIR += kf5-kconfig SUBDIR += kf5-kcoreaddons SUBDIR += kf5-kcrash SUBDIR += kf5-kdbusaddons SUBDIR += kf5-kdeclarative SUBDIR += kf5-kdoctools SUBDIR += kf5-kfilemetadata SUBDIR += kf5-ki18n SUBDIR += kf5-kidletime SUBDIR += kf5-kio SUBDIR += kf5-kitemmodels SUBDIR += kf5-knewstuff SUBDIR += kf5-knotifications SUBDIR += kf5-knotifyconfig SUBDIR += kf5-kpackage SUBDIR += kf5-kparts SUBDIR += kf5-kpeople SUBDIR += kf5-kpty SUBDIR += kf5-kservice SUBDIR += kf5-ktexteditor SUBDIR += kf5-kunitconversion SUBDIR += kf5-solid SUBDIR += kf5-threadweaver SUBDIR += kio-extras SUBDIR += kirigami-gallery SUBDIR += kiwix-lib SUBDIR += kms-cmake-utils SUBDIR += kodi-platform SUBDIR += kokkos SUBDIR += kore SUBDIR += kpublictransport SUBDIR += kronosnet SUBDIR += ksql SUBDIR += kyra SUBDIR += kyua SUBDIR += lab SUBDIR += lasi SUBDIR += lattice-ice40-examples-hx1k SUBDIR += lattice-ice40-examples-hx8k SUBDIR += lattice-ice40-tools SUBDIR += lazygit SUBDIR += lcov SUBDIR += leaktracer SUBDIR += leatherman SUBDIR += leiningen SUBDIR += lemon SUBDIR += level-zero SUBDIR += lfcbase SUBDIR += lfcxml SUBDIR += libCello SUBDIR += libIDL SUBDIR += libPropList SUBDIR += libabigail SUBDIR += libac SUBDIR += libafterbase SUBDIR += libantlr3c SUBDIR += libantlr4 SUBDIR += libappindicator SUBDIR += libaravis SUBDIR += libarea SUBDIR += libarena SUBDIR += libassa SUBDIR += libassetml SUBDIR += libast SUBDIR += libastylej SUBDIR += libastylej-arduino SUBDIR += libatomic_ops SUBDIR += libaura SUBDIR += libavl SUBDIR += libayatana-appindicator SUBDIR += libayatana-indicator SUBDIR += libb2 SUBDIR += libbacktrace SUBDIR += libbde SUBDIR += libbegemot SUBDIR += libbfd SUBDIR += libbinio SUBDIR += libbpfjit SUBDIR += libbson SUBDIR += libburn SUBDIR += libcbor SUBDIR += libccid SUBDIR += libcdb SUBDIR += libcfu SUBDIR += libchipcard SUBDIR += libcidr SUBDIR += libcii SUBDIR += libcircllhist SUBDIR += libcjson SUBDIR += libclc SUBDIR += libcli SUBDIR += libconcurrent SUBDIR += libconfig SUBDIR += libconfuse SUBDIR += libcreg SUBDIR += libcrossguid SUBDIR += libcsptr SUBDIR += libcuckoo SUBDIR += libcutl SUBDIR += libcwd SUBDIR += libdaemon SUBDIR += libdap SUBDIR += libdatrie SUBDIR += libdbusmenu SUBDIR += libdbusmenu-qt SUBDIR += libddoc SUBDIR += libdevq SUBDIR += libdfui SUBDIR += libdill SUBDIR += libdisasm SUBDIR += libdisorder SUBDIR += libdistance SUBDIR += libdlmalloc SUBDIR += libdlna SUBDIR += libdnsres SUBDIR += libdombey SUBDIR += libdparse SUBDIR += libds SUBDIR += libdsp SUBDIR += libdwarf SUBDIR += libe SUBDIR += libedit SUBDIR += libegit2 SUBDIR += libeio SUBDIR += libelf SUBDIR += libepoll-shim SUBDIR += libepp-nicbr SUBDIR += liberasurecode SUBDIR += libesedb SUBDIR += libestr SUBDIR += libev SUBDIR += libevdev SUBDIR += libevdevplus SUBDIR += libevent SUBDIR += libevt SUBDIR += libevtx SUBDIR += libewf SUBDIR += libexplain SUBDIR += libfaketime SUBDIR += libfastcommon SUBDIR += libfastjson SUBDIR += libffcall SUBDIR += libffi SUBDIR += libffi321 SUBDIR += libffi33 SUBDIR += libfirm SUBDIR += libfixposix SUBDIR += libflatarray SUBDIR += libfmt SUBDIR += libfort SUBDIR += libfortuna SUBDIR += libfreefare SUBDIR += libfsapfs SUBDIR += libfsext SUBDIR += libfshfs SUBDIR += libfsntfs SUBDIR += libfsxfs SUBDIR += libftdi SUBDIR += libftdi1 SUBDIR += libfwnt SUBDIR += libfwsi SUBDIR += libg19 SUBDIR += libg19draw SUBDIR += libgamepad SUBDIR += libgdata SUBDIR += libgee SUBDIR += libgee06 SUBDIR += libgetline SUBDIR += libght SUBDIR += libgit2 SUBDIR += libgit2-glib SUBDIR += libglade2 SUBDIR += libglademm24 SUBDIR += libgnt SUBDIR += libgnuregex SUBDIR += libgpc SUBDIR += libgpkg SUBDIR += libgrading SUBDIR += libgraphqlparser SUBDIR += libgsf SUBDIR += libgta SUBDIR += libgtop SUBDIR += libgudev SUBDIR += libgusb SUBDIR += libgutenfetch SUBDIR += libhoard SUBDIR += libhtp SUBDIR += libhyve-remote SUBDIR += libibuddy SUBDIR += libical SUBDIR += libindicator SUBDIR += libinjection SUBDIR += libinotify SUBDIR += libiqxmlrpc SUBDIR += libisofs SUBDIR += libixp SUBDIR += libjitterentropy SUBDIR += libk8055 SUBDIR += libklel SUBDIR += liblangtag SUBDIR += liblas SUBDIR += liblnk SUBDIR += liblockfile SUBDIR += liblogging SUBDIR += liblognorm SUBDIR += liblouis SUBDIR += liblpm SUBDIR += libltdl SUBDIR += libluksde SUBDIR += liblxqt SUBDIR += libmaa SUBDIR += libmatheval SUBDIR += libmatthew SUBDIR += libmba SUBDIR += libmill SUBDIR += libmimedir SUBDIR += libmodi SUBDIR += libmowgli SUBDIR += libmowgli2 SUBDIR += libmpcbdm SUBDIR += libmsiecf SUBDIR += libmsocket SUBDIR += libmtdev SUBDIR += libmtrie SUBDIR += libmustache SUBDIR += libnaji SUBDIR += libnest2d-ultimaker SUBDIR += libnfc SUBDIR += libnotify SUBDIR += libnsutils SUBDIR += liboil SUBDIR += libolecf SUBDIR += libopenbsd SUBDIR += libopencm3 SUBDIR += libopentracing SUBDIR += libopkele SUBDIR += liborcus SUBDIR += libosinfo SUBDIR += libowfat SUBDIR += libpafe SUBDIR += libpafe-ruby SUBDIR += libparserutils SUBDIR += libpasori SUBDIR += libpci SUBDIR += libpciaccess SUBDIR += libpcl SUBDIR += libpdel SUBDIR += libpeak SUBDIR += libpeas SUBDIR += libpff SUBDIR += libphk SUBDIR += libphonenumber SUBDIR += libplist SUBDIR += libpo6 SUBDIR += libpololu-avr SUBDIR += libpru SUBDIR += libpthread-stubs SUBDIR += libqb SUBDIR += libqcow SUBDIR += libqsbr SUBDIR += libqtxdg SUBDIR += libr3 SUBDIR += librcc SUBDIR += librcd SUBDIR += libreadline-java SUBDIR += libregf SUBDIR += librelp SUBDIR += librest SUBDIR += librevisa SUBDIR += librevisa-vish SUBDIR += librevisa-vxi SUBDIR += librolegen SUBDIR += librttopo SUBDIR += libruin SUBDIR += libs11n SUBDIR += libsavitar SUBDIR += libscca SUBDIR += libsearpc SUBDIR += libserdes SUBDIR += libserialport SUBDIR += libshbuf SUBDIR += libshhmsg SUBDIR += libshhopt SUBDIR += libsigc++20 SUBDIR += libsigc++30 SUBDIR += libsigrok SUBDIR += libsigrokdecode SUBDIR += libsigscan SUBDIR += libsigsegv SUBDIR += libsimdpp SUBDIR += libslang2 SUBDIR += libsmdev SUBDIR += libsml SUBDIR += libsmpp34 SUBDIR += libsmraw SUBDIR += libsoup SUBDIR += libsoup3 SUBDIR += libspice-server SUBDIR += libstatgrab SUBDIR += libstatgrab0 SUBDIR += libstrfunc SUBDIR += libstroke SUBDIR += libsysctlmibinfo SUBDIR += libsysctlmibinfo2 SUBDIR += libsysinfo SUBDIR += libtai SUBDIR += libtap SUBDIR += libtar SUBDIR += libtecla SUBDIR += libtermkey SUBDIR += libtextstyle SUBDIR += libthai SUBDIR += libthmap SUBDIR += libtickit SUBDIR += libtifiles2 SUBDIR += libtool SUBDIR += libtpl SUBDIR += libtsm SUBDIR += libtuntap SUBDIR += libublio SUBDIR += libubox SUBDIR += libudev-devd SUBDIR += libuinputplus SUBDIR += libukcprog SUBDIR += libunicode SUBDIR += libuninum SUBDIR += libunistring SUBDIR += libunit SUBDIR += libunwind SUBDIR += libuutil SUBDIR += libuv SUBDIR += libvanessa_adt SUBDIR += libvanessa_logger SUBDIR += libvanessa_socket SUBDIR += libvc SUBDIR += libversion SUBDIR += libvhdi SUBDIR += libvirt SUBDIR += libvirt-dbus SUBDIR += libvirt-glib SUBDIR += libvirt-java SUBDIR += libvmdk SUBDIR += libvolume_id SUBDIR += libvsgpt SUBDIR += libvshadow SUBDIR += libvslvm SUBDIR += libvterm SUBDIR += libwfut SUBDIR += libx86 SUBDIR += libxalloc SUBDIR += libxo SUBDIR += libxs SUBDIR += libxtend SUBDIR += libzim SUBDIR += libzookeeper SUBDIR += libzrtpcpp SUBDIR += libzvbi SUBDIR += lightning SUBDIR += linenoise-ng SUBDIR += linux-c7-dbus-glib SUBDIR += linux-c7-dbus-libs SUBDIR += linux-c7-devtools SUBDIR += linux-c7-elfutils-libelf SUBDIR += linux-c7-elfutils-libs SUBDIR += linux-c7-icu SUBDIR += linux-c7-libaio SUBDIR += linux-c7-libgfortran SUBDIR += linux-c7-libglade2 SUBDIR += linux-c7-libpciaccess SUBDIR += linux-c7-libsigc++20 SUBDIR += linux-c7-libthai SUBDIR += linux-c7-libtool-ltdl SUBDIR += linux-c7-libunwind SUBDIR += linux-c7-make SUBDIR += linux-c7-nspr SUBDIR += linux-c7-qt SUBDIR += linux-c7-sdl12 SUBDIR += linux-c7-sdl20 SUBDIR += linux-c7-strace SUBDIR += linux-c7-systemd-libs SUBDIR += linux-ltp SUBDIR += linux-sublime-merge SUBDIR += linux_libusb SUBDIR += lion SUBDIR += listserialc SUBDIR += liteide SUBDIR += llbuild SUBDIR += llnextgen SUBDIR += llvm SUBDIR += llvm-cheri SUBDIR += llvm-devel SUBDIR += llvm-morello SUBDIR += llvm10 SUBDIR += llvm11 SUBDIR += llvm12 SUBDIR += llvm13 SUBDIR += llvm14 SUBDIR += llvm15 SUBDIR += llvm70 SUBDIR += llvm80 SUBDIR += llvm90 SUBDIR += lm4tools SUBDIR += lmdbg SUBDIR += lndir SUBDIR += lnphost SUBDIR += loccount SUBDIR += lockfree-malloc SUBDIR += log4c SUBDIR += log4cplus SUBDIR += log4cpp SUBDIR += log4cxx SUBDIR += log4j SUBDIR += log4net SUBDIR += log4sh SUBDIR += log4shib SUBDIR += loguru SUBDIR += lokalize SUBDIR += loki SUBDIR += love SUBDIR += love07 SUBDIR += love08 SUBDIR += love10 SUBDIR += love5 SUBDIR += lpc21isp SUBDIR += lrmi SUBDIR += lua-argparse SUBDIR += lua-bitlib SUBDIR += lua-bitop SUBDIR += lua-cjson SUBDIR += lua-cqueues SUBDIR += lua-gettext SUBDIR += lua-lgi SUBDIR += lua-libevent SUBDIR += lua-lpeg SUBDIR += lua-luacheck SUBDIR += lua-luarocks SUBDIR += lua-lunit SUBDIR += lua-mode SUBDIR += lua-posix SUBDIR += lua-pty SUBDIR += lua-rds-parser SUBDIR += lua-resty-string SUBDIR += lua-stdlib SUBDIR += lua-stdlib-debug SUBDIR += lua-stdlib-normalize SUBDIR += lua-sysctl SUBDIR += luabind SUBDIR += luafilesystem SUBDIR += luajava SUBDIR += lutok SUBDIR += luv SUBDIR += lwp SUBDIR += lxqt-build-tools SUBDIR += lyra SUBDIR += m17n-db SUBDIR += m17n-docs SUBDIR += m17n-inscript2 SUBDIR += m17n-lib SUBDIR += m4 SUBDIR += mage SUBDIR += magit SUBDIR += magit-devel SUBDIR += make++ SUBDIR += makedepend SUBDIR += marisa-trie SUBDIR += marl SUBDIR += mate-common SUBDIR += maven SUBDIR += maven-wrapper SUBDIR += mcpp SUBDIR += mdb SUBDIR += mdds SUBDIR += menhir SUBDIR += mercator SUBDIR += mercurial SUBDIR += mergify SUBDIR += meson SUBDIR += microsoft-gsl SUBDIR += mill SUBDIR += mimalloc SUBDIR += mimir SUBDIR += mingw32-bin-msvcrt SUBDIR += mingw32-directx SUBDIR += mingw32-gcc SUBDIR += mingw32-libffi SUBDIR += mingw32-libyaml SUBDIR += mingw32-openssl SUBDIR += mingw32-pdcurses SUBDIR += mingw32-pthreads SUBDIR += mingw32-zlib SUBDIR += mir-core SUBDIR += mk-configure SUBDIR += mm SUBDIR += mm-common SUBDIR += modd SUBDIR += mold SUBDIR += mongo-c-driver SUBDIR += mono-addins SUBDIR += mpatrol SUBDIR += mph SUBDIR += msbuild SUBDIR += msgpack SUBDIR += msgpack-d SUBDIR += msgpuck SUBDIR += msitools SUBDIR += msp430-debug-stack SUBDIR += mspdebug SUBDIR += mstch SUBDIR += mtbl SUBDIR += muon SUBDIR += mustache SUBDIR += mutagen SUBDIR += myrepos SUBDIR += nana SUBDIR += nanopb SUBDIR += nant SUBDIR += nasm SUBDIR += naturaldocs SUBDIR += ncc SUBDIR += ncnf SUBDIR += ncurses SUBDIR += ndesk-dbus SUBDIR += ndesk-dbus-glib SUBDIR += ndesk-options SUBDIR += netscape-java40 SUBDIR += netsurf-buildsystem SUBDIR += newfile SUBDIR += newt SUBDIR += newtonsoft-json SUBDIR += nextpnr SUBDIR += nexus2-oss SUBDIR += nimble SUBDIR += nini SUBDIR += ninja SUBDIR += nlohmann-json SUBDIR += node-thrift SUBDIR += notcurses SUBDIR += notify-sharp SUBDIR += npth SUBDIR += nsgenbind SUBDIR += nspr SUBDIR += nss_wrapper SUBDIR += nsync SUBDIR += nuitka SUBDIR += obby SUBDIR += objconv SUBDIR += objecthash SUBDIR += ocaml-annexlib SUBDIR += ocaml-calendar SUBDIR += ocaml-camljava SUBDIR += ocaml-camlp4 SUBDIR += ocaml-camlp5 SUBDIR += ocaml-camomile SUBDIR += ocaml-camomile-examples SUBDIR += ocaml-cfg SUBDIR += ocaml-classes SUBDIR += ocaml-cmdliner SUBDIR += ocaml-cppo SUBDIR += ocaml-dune SUBDIR += ocaml-extlib SUBDIR += ocaml-findlib SUBDIR += ocaml-ipaddr SUBDIR += ocaml-lacaml SUBDIR += ocaml-lwt SUBDIR += ocaml-magic SUBDIR += ocaml-ocamlbuild SUBDIR += ocaml-opam SUBDIR += ocaml-ounit SUBDIR += ocaml-parmap SUBDIR += ocaml-pcre SUBDIR += ocaml-pomap SUBDIR += ocaml-ppx-tools SUBDIR += ocaml-re SUBDIR += ocaml-react SUBDIR += ocaml-res SUBDIR += ocaml-result SUBDIR += ocaml-sdl SUBDIR += ocaml-sem SUBDIR += ocaml-sexplib SUBDIR += ocaml-topkg SUBDIR += ocaml-type_conv SUBDIR += ocaml-uchar SUBDIR += ocaml-ulex SUBDIR += ocaml-uutf SUBDIR += ocaml-xstr SUBDIR += ocaml-xstrp4 SUBDIR += oci-cli SUBDIR += ocl-icd SUBDIR += oclgrind SUBDIR += ode SUBDIR += ois SUBDIR += okteta SUBDIR += omake SUBDIR += omniORB SUBDIR += onetbb SUBDIR += oniguruma SUBDIR += open-beagle SUBDIR += opencl SUBDIR += opencl-clang SUBDIR += opencvs SUBDIR += opendht SUBDIR += opengrok SUBDIR += openocd SUBDIR += openwince-include SUBDIR += orc SUBDIR += orcania SUBDIR += osc SUBDIR += ossp-al SUBDIR += ossp-cfg SUBDIR += ossp-ex SUBDIR += ossp-l2 SUBDIR += ossp-val SUBDIR += ossp-var SUBDIR += ossp-xds SUBDIR += p4 SUBDIR += p4.el SUBDIR += p4api SUBDIR += p4delta SUBDIR += p4genpatch SUBDIR += p5-AI-Pathfinding-AStar SUBDIR += p5-AI-Prolog SUBDIR += p5-ARGV-Struct SUBDIR += p5-AWS-Signature4 SUBDIR += p5-Acme-Comment SUBDIR += p5-Acme-Damn SUBDIR += p5-Acme-MetaSyntactic SUBDIR += p5-Adapter-Async SUBDIR += p5-Agent SUBDIR += p5-Algorithm-Accounting SUBDIR += p5-Algorithm-Annotate SUBDIR += p5-Algorithm-Backoff SUBDIR += p5-Algorithm-Binpack SUBDIR += p5-Algorithm-Bucketizer SUBDIR += p5-Algorithm-C3 SUBDIR += p5-Algorithm-ChooseSubsets SUBDIR += p5-Algorithm-Cluster SUBDIR += p5-Algorithm-Cron SUBDIR += p5-Algorithm-Dependency SUBDIR += p5-Algorithm-Dependency-Objects SUBDIR += p5-Algorithm-Diff SUBDIR += p5-Algorithm-Evolutionary SUBDIR += p5-Algorithm-FloodControl SUBDIR += p5-Algorithm-IncludeExclude SUBDIR += p5-Algorithm-Interval2Prefix SUBDIR += p5-Algorithm-LCS SUBDIR += p5-Algorithm-LUHN SUBDIR += p5-Algorithm-MarkovChain SUBDIR += p5-Algorithm-Merge SUBDIR += p5-Algorithm-MinMax SUBDIR += p5-Algorithm-NaiveBayes SUBDIR += p5-Algorithm-Networksort SUBDIR += p5-Algorithm-Numerical-Shuffle SUBDIR += p5-Algorithm-Permute SUBDIR += p5-Algorithm-SVM SUBDIR += p5-Alias SUBDIR += p5-Alien-Base-ModuleBuild SUBDIR += p5-Alien-Build SUBDIR += p5-Alien-LibGumbo SUBDIR += p5-Alien-SDL SUBDIR += p5-Alzabo SUBDIR += p5-Any-Daemon SUBDIR += p5-Any-Moose SUBDIR += p5-Any-Moose-Convert SUBDIR += p5-AnyData SUBDIR += p5-AnyEvent SUBDIR += p5-AnyEvent-AIO SUBDIR += p5-AnyEvent-Connection SUBDIR += p5-AnyEvent-DBI SUBDIR += p5-AnyEvent-DBI-Abstract SUBDIR += p5-AnyEvent-DBus SUBDIR += p5-AnyEvent-Filesys-Notify SUBDIR += p5-AnyEvent-Fork SUBDIR += p5-AnyEvent-Gearman SUBDIR += p5-AnyEvent-Graphite SUBDIR += p5-AnyEvent-I3 SUBDIR += p5-AnyEvent-MessagePack SUBDIR += p5-AnyEvent-RPC SUBDIR += p5-AnyEvent-Run SUBDIR += p5-AnyEvent-Subprocess SUBDIR += p5-AnyEvent-Task SUBDIR += p5-AnyEvent-Worker SUBDIR += p5-AnyMQ SUBDIR += p5-App-Build SUBDIR += p5-App-CLI SUBDIR += p5-App-CLI-Extension SUBDIR += p5-App-Cache SUBDIR += p5-App-Cmd SUBDIR += p5-App-Control SUBDIR += p5-App-FatPacker SUBDIR += p5-App-GitGot SUBDIR += p5-App-GitHub SUBDIR += p5-App-Info SUBDIR += p5-App-Options SUBDIR += p5-App-Rad SUBDIR += p5-App-SD SUBDIR += p5-App-SVN-Bisect SUBDIR += p5-App-Trace SUBDIR += p5-App-cpanminus SUBDIR += p5-App-cpanminus-reporter SUBDIR += p5-App-cpanoutdated SUBDIR += p5-App-local-lib-helper SUBDIR += p5-App-perlbrew SUBDIR += p5-App-scan_prereqs_cpanfile SUBDIR += p5-AppConfig SUBDIR += p5-AppConfig-Std SUBDIR += p5-Array-Group SUBDIR += p5-Array-Heap SUBDIR += p5-Array-Iterator SUBDIR += p5-Array-Unique SUBDIR += p5-Array-Window SUBDIR += p5-Asm-Preproc SUBDIR += p5-Async-Interrupt SUBDIR += p5-Async-MergePoint SUBDIR += p5-AtExit SUBDIR += p5-Attribute-Handlers SUBDIR += p5-Attribute-Handlers-Prospective SUBDIR += p5-Attribute-Persistent SUBDIR += p5-AutoLoader SUBDIR += p5-AutoXS-Header SUBDIR += p5-B-C SUBDIR += p5-B-COW SUBDIR += p5-B-Compiling SUBDIR += p5-B-Debug SUBDIR += p5-B-Deobfuscate SUBDIR += p5-B-Flags SUBDIR += p5-B-Generate SUBDIR += p5-B-Graph SUBDIR += p5-B-Hooks-EndOfScope SUBDIR += p5-B-Hooks-OP-Annotation SUBDIR += p5-B-Hooks-OP-Check SUBDIR += p5-B-Hooks-OP-Check-EntersubForCV SUBDIR += p5-B-Hooks-OP-PPAddr SUBDIR += p5-B-Hooks-Parser SUBDIR += p5-B-Keywords SUBDIR += p5-B-OPCheck SUBDIR += p5-B-Size2 SUBDIR += p5-B-Utils SUBDIR += p5-BFD SUBDIR += p5-BS-Event SUBDIR += p5-BSD-Resource SUBDIR += p5-BSD-devstat SUBDIR += p5-BSD-stat SUBDIR += p5-BZ-Client SUBDIR += p5-Badger SUBDIR += p5-Benchmark-Timer SUBDIR += p5-Best SUBDIR += p5-Border-Style SUBDIR += p5-BorderStyle SUBDIR += p5-BorderStyleBase SUBDIR += p5-BorderStyles-Standard SUBDIR += p5-Brannigan SUBDIR += p5-Bread-Board SUBDIR += p5-Bread-Board-Declare SUBDIR += p5-Bundle-Perl6 SUBDIR += p5-C-Scan SUBDIR += p5-CBOR-XS SUBDIR += p5-CHI SUBDIR += p5-CHI-Driver-DBI SUBDIR += p5-CLASS SUBDIR += p5-CLI-Osprey SUBDIR += p5-CPAN-Changes SUBDIR += p5-CPAN-Checksums SUBDIR += p5-CPAN-DistnameInfo SUBDIR += p5-CPAN-Inject SUBDIR += p5-CPAN-Meta SUBDIR += p5-CPAN-Meta-Check SUBDIR += p5-CPAN-Meta-Requirements SUBDIR += p5-CPAN-Meta-YAML SUBDIR += p5-CPAN-Mini SUBDIR += p5-CPAN-Perl-Releases SUBDIR += p5-CPAN-Recent-Uploads SUBDIR += p5-CPAN-Reporter SUBDIR += p5-CPAN-Reporter-Smoker SUBDIR += p5-CPAN-SQLite SUBDIR += p5-CPAN-Site SUBDIR += p5-CPAN-Testers-Common-Client SUBDIR += p5-CPAN-Testers-Report SUBDIR += p5-CPAN-Uploader SUBDIR += p5-CPAN-YACSmoke SUBDIR += p5-CPANPLUS SUBDIR += p5-CPANPLUS-Dist-Build SUBDIR += p5-CPS SUBDIR += p5-CPU-Z80-Assembler SUBDIR += p5-Cache SUBDIR += p5-Cache-AgainstFile SUBDIR += p5-Cache-Cache SUBDIR += p5-Cache-FastMmap SUBDIR += p5-Cache-LRU SUBDIR += p5-Cache-Memcached-Tie SUBDIR += p5-Cache-Mmap SUBDIR += p5-Cache-Simple-TimedExpiry SUBDIR += p5-Cairo-GObject SUBDIR += p5-Calendar-Simple SUBDIR += p5-Call-Context SUBDIR += p5-Callback-Frame SUBDIR += p5-Canary-Stability SUBDIR += p5-Capture-Tiny SUBDIR += p5-Capture-Tiny-Extended SUBDIR += p5-Carp SUBDIR += p5-Carp-Always SUBDIR += p5-Carp-Always-Color SUBDIR += p5-Carp-Assert SUBDIR += p5-Carp-Assert-More SUBDIR += p5-Carp-Clan SUBDIR += p5-Carp-Clan-Share SUBDIR += p5-Carp-Datum SUBDIR += p5-Carp-REPL SUBDIR += p5-Check-ISA SUBDIR += p5-Child SUBDIR += p5-Chooser SUBDIR += p5-Class-Accessor SUBDIR += p5-Class-Accessor-Chained SUBDIR += p5-Class-Accessor-Children SUBDIR += p5-Class-Accessor-Complex SUBDIR += p5-Class-Accessor-Constructor SUBDIR += p5-Class-Accessor-Fast-Contained SUBDIR += p5-Class-Accessor-Fast-XS SUBDIR += p5-Class-Accessor-Grouped SUBDIR += p5-Class-Accessor-Installer SUBDIR += p5-Class-Accessor-Lite SUBDIR += p5-Class-Accessor-Lvalue SUBDIR += p5-Class-Accessor-Named SUBDIR += p5-Class-Adapter SUBDIR += p5-Class-AlzaboWrapper SUBDIR += p5-Class-ArrayObjects SUBDIR += p5-Class-AutoClass SUBDIR += p5-Class-Autouse SUBDIR += p5-Class-Base SUBDIR += p5-Class-BlackHole SUBDIR += p5-Class-C3 SUBDIR += p5-Class-C3-Adopt-NEXT SUBDIR += p5-Class-C3-Componentised SUBDIR += p5-Class-C3-XS SUBDIR += p5-Class-Closure SUBDIR += p5-Class-CodeStyler SUBDIR += p5-Class-Component SUBDIR += p5-Class-Constant SUBDIR += p5-Class-Container SUBDIR += p5-Class-Contract SUBDIR += p5-Class-Data-ConfigHash SUBDIR += p5-Class-Data-Inheritable SUBDIR += p5-Class-Data-Lite SUBDIR += p5-Class-Date SUBDIR += p5-Class-Declare SUBDIR += p5-Class-Default SUBDIR += p5-Class-Delegation SUBDIR += p5-Class-EHierarchy SUBDIR += p5-Class-ErrorHandler SUBDIR += p5-Class-Factory SUBDIR += p5-Class-Factory-Util SUBDIR += p5-Class-Field SUBDIR += p5-Class-Fields SUBDIR += p5-Class-Forward SUBDIR += p5-Class-Generate SUBDIR += p5-Class-Gomor SUBDIR += p5-Class-Handle SUBDIR += p5-Class-Hook SUBDIR += p5-Class-ISA SUBDIR += p5-Class-Inner SUBDIR += p5-Class-InsideOut SUBDIR += p5-Class-Inspector SUBDIR += p5-Class-Interfaces SUBDIR += p5-Class-Load SUBDIR += p5-Class-Load-XS SUBDIR += p5-Class-Loader SUBDIR += p5-Class-MakeMethods SUBDIR += p5-Class-Measure SUBDIR += p5-Class-Method-Modifiers SUBDIR += p5-Class-Method-Modifiers-Fast SUBDIR += p5-Class-MethodMaker SUBDIR += p5-Class-MethodMapper SUBDIR += p5-Class-Mix SUBDIR += p5-Class-Mixin SUBDIR += p5-Class-MixinFactory SUBDIR += p5-Class-Multimethods SUBDIR += p5-Class-Multimethods-Pure SUBDIR += p5-Class-NamedParms SUBDIR += p5-Class-Null SUBDIR += p5-Class-OOorNO SUBDIR += p5-Class-ObjectTemplate SUBDIR += p5-Class-ObjectTemplate-DB SUBDIR += p5-Class-Observable SUBDIR += p5-Class-ParmList SUBDIR += p5-Class-Prototyped SUBDIR += p5-Class-ReturnValue SUBDIR += p5-Class-Roles SUBDIR += p5-Class-STL-Containers SUBDIR += p5-Class-Singleton SUBDIR += p5-Class-Spiffy SUBDIR += p5-Class-StateMachine SUBDIR += p5-Class-Std SUBDIR += p5-Class-Std-Fast SUBDIR += p5-Class-Std-Utils SUBDIR += p5-Class-StrongSingleton SUBDIR += p5-Class-Tangram SUBDIR += p5-Class-Throwable SUBDIR += p5-Class-Tiny SUBDIR += p5-Class-Tiny-Chained SUBDIR += p5-Class-Tom SUBDIR += p5-Class-Trigger SUBDIR += p5-Class-Unload SUBDIR += p5-Class-Virtual SUBDIR += p5-Class-WhiteHole SUBDIR += p5-Class-Workflow SUBDIR += p5-Class-XPath SUBDIR += p5-Class-XSAccessor SUBDIR += p5-Clone SUBDIR += p5-Clone-Choose SUBDIR += p5-Clone-Fast SUBDIR += p5-Clone-More SUBDIR += p5-Clone-PP SUBDIR += p5-Code-Perl SUBDIR += p5-Color-ANSI-Util SUBDIR += p5-Color-RGB-Util SUBDIR += p5-Color-Theme-Role SUBDIR += p5-ColorThemeBase-Static SUBDIR += p5-ColorThemeUtil-ANSI SUBDIR += p5-ColorThemes-Standard SUBDIR += p5-Commandable SUBDIR += p5-Commands-Guarded SUBDIR += p5-CommitBit SUBDIR += p5-Compiler-Lexer SUBDIR += p5-Complete-Common SUBDIR += p5-Complete-Path SUBDIR += p5-Complete-Sah SUBDIR += p5-Complete-Sequence SUBDIR += p5-Complete-Util SUBDIR += p5-Config-AST SUBDIR += p5-Config-AWS SUBDIR += p5-Config-Any SUBDIR += p5-Config-ApacheFormat SUBDIR += p5-Config-Auto SUBDIR += p5-Config-AutoConf SUBDIR += p5-Config-Fast SUBDIR += p5-Config-General SUBDIR += p5-Config-GitLike SUBDIR += p5-Config-Grammar SUBDIR += p5-Config-INI SUBDIR += p5-Config-INI-Reader-Ordered SUBDIR += p5-Config-INI-Simple SUBDIR += p5-Config-Identity SUBDIR += p5-Config-IniFiles SUBDIR += p5-Config-IniHash SUBDIR += p5-Config-IniRegEx SUBDIR += p5-Config-JFDI SUBDIR += p5-Config-JSON SUBDIR += p5-Config-MVP SUBDIR += p5-Config-MVP-Reader-INI SUBDIR += p5-Config-Merge SUBDIR += p5-Config-Model SUBDIR += p5-Config-Model-Backend-Yaml SUBDIR += p5-Config-Model-Tester SUBDIR += p5-Config-MySQL SUBDIR += p5-Config-Objective SUBDIR += p5-Config-Options SUBDIR += p5-Config-Parser SUBDIR += p5-Config-Parser-ldap SUBDIR += p5-Config-Perl-V SUBDIR += p5-Config-Properties SUBDIR += p5-Config-Record SUBDIR += p5-Config-Setting SUBDIR += p5-Config-Simple SUBDIR += p5-Config-Std SUBDIR += p5-Config-Tiny SUBDIR += p5-Config-Validator SUBDIR += p5-Config-Versioned SUBDIR += p5-Config-Wrest SUBDIR += p5-Config-YAML SUBDIR += p5-ConfigReader SUBDIR += p5-ConfigReader-Simple SUBDIR += p5-Connector SUBDIR += p5-Const-Exporter SUBDIR += p5-Const-Fast SUBDIR += p5-Context-Preserve SUBDIR += p5-Contextual-Return SUBDIR += p5-Convert-Scalar SUBDIR += p5-Coro SUBDIR += p5-Curses SUBDIR += p5-Curses-Application SUBDIR += p5-Curses-Forms SUBDIR += p5-Curses-UI SUBDIR += p5-Curses-Widgets SUBDIR += p5-Cvs SUBDIR += p5-Cwd-Guard SUBDIR += p5-DB_File-Lock SUBDIR += p5-Daemon-Control SUBDIR += p5-Dancer-Debug SUBDIR += p5-Dancer-Logger-Syslog SUBDIR += p5-Danga-Socket SUBDIR += p5-Danga-Socket-Callback SUBDIR += p5-Data-ACL SUBDIR += p5-Data-Alias SUBDIR += p5-Data-Binary SUBDIR += p5-Data-Bind SUBDIR += p5-Data-Capture SUBDIR += p5-Data-ClearSilver-HDF SUBDIR += p5-Data-Clone SUBDIR += p5-Data-Compare SUBDIR += p5-Data-Diver SUBDIR += p5-Data-Dmp SUBDIR += p5-Data-Domain SUBDIR += p5-Data-Dump SUBDIR += p5-Data-Dump-Color SUBDIR += p5-Data-Dump-Streamer SUBDIR += p5-Data-DumpXML SUBDIR += p5-Data-Dumper SUBDIR += p5-Data-Dumper-Concise SUBDIR += p5-Data-Dumper-Perltidy SUBDIR += p5-Data-Dumper-Simple SUBDIR += p5-Data-Flow SUBDIR += p5-Data-GUID SUBDIR += p5-Data-Grouper SUBDIR += p5-Data-HashArray SUBDIR += p5-Data-HexDump SUBDIR += p5-Data-HexDump-Range SUBDIR += p5-Data-Hexdumper SUBDIR += p5-Data-Hexify SUBDIR += p5-Data-Hierarchy SUBDIR += p5-Data-IEEE754 SUBDIR += p5-Data-Inherited SUBDIR += p5-Data-Inspect SUBDIR += p5-Data-Integer SUBDIR += p5-Data-JavaScript-Anon SUBDIR += p5-Data-Lazy SUBDIR += p5-Data-Localize SUBDIR += p5-Data-Lock SUBDIR += p5-Data-MessagePack SUBDIR += p5-Data-MessagePack-Stream SUBDIR += p5-Data-Miscellany SUBDIR += p5-Data-Model SUBDIR += p5-Data-Munge SUBDIR += p5-Data-Object SUBDIR += p5-Data-Object-Args SUBDIR += p5-Data-Object-Attributes SUBDIR += p5-Data-Object-Cast SUBDIR += p5-Data-Object-Class SUBDIR += p5-Data-Object-ClassHas SUBDIR += p5-Data-Object-Data SUBDIR += p5-Data-Object-Exception SUBDIR += p5-Data-Object-Kind SUBDIR += p5-Data-Object-Name SUBDIR += p5-Data-Object-Opts SUBDIR += p5-Data-Object-Plugin SUBDIR += p5-Data-Object-Role SUBDIR += p5-Data-Object-Role-Arguable SUBDIR += p5-Data-Object-Role-Buildable SUBDIR += p5-Data-Object-Role-Dumpable SUBDIR += p5-Data-Object-Role-Errable SUBDIR += p5-Data-Object-Role-Formulatable SUBDIR += p5-Data-Object-Role-Immutable SUBDIR += p5-Data-Object-Role-Pluggable SUBDIR += p5-Data-Object-Role-Proxyable SUBDIR += p5-Data-Object-Role-Stashable SUBDIR += p5-Data-Object-Role-Throwable SUBDIR += p5-Data-Object-Role-Tryable SUBDIR += p5-Data-Object-RoleHas SUBDIR += p5-Data-Object-Space SUBDIR += p5-Data-Object-State SUBDIR += p5-Data-Object-Struct SUBDIR += p5-Data-Object-Try SUBDIR += p5-Data-Object-Types SUBDIR += p5-Data-Object-Vars SUBDIR += p5-Data-ObjectDriver SUBDIR += p5-Data-OptList SUBDIR += p5-Data-Page-NoTotalEntries SUBDIR += p5-Data-Page-Pageset SUBDIR += p5-Data-ParseBinary SUBDIR += p5-Data-Path SUBDIR += p5-Data-Peek SUBDIR += p5-Data-Perl SUBDIR += p5-Data-Printer SUBDIR += p5-Data-Properties SUBDIR += p5-Data-Rand SUBDIR += p5-Data-Rand-Obscure SUBDIR += p5-Data-Random SUBDIR += p5-Data-Range-Compare SUBDIR += p5-Data-Record SUBDIR += p5-Data-Recursive-Encode SUBDIR += p5-Data-Remember SUBDIR += p5-Data-Rmap SUBDIR += p5-Data-RoundRobin SUBDIR += p5-Data-Rx SUBDIR += p5-Data-SExpression SUBDIR += p5-Data-Sah-Normalize SUBDIR += p5-Data-Section SUBDIR += p5-Data-Section-Simple SUBDIR += p5-Data-Serializable SUBDIR += p5-Data-Serializer SUBDIR += p5-Data-Serializer-Sereal SUBDIR += p5-Data-ShowTable SUBDIR += p5-Data-Stag SUBDIR += p5-Data-Stream-Bulk SUBDIR += p5-Data-Structure-Util SUBDIR += p5-Data-Swap SUBDIR += p5-Data-Table SUBDIR += p5-Data-Taxonomy-Tags SUBDIR += p5-Data-TemporaryBag SUBDIR += p5-Data-Throttler SUBDIR += p5-Data-Throttler-Memcached SUBDIR += p5-Data-Thunk SUBDIR += p5-Data-TreeDumper SUBDIR += p5-Data-TreeDumper-Renderer-GTK SUBDIR += p5-Data-Types SUBDIR += p5-Data-URIEncode SUBDIR += p5-Data-UUID SUBDIR += p5-Data-Uniqid SUBDIR += p5-Data-Unixish SUBDIR += p5-Data-Util SUBDIR += p5-Data-Validate SUBDIR += p5-Data-Validator SUBDIR += p5-Data-Visitor SUBDIR += p5-Data-Visitor-Encode SUBDIR += p5-Data-Visitor-Tiny SUBDIR += p5-Data-Walk SUBDIR += p5-DataStruct-Flat SUBDIR += p5-Date-Business SUBDIR += p5-Date-Calc SUBDIR += p5-Date-Calc-Iterator SUBDIR += p5-Date-Calc-XS SUBDIR += p5-Date-DayOfWeek SUBDIR += p5-Date-Easter SUBDIR += p5-Date-Extract SUBDIR += p5-Date-EzDate SUBDIR += p5-Date-Holidays-DK SUBDIR += p5-Date-ICal SUBDIR += p5-Date-ISO SUBDIR += p5-Date-Leapyear SUBDIR += p5-Date-Manip SUBDIR += p5-Date-Pcalc SUBDIR += p5-Date-Piece SUBDIR += p5-Date-Range SUBDIR += p5-Date-Roman SUBDIR += p5-Date-Simple SUBDIR += p5-DateConvert SUBDIR += p5-DateTime SUBDIR += p5-DateTime-Astro SUBDIR += p5-DateTime-Calendar-Chinese SUBDIR += p5-DateTime-Calendar-Christian SUBDIR += p5-DateTime-Calendar-Discordian SUBDIR += p5-DateTime-Calendar-FrenchRevolutionary SUBDIR += p5-DateTime-Calendar-Hebrew SUBDIR += p5-DateTime-Calendar-Japanese SUBDIR += p5-DateTime-Calendar-Julian SUBDIR += p5-DateTime-Calendar-Mayan SUBDIR += p5-DateTime-Calendar-Pataphysical SUBDIR += p5-DateTime-Cron-Simple SUBDIR += p5-DateTime-Event-Chinese SUBDIR += p5-DateTime-Event-Cron SUBDIR += p5-DateTime-Event-Easter SUBDIR += p5-DateTime-Event-ICal SUBDIR += p5-DateTime-Event-Lunar SUBDIR += p5-DateTime-Event-NameDay SUBDIR += p5-DateTime-Event-Random SUBDIR += p5-DateTime-Event-Recurrence SUBDIR += p5-DateTime-Event-Sunrise SUBDIR += p5-DateTime-Event-Zodiac SUBDIR += p5-DateTime-Fiscal-Year SUBDIR += p5-DateTime-Format-Baby SUBDIR += p5-DateTime-Format-Bork SUBDIR += p5-DateTime-Format-Builder SUBDIR += p5-DateTime-Format-DBI SUBDIR += p5-DateTime-Format-DateManip SUBDIR += p5-DateTime-Format-DateParse SUBDIR += p5-DateTime-Format-Duration SUBDIR += p5-DateTime-Format-Epoch SUBDIR += p5-DateTime-Format-Excel SUBDIR += p5-DateTime-Format-Flexible SUBDIR += p5-DateTime-Format-HTTP SUBDIR += p5-DateTime-Format-IBeat SUBDIR += p5-DateTime-Format-ICal SUBDIR += p5-DateTime-Format-ISO8601 SUBDIR += p5-DateTime-Format-Mail SUBDIR += p5-DateTime-Format-MySQL SUBDIR += p5-DateTime-Format-Natural SUBDIR += p5-DateTime-Format-Oracle SUBDIR += p5-DateTime-Format-Pg SUBDIR += p5-DateTime-Format-RFC3339 SUBDIR += p5-DateTime-Format-RSS SUBDIR += p5-DateTime-Format-Roman SUBDIR += p5-DateTime-Format-SQLite SUBDIR += p5-DateTime-Format-Strptime SUBDIR += p5-DateTime-Format-W3CDTF SUBDIR += p5-DateTime-Format-XSD SUBDIR += p5-DateTime-Functions SUBDIR += p5-DateTime-HiRes SUBDIR += p5-DateTime-Incomplete SUBDIR += p5-DateTime-Locale SUBDIR += p5-DateTime-Precise SUBDIR += p5-DateTime-Set SUBDIR += p5-DateTime-TimeZone SUBDIR += p5-DateTime-TimeZone-Alias SUBDIR += p5-DateTime-TimeZone-LMT SUBDIR += p5-DateTime-Util-Calc SUBDIR += p5-DateTimeX-Easy SUBDIR += p5-Debug-Client SUBDIR += p5-Decision-ACL SUBDIR += p5-Declare-Constraints-Simple SUBDIR += p5-DefHash SUBDIR += p5-Devel-ArgNames SUBDIR += p5-Devel-Autoflush SUBDIR += p5-Devel-Backtrace SUBDIR += p5-Devel-BeginLift SUBDIR += p5-Devel-CallChecker SUBDIR += p5-Devel-Caller SUBDIR += p5-Devel-Caller-IgnoreNamespaces SUBDIR += p5-Devel-Caller-Perl SUBDIR += p5-Devel-Callsite SUBDIR += p5-Devel-CheckBin SUBDIR += p5-Devel-CheckCompiler SUBDIR += p5-Devel-CheckLib SUBDIR += p5-Devel-CheckOS SUBDIR += p5-Devel-Confess SUBDIR += p5-Devel-Constants SUBDIR += p5-Devel-CoreStack SUBDIR += p5-Devel-Cover SUBDIR += p5-Devel-Cover-Report-Clover SUBDIR += p5-Devel-Cycle SUBDIR += p5-Devel-DProfPP SUBDIR += p5-Devel-Declare SUBDIR += p5-Devel-Declare-Parser SUBDIR += p5-Devel-Diagram SUBDIR += p5-Devel-Ditto SUBDIR += p5-Devel-Dumpvar SUBDIR += p5-Devel-EvalContext SUBDIR += p5-Devel-Events SUBDIR += p5-Devel-Events-Objects SUBDIR += p5-Devel-FindPerl SUBDIR += p5-Devel-Gladiator SUBDIR += p5-Devel-GlobalDestruction SUBDIR += p5-Devel-GlobalDestruction-XS SUBDIR += p5-Devel-Hide SUBDIR += p5-Devel-InheritNamespace SUBDIR += p5-Devel-KYTProf SUBDIR += p5-Devel-Leak SUBDIR += p5-Devel-Leak-Cb SUBDIR += p5-Devel-Leak-Object SUBDIR += p5-Devel-LeakGuard-Object SUBDIR += p5-Devel-LeakTrace SUBDIR += p5-Devel-LexAlias SUBDIR += p5-Devel-MAT SUBDIR += p5-Devel-MAT-Dumper SUBDIR += p5-Devel-Messenger SUBDIR += p5-Devel-Modlist SUBDIR += p5-Devel-NYTProf SUBDIR += p5-Devel-OverloadInfo SUBDIR += p5-Devel-PPPort SUBDIR += p5-Devel-PackagePath SUBDIR += p5-Devel-PartialDump SUBDIR += p5-Devel-PatchPerl SUBDIR += p5-Devel-Platform-Info SUBDIR += p5-Devel-Pointer SUBDIR += p5-Devel-Profile SUBDIR += p5-Devel-REPL SUBDIR += p5-Devel-Refactor SUBDIR += p5-Devel-Refcount SUBDIR += p5-Devel-Required SUBDIR += p5-Devel-RingBuffer SUBDIR += p5-Devel-STrace SUBDIR += p5-Devel-SimpleTrace SUBDIR += p5-Devel-Size SUBDIR += p5-Devel-Size-Report SUBDIR += p5-Devel-SmallProf SUBDIR += p5-Devel-StackTrace SUBDIR += p5-Devel-StackTrace-AsHTML SUBDIR += p5-Devel-StackTrace-WithLexicals SUBDIR += p5-Devel-StealthDebug SUBDIR += p5-Devel-StrictMode SUBDIR += p5-Devel-Symdump SUBDIR += p5-Devel-Timer SUBDIR += p5-Devel-Trace SUBDIR += p5-Devel-TraceCalls SUBDIR += p5-Devel-TraceUse SUBDIR += p5-Devel-ebug SUBDIR += p5-Devel-ptkdb SUBDIR += p5-Device-USB SUBDIR += p5-Digest-TransformPath SUBDIR += p5-Dir-Project SUBDIR += p5-Dir-Self SUBDIR += p5-Dir-Watch SUBDIR += p5-Directory-Queue SUBDIR += p5-Directory-Scratch SUBDIR += p5-Directory-Scratch-Structured SUBDIR += p5-Dist-CheckConflicts SUBDIR += p5-Dist-Joseki SUBDIR += p5-Dist-Metadata SUBDIR += p5-Dist-Zilla SUBDIR += p5-Doxygen-Filter-Perl SUBDIR += p5-DynaLoader-Functions SUBDIR += p5-EV SUBDIR += p5-Env-PS1 SUBDIR += p5-Env-Path SUBDIR += p5-Error-Helper SUBDIR += p5-Eval-Closure SUBDIR += p5-Eval-Context SUBDIR += p5-Eval-LineNumbers SUBDIR += p5-Eval-WithLexicals SUBDIR += p5-Event SUBDIR += p5-Event-ExecFlow SUBDIR += p5-Event-Join SUBDIR += p5-Event-Lib SUBDIR += p5-Event-Notify SUBDIR += p5-Event-RPC SUBDIR += p5-Every SUBDIR += p5-Exception-Class SUBDIR += p5-Exception-Class-TryCatch SUBDIR += p5-Exception-Handler SUBDIR += p5-Expect-Simple SUBDIR += p5-ExportTo SUBDIR += p5-Exporter SUBDIR += p5-Exporter-Declare SUBDIR += p5-Exporter-Easy SUBDIR += p5-Exporter-Lite SUBDIR += p5-Exporter-Tidy SUBDIR += p5-Exporter-Tiny SUBDIR += p5-ExtUtils-AutoInstall SUBDIR += p5-ExtUtils-CBuilder SUBDIR += p5-ExtUtils-CChecker SUBDIR += p5-ExtUtils-Config SUBDIR += p5-ExtUtils-Constant SUBDIR += p5-ExtUtils-CppGuess SUBDIR += p5-ExtUtils-Depends SUBDIR += p5-ExtUtils-Helpers SUBDIR += p5-ExtUtils-Install SUBDIR += p5-ExtUtils-InstallPaths SUBDIR += p5-ExtUtils-LibBuilder SUBDIR += p5-ExtUtils-MakeMaker SUBDIR += p5-ExtUtils-MakeMaker-CPANfile SUBDIR += p5-ExtUtils-MakeMaker-Coverage SUBDIR += p5-ExtUtils-Manifest SUBDIR += p5-ExtUtils-ParseXS SUBDIR += p5-ExtUtils-PkgConfig SUBDIR += p5-ExtUtils-XSBuilder SUBDIR += p5-ExtUtils-XSpp SUBDIR += p5-FFI-CheckLib SUBDIR += p5-FFI-Platypus SUBDIR += p5-FFI-Platypus-Declare SUBDIR += p5-FSA-Rules SUBDIR += p5-Feature-Compat-Try SUBDIR += p5-Fennec-Lite SUBDIR += p5-File-Append-TempFile SUBDIR += p5-File-Assets SUBDIR += p5-File-Attributes SUBDIR += p5-File-Attributes-Recursive SUBDIR += p5-File-BOM SUBDIR += p5-File-BaseDir SUBDIR += p5-File-BasicFlock SUBDIR += p5-File-Binary SUBDIR += p5-File-Cache SUBDIR += p5-File-Cat SUBDIR += p5-File-ChangeNotify SUBDIR += p5-File-ConfigDir SUBDIR += p5-File-Copy-Link SUBDIR += p5-File-Copy-Recursive SUBDIR += p5-File-Copy-Recursive-Reduced SUBDIR += p5-File-CountLines SUBDIR += p5-File-CreationTime SUBDIR += p5-File-DesktopEntry SUBDIR += p5-File-Dir-Dumper SUBDIR += p5-File-DirSync SUBDIR += p5-File-ExtAttr SUBDIR += p5-File-FcntlLock SUBDIR += p5-File-Find-Closures SUBDIR += p5-File-Find-Object SUBDIR += p5-File-Find-Object-Rule SUBDIR += p5-File-Find-Rule SUBDIR += p5-File-Find-Rule-Filesys-Virtual SUBDIR += p5-File-Find-Rule-Perl SUBDIR += p5-File-Find-Rule-VCS SUBDIR += p5-File-Finder SUBDIR += p5-File-Flat SUBDIR += p5-File-Flock SUBDIR += p5-File-Flock-Retry SUBDIR += p5-File-FnMatch SUBDIR += p5-File-Grep SUBDIR += p5-File-HStore SUBDIR += p5-File-HomeDir SUBDIR += p5-File-HomeDir-PathClass SUBDIR += p5-File-HomeDir-Tiny SUBDIR += p5-File-Iterator SUBDIR += p5-File-LibMagic SUBDIR += p5-File-LoadLines SUBDIR += p5-File-MMagic SUBDIR += p5-File-MMagic-XS SUBDIR += p5-File-Map SUBDIR += p5-File-MimeInfo SUBDIR += p5-File-Modified SUBDIR += p5-File-Monitor SUBDIR += p5-File-NCopy SUBDIR += p5-File-NFSLock SUBDIR += p5-File-Path SUBDIR += p5-File-Path-Expand SUBDIR += p5-File-Path-Tiny SUBDIR += p5-File-PathConvert SUBDIR += p5-File-Pid SUBDIR += p5-File-Pid-Quick SUBDIR += p5-File-Policy SUBDIR += p5-File-Random SUBDIR += p5-File-ReadBackwards SUBDIR += p5-File-Remove SUBDIR += p5-File-SafeDO SUBDIR += p5-File-SearchPath SUBDIR += p5-File-Share SUBDIR += p5-File-ShareDir SUBDIR += p5-File-ShareDir-Install SUBDIR += p5-File-ShareDir-PAR SUBDIR += p5-File-ShareDir-PathClass SUBDIR += p5-File-ShareDir-ProjectDistDir SUBDIR += p5-File-ShareDir-Tarball SUBDIR += p5-File-Slurp SUBDIR += p5-File-Slurp-Tiny SUBDIR += p5-File-Slurp-Tree SUBDIR += p5-File-Slurper SUBDIR += p5-File-Spec-Native SUBDIR += p5-File-Stream SUBDIR += p5-File-Sync SUBDIR += p5-File-Tail SUBDIR += p5-File-Tail-Dir SUBDIR += p5-File-Tail-Multi SUBDIR += p5-File-Tail-Scribe SUBDIR += p5-File-Temp SUBDIR += p5-File-Tempdir SUBDIR += p5-File-Touch SUBDIR += p5-File-TreeCreate SUBDIR += p5-File-Type SUBDIR += p5-File-Util SUBDIR += p5-File-Write-Rotate SUBDIR += p5-File-chdir SUBDIR += p5-File-chmod SUBDIR += p5-File-pushd SUBDIR += p5-FileHandle-Fmode SUBDIR += p5-FileHandle-Unget SUBDIR += p5-Filesys-Notify-KQueue SUBDIR += p5-Filesys-Notify-Simple SUBDIR += p5-Filesys-Virtual SUBDIR += p5-Filesys-Virtual-Plain SUBDIR += p5-Filter SUBDIR += p5-Filter-Template SUBDIR += p5-Find-Lib SUBDIR += p5-FindBin-libs SUBDIR += p5-Forest SUBDIR += p5-Form-Sensible SUBDIR += p5-FreeBSD-i386-Ptrace SUBDIR += p5-FreezeThaw SUBDIR += p5-Function-Fallback-CoreOrPP SUBDIR += p5-Function-Parameters SUBDIR += p5-Future SUBDIR += p5-Future-IO SUBDIR += p5-Gearman SUBDIR += p5-Gearman-Client-Async SUBDIR += p5-Gearman-Server SUBDIR += p5-Gearman-XS SUBDIR += p5-Geo-JSON SUBDIR += p5-Geo-ShapeFile SUBDIR += p5-Getargs-Long SUBDIR += p5-Getopt-ArgvFile SUBDIR += p5-Getopt-Attribute SUBDIR += p5-Getopt-Compact SUBDIR += p5-Getopt-Compact-WithCmd SUBDIR += p5-Getopt-Declare SUBDIR += p5-Getopt-EX SUBDIR += p5-Getopt-Euclid SUBDIR += p5-Getopt-GUI-Long SUBDIR += p5-Getopt-Long SUBDIR += p5-Getopt-Long-Descriptive SUBDIR += p5-Getopt-Tabular SUBDIR += p5-Git-PurePerl SUBDIR += p5-Git-Repository SUBDIR += p5-Git-Repository-Plugin-Log SUBDIR += p5-Git-Sub SUBDIR += p5-Git-Version-Compare SUBDIR += p5-Git-Wrapper SUBDIR += p5-Glib SUBDIR += p5-Glib-Object-Introspection SUBDIR += p5-Goo-Canvas2 SUBDIR += p5-Google-Checkout SUBDIR += p5-Google-ProtocolBuffers SUBDIR += p5-GraphQL SUBDIR += p5-Gravatar-URL SUBDIR += p5-Gtk2-Notify SUBDIR += p5-Gtk2-Spell SUBDIR += p5-Guard SUBDIR += p5-HOP-Lexer SUBDIR += p5-HOP-Stream SUBDIR += p5-Hash-AsObject SUBDIR += p5-Hash-AutoHash SUBDIR += p5-Hash-AutoHash-Args SUBDIR += p5-Hash-Case SUBDIR += p5-Hash-Diff SUBDIR += p5-Hash-FieldHash SUBDIR += p5-Hash-Flatten SUBDIR += p5-Hash-Merge-Simple SUBDIR += p5-Hash-MoreUtils SUBDIR += p5-Hash-MultiKey SUBDIR += p5-Hash-MultiValue SUBDIR += p5-Hash-NoRef SUBDIR += p5-Hash-Objectify SUBDIR += p5-Hash-Slice SUBDIR += p5-Hash-Union SUBDIR += p5-Hash-Util-FieldHash-Compat SUBDIR += p5-Hash-WithDefaults SUBDIR += p5-Heap SUBDIR += p5-Heap-Simple SUBDIR += p5-Heap-Simple-Perl SUBDIR += p5-Heap-Simple-XS SUBDIR += p5-Hook-LexWrap SUBDIR += p5-IO-AIO SUBDIR += p5-IO-All SUBDIR += p5-IO-All-LWP SUBDIR += p5-IO-Any SUBDIR += p5-IO-Async SUBDIR += p5-IO-BufferedSelect SUBDIR += p5-IO-Callback SUBDIR += p5-IO-Capture SUBDIR += p5-IO-CaptureOutput SUBDIR += p5-IO-Digest SUBDIR += p5-IO-Event SUBDIR += p5-IO-FDPass SUBDIR += p5-IO-File-AtomicChange SUBDIR += p5-IO-HTML SUBDIR += p5-IO-Handle-Util SUBDIR += p5-IO-Interactive SUBDIR += p5-IO-KQueue SUBDIR += p5-IO-Lambda SUBDIR += p5-IO-LockedFile SUBDIR += p5-IO-MultiPipe SUBDIR += p5-IO-Multiplex SUBDIR += p5-IO-NestedCapture SUBDIR += p5-IO-Null SUBDIR += p5-IO-Pager SUBDIR += p5-IO-Pipely SUBDIR += p5-IO-Prompt SUBDIR += p5-IO-Prompt-Simple SUBDIR += p5-IO-Prompt-Tiny SUBDIR += p5-IO-Prompter SUBDIR += p5-IO-Pty-Easy SUBDIR += p5-IO-SessionData SUBDIR += p5-IO-String SUBDIR += p5-IO-Stringy SUBDIR += p5-IO-Stty SUBDIR += p5-IO-Tee SUBDIR += p5-IO-TieCombine SUBDIR += p5-IO-Toolkit SUBDIR += p5-IO-Tty SUBDIR += p5-IO-Util SUBDIR += p5-IO-YAML SUBDIR += p5-IOC SUBDIR += p5-IPC-Cache SUBDIR += p5-IPC-Cmd SUBDIR += p5-IPC-DirQueue SUBDIR += p5-IPC-Locker SUBDIR += p5-IPC-MM SUBDIR += p5-IPC-MMA SUBDIR += p5-IPC-Mmap SUBDIR += p5-IPC-Mmap-Share SUBDIR += p5-IPC-Open3-Simple SUBDIR += p5-IPC-PerlSSH SUBDIR += p5-IPC-PubSub SUBDIR += p5-IPC-Run SUBDIR += p5-IPC-Run-SafeHandles SUBDIR += p5-IPC-Run3 SUBDIR += p5-IPC-ShareLite SUBDIR += p5-IPC-Shareable SUBDIR += p5-IPC-SharedCache SUBDIR += p5-IPC-ShellCmd SUBDIR += p5-IPC-Signal SUBDIR += p5-IPC-System-Simple SUBDIR += p5-IRI SUBDIR += p5-Import-Base SUBDIR += p5-Import-Into SUBDIR += p5-Importer SUBDIR += p5-Inline SUBDIR += p5-Inline-ASM SUBDIR += p5-Inline-C SUBDIR += p5-Inline-CPP SUBDIR += p5-Inline-Files SUBDIR += p5-Inline-Filters SUBDIR += p5-Inline-Java SUBDIR += p5-Inline-Python SUBDIR += p5-Inline-TT SUBDIR += p5-Inline-Tcl SUBDIR += p5-InlineX-C2XS SUBDIR += p5-InlineX-CPP2XS SUBDIR += p5-Input-Validator SUBDIR += p5-Ioctl SUBDIR += p5-Iodef-Pb-Simple SUBDIR += p5-Iterator SUBDIR += p5-Iterator-IO SUBDIR += p5-Iterator-Misc SUBDIR += p5-Iterator-Simple SUBDIR += p5-Iterator-Simple-Lookahead SUBDIR += p5-Iterator-Util SUBDIR += p5-JIRA-REST SUBDIR += p5-JQuery SUBDIR += p5-JSON-Hyper SUBDIR += p5-JSON-Parse SUBDIR += p5-JSON-Path SUBDIR += p5-JSON-Pointer SUBDIR += p5-JSON-RPC SUBDIR += p5-JSON-RPC-Common SUBDIR += p5-JSON-RPC-Dispatcher SUBDIR += p5-JSON-Schema SUBDIR += p5-Java SUBDIR += p5-Jonk SUBDIR += p5-Keyword-Declare SUBDIR += p5-Keyword-Pluggable SUBDIR += p5-Keyword-Simple SUBDIR += p5-LV SUBDIR += p5-Lexical-Alias SUBDIR += p5-Lexical-Import SUBDIR += p5-Lexical-Persistence SUBDIR += p5-Lexical-SealRequireHints SUBDIR += p5-Lexical-Var SUBDIR += p5-Lingua-JA-Fold SUBDIR += p5-Lingua-Translit SUBDIR += p5-List-AllUtils SUBDIR += p5-List-BinarySearch SUBDIR += p5-List-Cycle SUBDIR += p5-List-Flatten SUBDIR += p5-List-Gen SUBDIR += p5-List-Group SUBDIR += p5-List-Objects-Types SUBDIR += p5-List-Objects-WithUtils SUBDIR += p5-List-Pairwise SUBDIR += p5-List-Permutor SUBDIR += p5-List-PowerSet SUBDIR += p5-List-Regexp SUBDIR += p5-List-Rotation-Cycle SUBDIR += p5-List-SomeUtils SUBDIR += p5-List-SomeUtils-XS SUBDIR += p5-List-Uniq SUBDIR += p5-List-UtilsBy SUBDIR += p5-List-UtilsBy-XS SUBDIR += p5-Locale-Maketext SUBDIR += p5-Locale-Maketext-Fuzzy SUBDIR += p5-Locale-Maketext-Gettext SUBDIR += p5-Locale-Maketext-Lexicon SUBDIR += p5-Locale-Maketext-Simple SUBDIR += p5-Locale-Msgfmt SUBDIR += p5-Locale-PGetText SUBDIR += p5-Locale-PO SUBDIR += p5-Locale-XGettext SUBDIR += p5-Locale-gettext SUBDIR += p5-Locale-libintl SUBDIR += p5-LockFile-Simple SUBDIR += p5-Log-Accounting-SVK SUBDIR += p5-Log-Accounting-SVN SUBDIR += p5-Log-Agent SUBDIR += p5-Log-Agent-Logger SUBDIR += p5-Log-Any SUBDIR += p5-Log-Any-Adapter-Dispatch SUBDIR += p5-Log-Any-Adapter-Log4perl SUBDIR += p5-Log-Any-App SUBDIR += p5-Log-Any-IfLOG SUBDIR += p5-Log-Contextual SUBDIR += p5-Log-Defer SUBDIR += p5-Log-Dispatch SUBDIR += p5-Log-Dispatch-Array SUBDIR += p5-Log-Dispatch-ArrayWithLimits SUBDIR += p5-Log-Dispatch-Colorful SUBDIR += p5-Log-Dispatch-Config SUBDIR += p5-Log-Dispatch-Configurator-Any SUBDIR += p5-Log-Dispatch-Configurator-YAML SUBDIR += p5-Log-Dispatch-DBI SUBDIR += p5-Log-Dispatch-Dir SUBDIR += p5-Log-Dispatch-Email-EmailSend SUBDIR += p5-Log-Dispatch-File-Rolling SUBDIR += p5-Log-Dispatch-File-Stamped SUBDIR += p5-Log-Dispatch-FileRotate SUBDIR += p5-Log-Dispatch-FileShared SUBDIR += p5-Log-Dispatch-FileWriteRotate SUBDIR += p5-Log-Dispatch-Perl SUBDIR += p5-Log-Dispatch-Screen-Color SUBDIR += p5-Log-Dispatch-Scribe SUBDIR += p5-Log-Dispatchouli SUBDIR += p5-Log-Dump SUBDIR += p5-Log-Handler SUBDIR += p5-Log-Log4perl SUBDIR += p5-Log-Log4perl-Appender-RabbitMQ SUBDIR += p5-Log-Log4perl-Appender-Socket-UNIX SUBDIR += p5-Log-Log4perl-Layout-JSON SUBDIR += p5-Log-Log4perl-Tiny SUBDIR += p5-Log-Message SUBDIR += p5-Log-Message-Simple SUBDIR += p5-Log-Minimal SUBDIR += p5-Log-Report SUBDIR += p5-Log-Report-Optional SUBDIR += p5-Log-Simple SUBDIR += p5-Log-Trace SUBDIR += p5-Log-TraceMessages SUBDIR += p5-Log-ger SUBDIR += p5-Logfile-Rotate SUBDIR += p5-Long-Jump SUBDIR += p5-Luka SUBDIR += p5-Lvalue SUBDIR += p5-MCE SUBDIR += p5-MCE-Shared SUBDIR += p5-MRO-Compat SUBDIR += p5-MRO-Define SUBDIR += p5-Mac-FileSpec-Unixish SUBDIR += p5-Mac-PropertyList SUBDIR += p5-Make SUBDIR += p5-Media-Type-Simple SUBDIR += p5-Memoize SUBDIR += p5-Memoize-ExpireLRU SUBDIR += p5-Meta-Builder SUBDIR += p5-MetaCPAN-Client SUBDIR += p5-Metabase-Client-Simple SUBDIR += p5-Metabase-Fact SUBDIR += p5-Method-Alias SUBDIR += p5-Method-Signatures SUBDIR += p5-Method-Signatures-Simple SUBDIR += p5-Metrics-Any SUBDIR += p5-Minilla SUBDIR += p5-Minion SUBDIR += p5-Mixin-Event-Dispatch SUBDIR += p5-Mixin-Linewise SUBDIR += p5-Mknod SUBDIR += p5-Mo SUBDIR += p5-Mock-MonkeyPatch SUBDIR += p5-Mock-Quick SUBDIR += p5-Mock-Sub SUBDIR += p5-Module-Build SUBDIR += p5-Module-Build-Convert SUBDIR += p5-Module-Build-Kwalitee SUBDIR += p5-Module-Build-Pluggable SUBDIR += p5-Module-Build-Pluggable-CPANfile SUBDIR += p5-Module-Build-Pluggable-ReadmeMarkdownFromPod SUBDIR += p5-Module-Build-Tiny SUBDIR += p5-Module-Build-Using-PkgConfig SUBDIR += p5-Module-Build-WithXSpp SUBDIR += p5-Module-Build-XSUtil SUBDIR += p5-Module-CPANTS-Analyse SUBDIR += p5-Module-CPANfile SUBDIR += p5-Module-CheckDeps SUBDIR += p5-Module-CheckVersion SUBDIR += p5-Module-Collect SUBDIR += p5-Module-Compile SUBDIR += p5-Module-CoreList SUBDIR += p5-Module-Dependency SUBDIR += p5-Module-Depends SUBDIR += p5-Module-Extract SUBDIR += p5-Module-Extract-Use SUBDIR += p5-Module-ExtractUse SUBDIR += p5-Module-Find SUBDIR += p5-Module-Functions SUBDIR += p5-Module-Implementation SUBDIR += p5-Module-Info SUBDIR += p5-Module-Info-File SUBDIR += p5-Module-Inspector SUBDIR += p5-Module-Install SUBDIR += p5-Module-Install-AuthorRequires SUBDIR += p5-Module-Install-AuthorTests SUBDIR += p5-Module-Install-ReadmeFromPod SUBDIR += p5-Module-Install-Repository SUBDIR += p5-Module-Install-Template SUBDIR += p5-Module-Install-TestBase SUBDIR += p5-Module-Install-XSUtil SUBDIR += p5-Module-Installed-Tiny SUBDIR += p5-Module-List SUBDIR += p5-Module-Load SUBDIR += p5-Module-Load-Conditional SUBDIR += p5-Module-Load-Util SUBDIR += p5-Module-Loaded SUBDIR += p5-Module-Loader SUBDIR += p5-Module-Manifest SUBDIR += p5-Module-Math-Depends SUBDIR += p5-Module-Metadata SUBDIR += p5-Module-Path SUBDIR += p5-Module-Pluggable SUBDIR += p5-Module-Pluggable-Fast SUBDIR += p5-Module-Pluggable-Ordered SUBDIR += p5-Module-Reader SUBDIR += p5-Module-Recursive-Require SUBDIR += p5-Module-Refresh SUBDIR += p5-Module-Release SUBDIR += p5-Module-Reload SUBDIR += p5-Module-Reload-Sel SUBDIR += p5-Module-Runtime SUBDIR += p5-Module-Runtime-Conflicts SUBDIR += p5-Module-ScanDeps SUBDIR += p5-Module-Setup SUBDIR += p5-Module-Starter SUBDIR += p5-Module-Starter-PBP SUBDIR += p5-Module-Starter-Plugin-SimpleStore SUBDIR += p5-Module-Starter-Plugin-TT2 SUBDIR += p5-Module-Used SUBDIR += p5-Module-Util SUBDIR += p5-Module-Version SUBDIR += p5-Module-Versions SUBDIR += p5-Module-Versions-Report SUBDIR += p5-Mojo-Base-XS SUBDIR += p5-Mojolicious-Plugin-NYTProf SUBDIR += p5-Moo SUBDIR += p5-MooX-Aliases SUBDIR += p5-MooX-Attribute-ENV SUBDIR += p5-MooX-Cmd SUBDIR += p5-MooX-ConfigFromFile SUBDIR += p5-MooX-File-ConfigDir SUBDIR += p5-MooX-HandlesVia SUBDIR += p5-MooX-Locale-Passthrough SUBDIR += p5-MooX-Options SUBDIR += p5-MooX-Role-Parameterized SUBDIR += p5-MooX-Singleton SUBDIR += p5-MooX-StrictConstructor SUBDIR += p5-MooX-Thunking SUBDIR += p5-MooX-Traits SUBDIR += p5-MooX-TypeTiny SUBDIR += p5-MooX-Types-MooseLike SUBDIR += p5-MooX-Types-MooseLike-Numeric SUBDIR += p5-MooX-late SUBDIR += p5-Moos SUBDIR += p5-Moose SUBDIR += p5-Moose-Autobox SUBDIR += p5-Moose-Policy SUBDIR += p5-Moose-Test SUBDIR += p5-MooseX-Aliases SUBDIR += p5-MooseX-App SUBDIR += p5-MooseX-App-Cmd SUBDIR += p5-MooseX-ArrayRef SUBDIR += p5-MooseX-Async SUBDIR += p5-MooseX-Attribute-Chained SUBDIR += p5-MooseX-Attribute-ENV SUBDIR += p5-MooseX-AttributeHelpers SUBDIR += p5-MooseX-AttributeShortcuts SUBDIR += p5-MooseX-AuthorizedMethods SUBDIR += p5-MooseX-ClassAttribute SUBDIR += p5-MooseX-Clone SUBDIR += p5-MooseX-CompileTime-Traits SUBDIR += p5-MooseX-ConfigFromFile SUBDIR += p5-MooseX-CoverableModifiers SUBDIR += p5-MooseX-Daemonize SUBDIR += p5-MooseX-Declare SUBDIR += p5-MooseX-Emulate-Class-Accessor-Fast SUBDIR += p5-MooseX-FollowPBP SUBDIR += p5-MooseX-Getopt SUBDIR += p5-MooseX-Has-Options SUBDIR += p5-MooseX-Has-Sugar SUBDIR += p5-MooseX-HasDefaults SUBDIR += p5-MooseX-IOC SUBDIR += p5-MooseX-InsideOut SUBDIR += p5-MooseX-LazyRequire SUBDIR += p5-MooseX-Lists SUBDIR += p5-MooseX-Log-Log4perl SUBDIR += p5-MooseX-MarkAsMethods SUBDIR += p5-MooseX-Meta-TypeConstraint-ForceCoercion SUBDIR += p5-MooseX-Meta-TypeConstraint-Mooish SUBDIR += p5-MooseX-MetaDescription SUBDIR += p5-MooseX-Method-Signatures SUBDIR += p5-MooseX-MethodAttributes SUBDIR += p5-MooseX-MultiInitArg SUBDIR += p5-MooseX-MultiMethods SUBDIR += p5-MooseX-MungeHas SUBDIR += p5-MooseX-NonMoose SUBDIR += p5-MooseX-Object-Pluggable SUBDIR += p5-MooseX-OneArgNew SUBDIR += p5-MooseX-POE SUBDIR += p5-MooseX-Params-Validate SUBDIR += p5-MooseX-RelatedClassRoles SUBDIR += p5-MooseX-Role-Loggable SUBDIR += p5-MooseX-Role-Matcher SUBDIR += p5-MooseX-Role-Parameterized SUBDIR += p5-MooseX-Role-Strict SUBDIR += p5-MooseX-Runnable SUBDIR += p5-MooseX-SemiAffordanceAccessor SUBDIR += p5-MooseX-SetOnce SUBDIR += p5-MooseX-SimpleConfig SUBDIR += p5-MooseX-Singleton SUBDIR += p5-MooseX-Storage SUBDIR += p5-MooseX-StrictConstructor SUBDIR += p5-MooseX-TraitFor-Meta-Class-BetterAnonClassNames SUBDIR += p5-MooseX-Traits SUBDIR += p5-MooseX-Traits-Pluggable SUBDIR += p5-MooseX-TransactionalMethods SUBDIR += p5-MooseX-Types SUBDIR += p5-MooseX-Types-Common SUBDIR += p5-MooseX-Types-DateTime SUBDIR += p5-MooseX-Types-DateTime-ButMaintained SUBDIR += p5-MooseX-Types-DateTime-MoreCoercions SUBDIR += p5-MooseX-Types-DateTime-MySQL SUBDIR += p5-MooseX-Types-DateTimeX SUBDIR += p5-MooseX-Types-ISO8601 SUBDIR += p5-MooseX-Types-JSON SUBDIR += p5-MooseX-Types-LoadableClass SUBDIR += p5-MooseX-Types-Path-Class SUBDIR += p5-MooseX-Types-Path-Tiny SUBDIR += p5-MooseX-Types-Perl SUBDIR += p5-MooseX-Types-PortNumber SUBDIR += p5-MooseX-Types-Set-Object SUBDIR += p5-MooseX-Types-Signal SUBDIR += p5-MooseX-Types-Stringlike SUBDIR += p5-MooseX-Types-Structured SUBDIR += p5-MooseX-Types-URI SUBDIR += p5-MooseX-Types-VariantTable SUBDIR += p5-MooseX-Util SUBDIR += p5-Mouse SUBDIR += p5-MouseX-App-Cmd SUBDIR += p5-MouseX-AttributeHelpers SUBDIR += p5-MouseX-ConfigFromFile SUBDIR += p5-MouseX-Foreign SUBDIR += p5-MouseX-Getopt SUBDIR += p5-MouseX-NativeTraits SUBDIR += p5-MouseX-StrictConstructor SUBDIR += p5-MouseX-Traits SUBDIR += p5-MouseX-Types SUBDIR += p5-MouseX-Types-Path-Class SUBDIR += p5-Multiplex-CMD SUBDIR += p5-NEXT SUBDIR += p5-Net-DBus SUBDIR += p5-Net-ZooKeeper SUBDIR += p5-No-Worries SUBDIR += p5-Number-Bytes-Human SUBDIR += p5-Number-Tolerant SUBDIR += p5-OLE-Storage_Lite SUBDIR += p5-OOTools SUBDIR += p5-Object-Accessor SUBDIR += p5-Object-Array SUBDIR += p5-Object-Authority SUBDIR += p5-Object-Container SUBDIR += p5-Object-Declare SUBDIR += p5-Object-Destroyer SUBDIR += p5-Object-Enum SUBDIR += p5-Object-Event SUBDIR += p5-Object-Import SUBDIR += p5-Object-InsideOut SUBDIR += p5-Object-MultiType SUBDIR += p5-Object-Pad SUBDIR += p5-Object-Pluggable SUBDIR += p5-Object-Realize-Later SUBDIR += p5-Object-Role SUBDIR += p5-Object-Signature SUBDIR += p5-Object-Simple SUBDIR += p5-Object-Tiny SUBDIR += p5-Object-Tiny-Lvalue SUBDIR += p5-Object-Tiny-RW SUBDIR += p5-Olson-Abbreviations SUBDIR += p5-Opcodes SUBDIR += p5-OrePAN2 SUBDIR += p5-Ouch SUBDIR += p5-PAR SUBDIR += p5-PAR-Dist SUBDIR += p5-PAR-Packer SUBDIR += p5-PCSC-Card SUBDIR += p5-PHP-Serialization SUBDIR += p5-POE SUBDIR += p5-POE-API-Hooks SUBDIR += p5-POE-API-Peek SUBDIR += p5-POE-Component-Child SUBDIR += p5-POE-Component-Cron SUBDIR += p5-POE-Component-Daemon SUBDIR += p5-POE-Component-DebugShell SUBDIR += p5-POE-Component-DirWatch SUBDIR += p5-POE-Component-Hailo SUBDIR += p5-POE-Component-IKC SUBDIR += p5-POE-Component-JobQueue SUBDIR += p5-POE-Component-Logger SUBDIR += p5-POE-Component-Pluggable SUBDIR += p5-POE-Component-RSS SUBDIR += p5-POE-Component-RSSAggregator SUBDIR += p5-POE-Component-Schedule SUBDIR += p5-POE-Component-Server-XMLRPC SUBDIR += p5-POE-Component-Syndicator SUBDIR += p5-POE-Component-TSTP SUBDIR += p5-POE-Devel-Profiler SUBDIR += p5-POE-Loop-AnyEvent SUBDIR += p5-POE-Loop-Glib SUBDIR += p5-POE-Loop-Tk SUBDIR += p5-POE-Quickie SUBDIR += p5-POE-Session-MultiDispatch SUBDIR += p5-POE-Stage SUBDIR += p5-POE-Test-Loops SUBDIR += p5-POE-XS-Loop-Poll SUBDIR += p5-POE-XS-Queue-Array SUBDIR += p5-POEx-Role-SessionInstantiation SUBDIR += p5-POEx-Role-Streaming SUBDIR += p5-POEx-Types SUBDIR += p5-POSIX-strftime-Compiler SUBDIR += p5-POSIX-strptime SUBDIR += p5-PPR SUBDIR += p5-PPerl SUBDIR += p5-PV SUBDIR += p5-Package-Constants SUBDIR += p5-Package-DeprecationManager SUBDIR += p5-Package-Generator SUBDIR += p5-Package-MoreUtil SUBDIR += p5-Package-Stash SUBDIR += p5-Package-Stash-XS SUBDIR += p5-Package-Util-Lite SUBDIR += p5-Package-Variant SUBDIR += p5-PadWalker SUBDIR += p5-Parallel-Async SUBDIR += p5-Parallel-Fork-BossWorker SUBDIR += p5-Parallel-ForkManager SUBDIR += p5-Parallel-Iterator SUBDIR += p5-Parallel-Prefork SUBDIR += p5-Parallel-Scoreboard SUBDIR += p5-Params-CallbackRequest SUBDIR += p5-Params-Check SUBDIR += p5-Params-Classify SUBDIR += p5-Params-Coerce SUBDIR += p5-Params-Util SUBDIR += p5-Params-Validate SUBDIR += p5-Params-Validate-Dependencies SUBDIR += p5-Params-ValidationCompiler SUBDIR += p5-Paranoid SUBDIR += p5-Paranoid-Log-Email SUBDIR += p5-Paranoid-Log-Syslog SUBDIR += p5-Parse-CPAN-Packages SUBDIR += p5-Parse-CPAN-Packages-Fast SUBDIR += p5-Parse-Distname SUBDIR += p5-Parse-ErrorString-Perl SUBDIR += p5-Parse-ExuberantCTags SUBDIR += p5-Parse-LocalDistribution SUBDIR += p5-Parse-Method-Signatures SUBDIR += p5-Parse-PMFile SUBDIR += p5-Parse-PerlConfig SUBDIR += p5-Parse-PlainConfig SUBDIR += p5-Parse-RecDescent SUBDIR += p5-Parse-VarName SUBDIR += p5-Parse-Win32Registry SUBDIR += p5-Parse-Yapp SUBDIR += p5-ParseLex SUBDIR += p5-ParseTemplate SUBDIR += p5-Parser-MGC SUBDIR += p5-PatchReader SUBDIR += p5-Path-Abstract SUBDIR += p5-Path-Class SUBDIR += p5-Path-Class-File-Lockable SUBDIR += p5-Path-Dispatcher SUBDIR += p5-Path-Dispatcher-Declarative SUBDIR += p5-Path-Extended SUBDIR += p5-Path-FindDev SUBDIR += p5-Path-IsDev SUBDIR += p5-Path-Iterator-Rule SUBDIR += p5-Path-Resource SUBDIR += p5-Path-Tiny SUBDIR += p5-PathTools SUBDIR += p5-Paws SUBDIR += p5-Pegex SUBDIR += p5-Perl-Critic-Deprecated SUBDIR += p5-Perl-Metrics-Lite SUBDIR += p5-Perl-Metrics-Simple SUBDIR += p5-Perl-OSType SUBDIR += p5-Perl-PrereqScanner SUBDIR += p5-Perl-PrereqScanner-Lite SUBDIR += p5-Perl-PrereqScanner-NotQuiteLite SUBDIR += p5-Perl-Tidy SUBDIR += p5-Perl-Unsafe-Signals SUBDIR += p5-Perl-Version SUBDIR += p5-Perl-osnames SUBDIR += p5-Perl4-CoreLibs SUBDIR += p5-Perl6-Builtins SUBDIR += p5-Perl6-Export SUBDIR += p5-Perl6-Export-Attrs SUBDIR += p5-Perl6-Form SUBDIR += p5-Perl6-Junction SUBDIR += p5-Perl6-Rules SUBDIR += p5-Perl6-Say SUBDIR += p5-Perl6-Slurp SUBDIR += p5-PerlIO-Layers SUBDIR += p5-PerlIO-Util SUBDIR += p5-PerlIO-eol SUBDIR += p5-PerlIO-locale SUBDIR += p5-PerlIO-utf8_strict SUBDIR += p5-PerlIO-via-MD5 SUBDIR += p5-PerlIO-via-Timeout SUBDIR += p5-PerlIO-via-dynamic SUBDIR += p5-PerlIO-via-symlink SUBDIR += p5-PerlX-Maybe SUBDIR += p5-PerlX-Maybe-XS SUBDIR += p5-Pid-File-Flock SUBDIR += p5-Pipeline SUBDIR += p5-Pithub SUBDIR += p5-PkgConfig SUBDIR += p5-PkgConfig-LibPkgConf SUBDIR += p5-Pod-Coverage SUBDIR += p5-Pod-Coverage-Moose SUBDIR += p5-Pod-Coverage-TrustPod SUBDIR += p5-Pod-Tests SUBDIR += p5-Pod-Usage SUBDIR += p5-Pragmatic SUBDIR += p5-Proc-BackOff SUBDIR += p5-Proc-Background SUBDIR += p5-Proc-Daemon SUBDIR += p5-Proc-FastSpawn SUBDIR += p5-Proc-Find-Parents SUBDIR += p5-Proc-Fork SUBDIR += p5-Proc-Guard SUBDIR += p5-Proc-PID-File SUBDIR += p5-Proc-Pidfile SUBDIR += p5-Proc-ProcessTable SUBDIR += p5-Proc-Queue SUBDIR += p5-Proc-Reliable SUBDIR += p5-Proc-SafeExec SUBDIR += p5-Proc-Simple SUBDIR += p5-Proc-Wait3 SUBDIR += p5-Proc-WaitStat SUBDIR += p5-Process-Status SUBDIR += p5-Progress-Any SUBDIR += p5-Project-Gantt SUBDIR += p5-Project-Libs SUBDIR += p5-Pthread-GetThreadId SUBDIR += p5-Qudo SUBDIR += p5-RPSL-Parser SUBDIR += p5-RRDTool-OO SUBDIR += p5-Rcs SUBDIR += p5-Rcs-Agent SUBDIR += p5-Readonly SUBDIR += p5-Readonly-XS SUBDIR += p5-ReadonlyX SUBDIR += p5-Reaper SUBDIR += p5-Ref-Util SUBDIR += p5-Ref-Util-XS SUBDIR += p5-Reflex SUBDIR += p5-Regexp-Assemble SUBDIR += p5-Regexp-Assemble-Compressed SUBDIR += p5-Regexp-Bind SUBDIR += p5-Regexp-Compare SUBDIR += p5-Regexp-Grammars SUBDIR += p5-Regexp-Lexer SUBDIR += p5-Regexp-Pattern-Perl SUBDIR += p5-Regexp-RegGrp SUBDIR += p5-Regexp-Shellish SUBDIR += p5-Regexp-Stringify SUBDIR += p5-Regexp-Subst-Parallel SUBDIR += p5-Regexp-Trie SUBDIR += p5-Religion SUBDIR += p5-Reply SUBDIR += p5-ResourcePool SUBDIR += p5-Resources SUBDIR += p5-Return-MultiLevel SUBDIR += p5-Return-Type SUBDIR += p5-Return-Value SUBDIR += p5-Rinci SUBDIR += p5-Role-Basic SUBDIR += p5-Role-HasMessage SUBDIR += p5-Role-Hooks SUBDIR += p5-Role-Identifiable SUBDIR += p5-Role-Tiny SUBDIR += p5-Rose-DateTime SUBDIR += p5-Rose-Object SUBDIR += p5-Router-R3 SUBDIR += p5-Routes-Tiny SUBDIR += p5-RunApp SUBDIR += p5-SDL SUBDIR += p5-SNMP-Persist SUBDIR += p5-SOAP-WSDL SUBDIR += p5-SPOPS SUBDIR += p5-SSN-Validate SUBDIR += p5-SUPER SUBDIR += p5-SVN-ACL SUBDIR += p5-SVN-Access SUBDIR += p5-SVN-Agent SUBDIR += p5-SVN-Dump SUBDIR += p5-SVN-Dumpfile SUBDIR += p5-SVN-Hook SUBDIR += p5-SVN-Hooks SUBDIR += p5-SVN-Log SUBDIR += p5-SVN-Look SUBDIR += p5-SVN-Mirror SUBDIR += p5-SVN-Notify SUBDIR += p5-SVN-Notify-Config SUBDIR += p5-SVN-Notify-Filter-AuthZMail SUBDIR += p5-SVN-Notify-Filter-EmailFlatFileDB SUBDIR += p5-SVN-Notify-Filter-Markdown SUBDIR += p5-SVN-Notify-Filter-Watchers SUBDIR += p5-SVN-Notify-Mirror SUBDIR += p5-SVN-Notify-Snapshot SUBDIR += p5-SVN-S4 SUBDIR += p5-SVN-Simple SUBDIR += p5-SVN-Statistics SUBDIR += p5-SVN-Web SUBDIR += p5-Safe-Isa SUBDIR += p5-Sah SUBDIR += p5-Scalar-Defer SUBDIR += p5-Scalar-Does SUBDIR += p5-Scalar-Listify SUBDIR += p5-Scalar-String SUBDIR += p5-Scalar-Util-LooksLikeNumber SUBDIR += p5-Scalar-Util-Numeric SUBDIR += p5-Scope-Container SUBDIR += p5-Scope-Guard SUBDIR += p5-Scope-Upper SUBDIR += p5-Script-isAperlScript SUBDIR += p5-Sentinel SUBDIR += p5-Sepia SUBDIR += p5-Set-Array SUBDIR += p5-Set-ConsistentHash SUBDIR += p5-Set-Crontab SUBDIR += p5-Set-CrossProduct SUBDIR += p5-Set-Infinite SUBDIR += p5-Set-NestedGroups SUBDIR += p5-Set-Object SUBDIR += p5-Set-Scalar SUBDIR += p5-Set-Tiny SUBDIR += p5-Shell-Base SUBDIR += p5-Shell-Config-Generate SUBDIR += p5-Shell-EnvImporter SUBDIR += p5-Shell-GetEnv SUBDIR += p5-Shell-Guess SUBDIR += p5-Shell-Parser SUBDIR += p5-Shell-Source SUBDIR += p5-ShipIt SUBDIR += p5-ShipIt-Step-Manifest SUBDIR += p5-Signal-Mask SUBDIR += p5-Slurp SUBDIR += p5-Smart-Comments SUBDIR += p5-Sort-Array SUBDIR += p5-Sort-ArrayOfArrays SUBDIR += p5-Sort-Key SUBDIR += p5-Sort-Key-DateTime SUBDIR += p5-Sort-Key-Top SUBDIR += p5-Sort-Maker SUBDIR += p5-Sort-Sub SUBDIR += p5-Sort-Tree SUBDIR += p5-Sort-Versions SUBDIR += p5-Specio SUBDIR += p5-Spiffy SUBDIR += p5-Spoon SUBDIR += p5-Storable SUBDIR += p5-Stream SUBDIR += p5-Stream-Buffered SUBDIR += p5-Stream-Reader SUBDIR += p5-String-Approx SUBDIR += p5-String-CRC32 SUBDIR += p5-String-Checker SUBDIR += p5-String-Diff SUBDIR += p5-String-Dump SUBDIR += p5-String-Ediff SUBDIR += p5-String-Errf SUBDIR += p5-String-Formatter SUBDIR += p5-String-Interpolate-Named SUBDIR += p5-String-LRC SUBDIR += p5-String-Parity SUBDIR += p5-String-Random SUBDIR += p5-String-RexxParse SUBDIR += p5-String-Similarity SUBDIR += p5-String-TT SUBDIR += p5-Struct-Dumb SUBDIR += p5-Sub-Alias SUBDIR += p5-Sub-Current SUBDIR += p5-Sub-Delete SUBDIR += p5-Sub-Exporter SUBDIR += p5-Sub-Exporter-ForMethods SUBDIR += p5-Sub-Exporter-GlobExporter SUBDIR += p5-Sub-Exporter-Lexical SUBDIR += p5-Sub-Exporter-Progressive SUBDIR += p5-Sub-HandlesVia SUBDIR += p5-Sub-Identify SUBDIR += p5-Sub-Infix SUBDIR += p5-Sub-Info SUBDIR += p5-Sub-Install SUBDIR += p5-Sub-Installer SUBDIR += p5-Sub-Multi SUBDIR += p5-Sub-Name SUBDIR += p5-Sub-Override SUBDIR += p5-Sub-Prototype SUBDIR += p5-Sub-Quote SUBDIR += p5-Sub-Signatures SUBDIR += p5-Sub-Uplevel SUBDIR += p5-Sub-WrapPackages SUBDIR += p5-Symbol-Get SUBDIR += p5-Symbol-Global-Name SUBDIR += p5-Symbol-Util SUBDIR += p5-Syntax-Keyword-Dynamically SUBDIR += p5-Syntax-Keyword-Gather SUBDIR += p5-Syntax-Keyword-Junction SUBDIR += p5-Syntax-Keyword-Match SUBDIR += p5-Syntax-Keyword-Try SUBDIR += p5-Sys-CPU SUBDIR += p5-Sys-Info SUBDIR += p5-Sys-Info-Base SUBDIR += p5-Sys-Info-Driver-BSD SUBDIR += p5-Sys-MemInfo SUBDIR += p5-Sys-Mmap SUBDIR += p5-Sys-RunAlone SUBDIR += p5-Sys-RunAlways SUBDIR += p5-Sys-Sendfile SUBDIR += p5-Sys-Sendfile-FreeBSD SUBDIR += p5-Sys-Sig SUBDIR += p5-Sys-SigAction SUBDIR += p5-Sys-Syscall SUBDIR += p5-Sys-Trace SUBDIR += p5-Sys-Virt SUBDIR += p5-System-Command SUBDIR += p5-System-Info SUBDIR += p5-System-Sub SUBDIR += p5-System2 SUBDIR += p5-TAP-Formatter-JUnit SUBDIR += p5-TAP-Harness-JUnit SUBDIR += p5-TAP-SimpleOutput SUBDIR += p5-Taint-Runtime SUBDIR += p5-Taint-Util SUBDIR += p5-Task-Tiny SUBDIR += p5-Task-Weaken SUBDIR += p5-Tee SUBDIR += p5-Template-Provider-Encode SUBDIR += p5-Term-ANSIColor SUBDIR += p5-Term-ANSIScreen SUBDIR += p5-Term-Animation SUBDIR += p5-Term-App-Roles SUBDIR += p5-Term-App-Util-Color SUBDIR += p5-Term-App-Util-Interactive SUBDIR += p5-Term-App-Util-Size SUBDIR += p5-Term-CallEditor SUBDIR += p5-Term-Choose SUBDIR += p5-Term-Choose-Util SUBDIR += p5-Term-Clui SUBDIR += p5-Term-Detect-Software SUBDIR += p5-Term-EditLine SUBDIR += p5-Term-Encoding SUBDIR += p5-Term-Form SUBDIR += p5-Term-Menus SUBDIR += p5-Term-ProgressBar SUBDIR += p5-Term-ProgressBar-Quiet SUBDIR += p5-Term-ProgressBar-Simple SUBDIR += p5-Term-Prompt SUBDIR += p5-Term-Query SUBDIR += p5-Term-RawInput SUBDIR += p5-Term-ReadKey SUBDIR += p5-Term-ReadLine SUBDIR += p5-Term-ReadLine-Gnu SUBDIR += p5-Term-ReadLine-Perl SUBDIR += p5-Term-ReadLine-TTYtter SUBDIR += p5-Term-ReadLine-Zoid SUBDIR += p5-Term-ReadPassword SUBDIR += p5-Term-Screen SUBDIR += p5-Term-ScreenColor SUBDIR += p5-Term-Shell SUBDIR += p5-Term-Size SUBDIR += p5-Term-Size-Any SUBDIR += p5-Term-Size-Perl SUBDIR += p5-Term-Sk SUBDIR += p5-Term-Table SUBDIR += p5-Term-TablePrint SUBDIR += p5-Term-Title SUBDIR += p5-Term-UI SUBDIR += p5-Term-VT102 SUBDIR += p5-Term-VT102-Boundless SUBDIR += p5-Term-Visual SUBDIR += p5-Test-API SUBDIR += p5-Test-Able SUBDIR += p5-Test-Able-Runner SUBDIR += p5-Test-Aggregate SUBDIR += p5-Test-Assertions SUBDIR += p5-Test-Auto SUBDIR += p5-Test-Base SUBDIR += p5-Test-Benchmark SUBDIR += p5-Test-BinaryData SUBDIR += p5-Test-Bits SUBDIR += p5-Test-CPAN-Meta SUBDIR += p5-Test-CPAN-Meta-YAML SUBDIR += p5-Test-CheckDeps SUBDIR += p5-Test-CheckManifest SUBDIR += p5-Test-Class SUBDIR += p5-Test-Class-Most SUBDIR += p5-Test-ClassAPI SUBDIR += p5-Test-Classy SUBDIR += p5-Test-CleanNamespaces SUBDIR += p5-Test-Cmd SUBDIR += p5-Test-Command SUBDIR += p5-Test-Command-Simple SUBDIR += p5-Test-Compile SUBDIR += p5-Test-DBIC-ExpectedQueries SUBDIR += p5-Test-DBIx-Class SUBDIR += p5-Test-Data SUBDIR += p5-Test-Debugger SUBDIR += p5-Test-Declare SUBDIR += p5-Test-Deep SUBDIR += p5-Test-Deep-UnorderedPairs SUBDIR += p5-Test-Dependencies SUBDIR += p5-Test-DependentModules SUBDIR += p5-Test-DiagINC SUBDIR += p5-Test-Differences SUBDIR += p5-Test-Distribution SUBDIR += p5-Test-EOL SUBDIR += p5-Test-Exception SUBDIR += p5-Test-Exit SUBDIR += p5-Test-Expect SUBDIR += p5-Test-FailWarnings SUBDIR += p5-Test-Fake-HTTPD SUBDIR += p5-Test-Fatal SUBDIR += p5-Test-File SUBDIR += p5-Test-File-Contents SUBDIR += p5-Test-File-ShareDir SUBDIR += p5-Test-Filename SUBDIR += p5-Test-Fixme SUBDIR += p5-Test-Fixture-DBIC-Schema SUBDIR += p5-Test-Group SUBDIR += p5-Test-HTML-Tidy SUBDIR += p5-Test-Harness SUBDIR += p5-Test-Harness-Straps SUBDIR += p5-Test-HasVersion SUBDIR += p5-Test-HexDifferences SUBDIR += p5-Test-HexString SUBDIR += p5-Test-Identity SUBDIR += p5-Test-If SUBDIR += p5-Test-InDistDir SUBDIR += p5-Test-Inline SUBDIR += p5-Test-Inter SUBDIR += p5-Test-JSON SUBDIR += p5-Test-Kwalitee SUBDIR += p5-Test-Lazy SUBDIR += p5-Test-LeakTrace SUBDIR += p5-Test-LectroTest SUBDIR += p5-Test-LoadAllModules SUBDIR += p5-Test-Log-Log4perl SUBDIR += p5-Test-Log4perl SUBDIR += p5-Test-LongString SUBDIR += p5-Test-Manifest SUBDIR += p5-Test-ManyParams SUBDIR += p5-Test-Memory-Cycle SUBDIR += p5-Test-Metrics-Any SUBDIR += p5-Test-Mini SUBDIR += p5-Test-Mini-Unit SUBDIR += p5-Test-Mock-Guard SUBDIR += p5-Test-Mock-LWP SUBDIR += p5-Test-Mock-LWP-Dispatch SUBDIR += p5-Test-Mock-Redis SUBDIR += p5-Test-MockDateTime SUBDIR += p5-Test-MockModule SUBDIR += p5-Test-MockObject SUBDIR += p5-Test-MockRandom SUBDIR += p5-Test-MockTime SUBDIR += p5-Test-MockTime-HiRes SUBDIR += p5-Test-Modern SUBDIR += p5-Test-Module-Used SUBDIR += p5-Test-Moose-More SUBDIR += p5-Test-More-UTF8 SUBDIR += p5-Test-Most SUBDIR += p5-Test-Name-FromLine SUBDIR += p5-Test-Needs SUBDIR += p5-Test-Net-LDAP SUBDIR += p5-Test-Net-RabbitMQ SUBDIR += p5-Test-NoTabs SUBDIR += p5-Test-NoWarnings SUBDIR += p5-Test-Number-Delta SUBDIR += p5-Test-Object SUBDIR += p5-Test-OpenLDAP SUBDIR += p5-Test-Output SUBDIR += p5-Test-POE-Client-TCP SUBDIR += p5-Test-POE-Server-TCP SUBDIR += p5-Test-Parser SUBDIR += p5-Test-PerlTidy SUBDIR += p5-Test-Pod SUBDIR += p5-Test-Pod-Coverage SUBDIR += p5-Test-Pod-Coverage-Permissive SUBDIR += p5-Test-Portability-Files SUBDIR += p5-Test-Prereq SUBDIR += p5-Test-RandomResults SUBDIR += p5-Test-Refcount SUBDIR += p5-Test-Reporter SUBDIR += p5-Test-Reporter-Transport-Metabase SUBDIR += p5-Test-Requires SUBDIR += p5-Test-Requires-Git SUBDIR += p5-Test-RequiresInternet SUBDIR += p5-Test-Roo SUBDIR += p5-Test-Script SUBDIR += p5-Test-Script-Run SUBDIR += p5-Test-SharedFork SUBDIR += p5-Test-Signature SUBDIR += p5-Test-Simple SUBDIR += p5-Test-Singleton SUBDIR += p5-Test-Snapshot SUBDIR += p5-Test-Spec SUBDIR += p5-Test-Spelling SUBDIR += p5-Test-Strict SUBDIR += p5-Test-SubCalls SUBDIR += p5-Test-Synopsis SUBDIR += p5-Test-Sys-Info SUBDIR += p5-Test-TAP-HTMLMatrix SUBDIR += p5-Test-TAP-Model SUBDIR += p5-Test-TCP SUBDIR += p5-Test-TableDriven SUBDIR += p5-Test-Taint SUBDIR += p5-Test-TempDir-Tiny SUBDIR += p5-Test-Time SUBDIR += p5-Test-Timer SUBDIR += p5-Test-TinyMocker SUBDIR += p5-Test-TrailingSpace SUBDIR += p5-Test-Trap SUBDIR += p5-Test-UNIXSock SUBDIR += p5-Test-Unit SUBDIR += p5-Test-UseAllModules SUBDIR += p5-Test-Version SUBDIR += p5-Test-WWW-Declare SUBDIR += p5-Test-WWW-Mechanize SUBDIR += p5-Test-WWW-Mechanize-CGI SUBDIR += p5-Test-WWW-Mechanize-CGIApp SUBDIR += p5-Test-WWW-Mechanize-Catalyst SUBDIR += p5-Test-WWW-Mechanize-PSGI SUBDIR += p5-Test-WWW-Selenium SUBDIR += p5-Test-Warn SUBDIR += p5-Test-Warnings SUBDIR += p5-Test-Weaken SUBDIR += p5-Test-Without-Module SUBDIR += p5-Test-XML SUBDIR += p5-Test-XML-Valid SUBDIR += p5-Test-YAML SUBDIR += p5-Test-YAML-Meta SUBDIR += p5-Test-YAML-Valid SUBDIR += p5-Test-utf8 SUBDIR += p5-Test2-Harness SUBDIR += p5-Test2-Harness-UI SUBDIR += p5-Test2-Plugin-Cover SUBDIR += p5-Test2-Plugin-DBIProfile SUBDIR += p5-Test2-Plugin-IOEvents SUBDIR += p5-Test2-Plugin-MemUsage SUBDIR += p5-Test2-Plugin-NoWarnings SUBDIR += p5-Test2-Plugin-UUID SUBDIR += p5-Test2-Suite SUBDIR += p5-Test2-Tools-Explain SUBDIR += p5-Text-Levenshtein SUBDIR += p5-Text-Levenshtein-Damerau SUBDIR += p5-Text-LevenshteinXS SUBDIR += p5-Text-Outdent SUBDIR += p5-Text-vFile-asData SUBDIR += p5-TheSchwartz SUBDIR += p5-TheSchwartz-Simple SUBDIR += p5-TheSchwartz-Worker-SendEmail SUBDIR += p5-Thread-Apartment SUBDIR += p5-Thread-Cancel SUBDIR += p5-Thread-Pool-Simple SUBDIR += p5-Thread-Queue SUBDIR += p5-Thread-Queue-Duplex SUBDIR += p5-Thread-Suspend SUBDIR += p5-Thrift SUBDIR += p5-Thrift-XS SUBDIR += p5-Throwable SUBDIR += p5-Tickit SUBDIR += p5-Tickit-Widget-Table SUBDIR += p5-Tickit-Widgets SUBDIR += p5-Tie-Array-Pack SUBDIR += p5-Tie-Array-Sorted SUBDIR += p5-Tie-CPHash SUBDIR += p5-Tie-Cache SUBDIR += p5-Tie-DB_File-SplitHash SUBDIR += p5-Tie-DB_FileLock SUBDIR += p5-Tie-File SUBDIR += p5-Tie-File-AsHash SUBDIR += p5-Tie-FileLRUCache SUBDIR += p5-Tie-Function SUBDIR += p5-Tie-Hash-Indexed SUBDIR += p5-Tie-Hash-MultiValue SUBDIR += p5-Tie-Hash-Regex SUBDIR += p5-Tie-Hash-Sorted SUBDIR += p5-Tie-Hash-TwoWay SUBDIR += p5-Tie-IxHash SUBDIR += p5-Tie-LLHash SUBDIR += p5-Tie-RefHash SUBDIR += p5-Tie-RefHash-Weak SUBDIR += p5-Tie-RegexpHash SUBDIR += p5-Tie-Restore SUBDIR += p5-Tie-ShareLite SUBDIR += p5-Tie-Simple SUBDIR += p5-Tie-ToObject SUBDIR += p5-Tie-Util SUBDIR += p5-Tie-iCal SUBDIR += p5-Time-Clock SUBDIR += p5-Time-Crontab SUBDIR += p5-Time-Duration SUBDIR += p5-Time-Duration-Parse SUBDIR += p5-Time-Elapsed SUBDIR += p5-Time-Format SUBDIR += p5-Time-HiRes SUBDIR += p5-Time-Interval SUBDIR += p5-Time-Local SUBDIR += p5-Time-Mock SUBDIR += p5-Time-Moment SUBDIR += p5-Time-Moment-Role-TimeZone SUBDIR += p5-Time-Object SUBDIR += p5-Time-Out SUBDIR += p5-Time-ParseDate SUBDIR += p5-Time-Period SUBDIR += p5-Time-Piece SUBDIR += p5-Time-Piece-Range SUBDIR += p5-Time-Progress SUBDIR += p5-Time-Stopwatch SUBDIR += p5-Time-Warp SUBDIR += p5-Time-modules SUBDIR += p5-Time-timegm SUBDIR += p5-TimeDate SUBDIR += p5-ToolSet SUBDIR += p5-TraceFuncs SUBDIR += p5-Tree-Binary SUBDIR += p5-Tree-Binary-Dictionary SUBDIR += p5-Tree-DAG_Node SUBDIR += p5-Tree-Node SUBDIR += p5-Tree-Parser SUBDIR += p5-Tree-R SUBDIR += p5-Tree-RedBlack SUBDIR += p5-Tree-Simple SUBDIR += p5-Tree-Simple-View SUBDIR += p5-Tree-Simple-VisitorFactory SUBDIR += p5-Tree-Trie SUBDIR += p5-Type-Tie SUBDIR += p5-Type-Tiny SUBDIR += p5-Type-Tiny-Signatures SUBDIR += p5-Type-Tiny-XS SUBDIR += p5-Types-Core SUBDIR += p5-Types-Path-Tiny SUBDIR += p5-Types-Serialiser SUBDIR += p5-Types-URI SUBDIR += p5-Types-UUID SUBDIR += p5-UDCode SUBDIR += p5-UI-Dialog SUBDIR += p5-UNIVERSAL-can SUBDIR += p5-UNIVERSAL-isa SUBDIR += p5-UNIVERSAL-moniker SUBDIR += p5-UNIVERSAL-ref SUBDIR += p5-UNIVERSAL-require SUBDIR += p5-UNIVERSAL-which SUBDIR += p5-UUID SUBDIR += p5-UUID-Random SUBDIR += p5-UUID-Random-Patch-UseMRS SUBDIR += p5-UUID-Tiny SUBDIR += p5-UUID-URandom SUBDIR += p5-Uniq SUBDIR += p5-Unix-Groups SUBDIR += p5-Unix-Groups-FFI SUBDIR += p5-Unix-Statgrab SUBDIR += p5-Unix-Uptime SUBDIR += p5-User-Identity SUBDIR += p5-Util-Any SUBDIR += p5-VCP-Dest-svk SUBDIR += p5-VCP-Source-cvsbk SUBDIR += p5-VCP-autrijus SUBDIR += p5-VCS SUBDIR += p5-VCS-CVS SUBDIR += p5-VCS-Lite SUBDIR += p5-Validation-Class SUBDIR += p5-Variable-Disposition SUBDIR += p5-Variable-Eject SUBDIR += p5-Variable-Magic SUBDIR += p5-Want SUBDIR += p5-WeakRef SUBDIR += p5-Workflow SUBDIR += p5-X-Tiny SUBDIR += p5-XML-Compile-Tester SUBDIR += p5-XML-Pastor SUBDIR += p5-XS-Object-Magic SUBDIR += p5-XS-Parse-Keyword SUBDIR += p5-XS-Parse-Sublike SUBDIR += p5-XSLoader SUBDIR += p5-XXX SUBDIR += p5-Xporter SUBDIR += p5-YAML-AppConfig SUBDIR += p5-Yada-Yada-Yada SUBDIR += p5-ZML SUBDIR += p5-accessors SUBDIR += p5-accessors-fast SUBDIR += p5-alias-module SUBDIR += p5-aliased SUBDIR += p5-asa SUBDIR += p5-autobox SUBDIR += p5-autobox-Core SUBDIR += p5-autobox-Transform SUBDIR += p5-autodie SUBDIR += p5-autovivification SUBDIR += p5-bareword-filehandles SUBDIR += p5-boolean SUBDIR += p5-capitalization SUBDIR += p5-carton SUBDIR += p5-common-sense SUBDIR += p5-constant SUBDIR += p5-constant-boolean SUBDIR += p5-constant-def SUBDIR += p5-constant-defer SUBDIR += p5-constant-lexical SUBDIR += p5-cpan-listchanges SUBDIR += p5-curry SUBDIR += p5-enum SUBDIR += p5-ex-lib SUBDIR += p5-experimental SUBDIR += p5-forks SUBDIR += p5-github_creator SUBDIR += p5-goto-file SUBDIR += p5-iCal-Parser SUBDIR += p5-indirect SUBDIR += p5-interface SUBDIR += p5-latest SUBDIR += p5-lexical-underscore SUBDIR += p5-lib-abs SUBDIR += p5-libalarm SUBDIR += p5-libxml-enno SUBDIR += p5-local-lib SUBDIR += p5-match-simple SUBDIR += p5-mem SUBDIR += p5-mixin SUBDIR += p5-mocked SUBDIR += p5-multidimensional SUBDIR += p5-namespace-autoclean SUBDIR += p5-namespace-clean SUBDIR += p5-namespace-clean-xs SUBDIR += p5-namespace-sweep SUBDIR += p5-orz SUBDIR += p5-parent SUBDIR += p5-pip SUBDIR += p5-prefork SUBDIR += p5-relative SUBDIR += p5-routines SUBDIR += p5-self SUBDIR += p5-self-init SUBDIR += p5-strictures SUBDIR += p5-subatom SUBDIR += p5-subversion SUBDIR += p5-superclass SUBDIR += p5-syntax SUBDIR += p5-threads SUBDIR += p5-threads-shared SUBDIR += p5-true SUBDIR += p5-uni-perl SUBDIR += p5-version SUBDIR += p8-platform SUBDIR += packr SUBDIR += paexec SUBDIR += pam_wrapper SUBDIR += papi SUBDIR += papilio-loader SUBDIR += parallel-hashmap SUBDIR += pas2dox SUBDIR += pasm SUBDIR += patch SUBDIR += pcc-libs SUBDIR += pcg-cpp SUBDIR += pcl SUBDIR += pcre SUBDIR += pcre++ SUBDIR += pcre2 SUBDIR += pcsc-lite SUBDIR += pdcurses SUBDIR += pear SUBDIR += pear-Config SUBDIR += pear-Console_Color SUBDIR += pear-Console_CommandLine SUBDIR += pear-Console_Getargs SUBDIR += pear-Console_Table SUBDIR += pear-Date SUBDIR += pear-Date_Holidays SUBDIR += pear-Date_Holidays_Austria SUBDIR += pear-Date_Holidays_Brazil SUBDIR += pear-Date_Holidays_Denmark SUBDIR += pear-Date_Holidays_Discordian SUBDIR += pear-Date_Holidays_EnglandWales SUBDIR += pear-Date_Holidays_Germany SUBDIR += pear-Date_Holidays_Iceland SUBDIR += pear-Date_Holidays_Ireland SUBDIR += pear-Date_Holidays_Italy SUBDIR += pear-Date_Holidays_Japan SUBDIR += pear-Date_Holidays_Netherlands SUBDIR += pear-Date_Holidays_Norway SUBDIR += pear-Date_Holidays_PHPdotNet SUBDIR += pear-Date_Holidays_Romania SUBDIR += pear-Date_Holidays_Slovenia SUBDIR += pear-Date_Holidays_Sweden SUBDIR += pear-Date_Holidays_UNO SUBDIR += pear-Date_Holidays_USA SUBDIR += pear-Date_Holidays_Ukraine SUBDIR += pear-Event_Dispatcher SUBDIR += pear-FSM SUBDIR += pear-File_Iterator SUBDIR += pear-HTML_BBCodeParser SUBDIR += pear-HTML_CSS SUBDIR += pear-HTML_Common SUBDIR += pear-HTML_Common2 SUBDIR += pear-HTML_Form SUBDIR += pear-HTML_Javascript SUBDIR += pear-HTML_Page2 SUBDIR += pear-HTML_QuickForm SUBDIR += pear-HTML_QuickForm2 SUBDIR += pear-HTML_QuickForm_Controller SUBDIR += pear-HTML_QuickForm_Livesearch SUBDIR += pear-HTML_QuickForm_Renderer_Tableless SUBDIR += pear-HTML_QuickForm_SelectFilter SUBDIR += pear-HTML_QuickForm_advmultiselect SUBDIR += pear-HTML_Select SUBDIR += pear-HTML_Select_Common SUBDIR += pear-HTML_Table SUBDIR += pear-HTML_Template_Flexy SUBDIR += pear-HTML_Template_IT SUBDIR += pear-HTML_Template_PHPLIB SUBDIR += pear-HTML_Template_Sigma SUBDIR += pear-HTML_TreeMenu SUBDIR += pear-Horde_Alarm SUBDIR += pear-Horde_Argv SUBDIR += pear-Horde_Autoloader SUBDIR += pear-Horde_Autoloader_Cache SUBDIR += pear-Horde_Cache SUBDIR += pear-Horde_Cli SUBDIR += pear-Horde_Constraint SUBDIR += pear-Horde_Controller SUBDIR += pear-Horde_Core SUBDIR += pear-Horde_Data SUBDIR += pear-Horde_Date SUBDIR += pear-Horde_Date_Parser SUBDIR += pear-Horde_Exception SUBDIR += pear-Horde_History SUBDIR += pear-Horde_Icalendar SUBDIR += pear-Horde_Injector SUBDIR += pear-Horde_Itip SUBDIR += pear-Horde_Lock SUBDIR += pear-Horde_LoginTasks SUBDIR += pear-Horde_Nls SUBDIR += pear-Horde_Notification SUBDIR += pear-Horde_Prefs SUBDIR += pear-Horde_Queue SUBDIR += pear-Horde_Rdo SUBDIR += pear-Horde_Role SUBDIR += pear-Horde_Scheduler SUBDIR += pear-Horde_Serialize SUBDIR += pear-Horde_Stream SUBDIR += pear-Horde_Stream_Filter SUBDIR += pear-Horde_Stream_Wrapper SUBDIR += pear-Horde_Support SUBDIR += pear-Horde_Thrift SUBDIR += pear-Horde_Timezone SUBDIR += pear-Horde_Token SUBDIR += pear-Horde_Translation SUBDIR += pear-Horde_Tree SUBDIR += pear-Horde_Util SUBDIR += pear-Horde_View SUBDIR += pear-I18N SUBDIR += pear-Math_Fraction SUBDIR += pear-Net_Gearman SUBDIR += pear-OLE SUBDIR += pear-PEAR_Info SUBDIR += pear-PEAR_PackageFileManager SUBDIR += pear-PEAR_PackageFileManager2 SUBDIR += pear-PEAR_PackageFileManager_Plugins SUBDIR += pear-PHPTAL SUBDIR += pear-PHPUnit_MockObject SUBDIR += pear-PHP_ArrayOf SUBDIR += pear-PHP_Beautifier SUBDIR += pear-PHP_CodeCoverage SUBDIR += pear-PHP_CodeSniffer SUBDIR += pear-PHP_Compat SUBDIR += pear-PHP_CompatInfo SUBDIR += pear-PHP_Parser SUBDIR += pear-PHP_ParserGenerator SUBDIR += pear-PHP_Timer SUBDIR += pear-PHP_TokenStream SUBDIR += pear-PHP_UML SUBDIR += pear-Pager SUBDIR += pear-PhpDocumentor SUBDIR += pear-Pirum SUBDIR += pear-SebastianBergmann_FinderFacade SUBDIR += pear-SebastianBergmann_Git SUBDIR += pear-SebastianBergmann_PHPCPD SUBDIR += pear-SebastianBergmann_PHPLOC SUBDIR += pear-SebastianBergmann_Version SUBDIR += pear-Structure_LinkedList SUBDIR += pear-Structures_DataGrid SUBDIR += pear-Structures_DataGrid_Renderer_Console SUBDIR += pear-Structures_DataGrid_Renderer_HTMLSortForm SUBDIR += pear-Structures_DataGrid_Renderer_HTMLTable SUBDIR += pear-Structures_DataGrid_Renderer_XUL SUBDIR += pear-Symfony_Component_Console SUBDIR += pear-Symfony_Component_Finder SUBDIR += pear-System_Command SUBDIR += pear-Testing_Selenium SUBDIR += pear-Text_Diff SUBDIR += pear-TheSeer_DirectoryScanner SUBDIR += pear-TheSeer_fDOMDocument SUBDIR += pear-TheSeer_fXSL SUBDIR += pear-VFS SUBDIR += pear-Validate SUBDIR += pear-Validate_AU SUBDIR += pear-Validate_Finance SUBDIR += pear-Validate_Finance_CreditCard SUBDIR += pear-Validate_US SUBDIR += pear-Var_Dump SUBDIR += pear-VersionControl_Git SUBDIR += pear-VersionControl_SVN SUBDIR += pear-XML_NITF SUBDIR += pear-XML_Parser SUBDIR += pear-XML_RSS SUBDIR += pear-XML_SVG SUBDIR += pear-XML_Serializer SUBDIR += pear-XML_Transformer SUBDIR += pear-XML_Tree SUBDIR += pear-XML_Util SUBDIR += pear-channel-doctrine SUBDIR += pear-channel-ezc SUBDIR += pear-channel-geshi SUBDIR += pear-channel-horde SUBDIR += pear-channel-htmlpurifier.org SUBDIR += pear-channel-openpear SUBDIR += pear-channel-pdepend SUBDIR += pear-channel-phing SUBDIR += pear-channel-phpdoc SUBDIR += pear-channel-phpmd SUBDIR += pear-channel-pirum SUBDIR += pear-channel-symfony SUBDIR += pear-channel-symfony2 SUBDIR += pear-channel-theseer SUBDIR += pear-channel-twig SUBDIR += pear-codegen SUBDIR += pear-ezc_Base SUBDIR += pear-ezc_ConsoleTools SUBDIR += pear-geshi SUBDIR += pear-htmlpurifier SUBDIR += pear-pdepend-staticReflection SUBDIR += pear-phing SUBDIR += pecl-APCu SUBDIR += pecl-APCu_bc SUBDIR += pecl-ast SUBDIR += pecl-dio SUBDIR += pecl-ds SUBDIR += pecl-eio SUBDIR += pecl-ev SUBDIR += pecl-event SUBDIR += pecl-expect SUBDIR += pecl-grpc SUBDIR += pecl-hrtime SUBDIR += pecl-inotify SUBDIR += pecl-jsmin SUBDIR += pecl-json_post SUBDIR += pecl-jsond SUBDIR += pecl-msgpack SUBDIR += pecl-mustache SUBDIR += pecl-propro2 SUBDIR += pecl-protobuf SUBDIR += pecl-psr SUBDIR += pecl-raphf2 SUBDIR += pecl-runkit7 SUBDIR += pecl-swoole SUBDIR += pecl-sync SUBDIR += pecl-uploadprogress SUBDIR += pecl-uuid SUBDIR += pecl-uv SUBDIR += pecl-vld SUBDIR += pecl-xdebug SUBDIR += pecl-yac SUBDIR += pecl-yaconf SUBDIR += pecl-zookeeper SUBDIR += pegtl SUBDIR += pep8 SUBDIR += performance SUBDIR += perlconsole SUBDIR += phabricator SUBDIR += php-Psr_Log SUBDIR += php-composer SUBDIR += php-composer2 SUBDIR += php-geshi SUBDIR += php-ice37 SUBDIR += php-libawl SUBDIR += php-maxminddb SUBDIR += php74-ffi SUBDIR += php74-gettext SUBDIR += php74-intl SUBDIR += php74-json SUBDIR += php74-pcntl SUBDIR += php74-readline SUBDIR += php74-shmop SUBDIR += php74-sysvmsg SUBDIR += php74-sysvsem SUBDIR += php74-sysvshm SUBDIR += php74-tokenizer SUBDIR += php80-ffi SUBDIR += php80-gettext SUBDIR += php80-intl SUBDIR += php80-pcntl SUBDIR += php80-readline SUBDIR += php80-shmop SUBDIR += php80-sysvmsg SUBDIR += php80-sysvsem SUBDIR += php80-sysvshm SUBDIR += php80-tokenizer SUBDIR += php81-ffi SUBDIR += php81-gettext SUBDIR += php81-intl SUBDIR += php81-pcntl SUBDIR += php81-readline SUBDIR += php81-shmop SUBDIR += php81-sysvmsg SUBDIR += php81-sysvsem SUBDIR += php81-sysvshm SUBDIR += php81-tokenizer SUBDIR += php82-ffi SUBDIR += php82-gettext SUBDIR += php82-intl SUBDIR += php82-pcntl SUBDIR += php82-readline SUBDIR += php82-shmop SUBDIR += php82-sysvmsg SUBDIR += php82-sysvsem SUBDIR += php82-sysvshm SUBDIR += php82-tokenizer SUBDIR += phpunit6 SUBDIR += phpunit7 SUBDIR += phpunit8 SUBDIR += phpunit9 SUBDIR += physfs SUBDIR += pickle SUBDIR += picojson SUBDIR += picprog SUBDIR += pijul SUBDIR += pika SUBDIR += pipestatus SUBDIR += pire SUBDIR += pit SUBDIR += pkg-info.el SUBDIR += pkgconf SUBDIR += plan9port SUBDIR += plasma SUBDIR += plasma5-khotkeys SUBDIR += plasma5-kwrited SUBDIR += plasma5-plasma-sdk SUBDIR += please SUBDIR += pmccabe SUBDIR += pmd SUBDIR += pmdk SUBDIR += poco SUBDIR += popt SUBDIR += poxml SUBDIR += ppl SUBDIR += pprof SUBDIR += premake SUBDIR += premake4 SUBDIR += premake5 SUBDIR += projectcenter SUBDIR += protobuf SUBDIR += protobuf-c SUBDIR += protobuf-java SUBDIR += protobuf25 SUBDIR += prototool SUBDIR += protozero SUBDIR += pructl SUBDIR += psimd SUBDIR += pstreams SUBDIR += psvn SUBDIR += pth SUBDIR += pth-hard SUBDIR += pthreadpool SUBDIR += pthsem SUBDIR += ptlib SUBDIR += ptmalloc SUBDIR += ptmalloc2 SUBDIR += ptypes SUBDIR += publib SUBDIR += purescript-language-server SUBDIR += pushmi SUBDIR += py-Automat SUBDIR += py-BTrees SUBDIR += py-DateTime SUBDIR += py-Dumper SUBDIR += py-ExtensionClass SUBDIR += py-Faker SUBDIR += py-IBMQuantumExperience SUBDIR += py-Jinja2 SUBDIR += py-Jinja2-doc SUBDIR += py-Js2Py SUBDIR += py-PeachPy SUBDIR += py-Products.ExternalEditor SUBDIR += py-Products.PloneLanguageTool SUBDIR += py-PyExecJS SUBDIR += py-PyLD SUBDIR += py-PyUtilib SUBDIR += py-QtPy SUBDIR += py-RPyC SUBDIR += py-ZopeUndo SUBDIR += py-absl SUBDIR += py-absl-py SUBDIR += py-adb SUBDIR += py-addict SUBDIR += py-aenum SUBDIR += py-aioapns SUBDIR += py-aiocontextvars SUBDIR += py-aiofiles SUBDIR += py-aioice SUBDIR += py-aioitertools SUBDIR += py-aiologger SUBDIR += py-aiorpcX SUBDIR += py-aiortc SUBDIR += py-aiosignal SUBDIR += py-amalgamate SUBDIR += py-aniso8601 SUBDIR += py-aniso86016 SUBDIR += py-ansi SUBDIR += py-antlr4-python3-runtime SUBDIR += py-anyconfig SUBDIR += py-anyio SUBDIR += py-anyjson SUBDIR += py-anytree SUBDIR += py-apache_conf_parser SUBDIR += py-apipkg SUBDIR += py-apispec SUBDIR += py-appdirs SUBDIR += py-applicationinsights SUBDIR += py-apptools SUBDIR += py-apscheduler SUBDIR += py-archinfo SUBDIR += py-argcomplete SUBDIR += py-argh SUBDIR += py-argparse SUBDIR += py-args SUBDIR += py-arpeggio SUBDIR += py-arrow SUBDIR += py-asciimatics SUBDIR += py-asn1crypto SUBDIR += py-aspy.yaml SUBDIR += py-asteval SUBDIR += py-astor SUBDIR += py-astroid SUBDIR += py-astroid253 SUBDIR += py-asttokens SUBDIR += py-astunparse SUBDIR += py-async_generator SUBDIR += py-async_timeout SUBDIR += py-asynctest SUBDIR += py-atomiclong SUBDIR += py-atomicwrites SUBDIR += py-atpublic SUBDIR += py-attrs SUBDIR += py-attrs-strict SUBDIR += py-autocommand SUBDIR += py-autoflake SUBDIR += py-automaton SUBDIR += py-autopage SUBDIR += py-autoprop SUBDIR += py-avro SUBDIR += py-awesomeversion SUBDIR += py-aws-requests-auth SUBDIR += py-aws-sam-translator SUBDIR += py-aws-xray-sdk SUBDIR += py-awscrt SUBDIR += py-azure-appconfiguration SUBDIR += py-azure-batch SUBDIR += py-azure-core SUBDIR += py-azure-cosmos SUBDIR += py-azure-data-tables SUBDIR += py-azure-datalake-store SUBDIR += py-azure-functions-devops-build SUBDIR += py-azure-graphrbac SUBDIR += py-azure-identity SUBDIR += py-azure-keyvault SUBDIR += py-azure-keyvault-administration SUBDIR += py-azure-loganalytics SUBDIR += py-azure-mgmt-advisor SUBDIR += py-azure-mgmt-apimanagement SUBDIR += py-azure-mgmt-appconfiguration SUBDIR += py-azure-mgmt-applicationinsights SUBDIR += py-azure-mgmt-authorization SUBDIR += py-azure-mgmt-batch SUBDIR += py-azure-mgmt-batchai SUBDIR += py-azure-mgmt-billing SUBDIR += py-azure-mgmt-botservice SUBDIR += py-azure-mgmt-cdn SUBDIR += py-azure-mgmt-cognitiveservices SUBDIR += py-azure-mgmt-compute SUBDIR += py-azure-mgmt-consumption SUBDIR += py-azure-mgmt-containerinstance SUBDIR += py-azure-mgmt-containerregistry SUBDIR += py-azure-mgmt-containerservice SUBDIR += py-azure-mgmt-core SUBDIR += py-azure-mgmt-cosmosdb SUBDIR += py-azure-mgmt-databoxedge SUBDIR += py-azure-mgmt-datalake-analytics SUBDIR += py-azure-mgmt-datalake-store SUBDIR += py-azure-mgmt-datamigration SUBDIR += py-azure-mgmt-deploymentmanager SUBDIR += py-azure-mgmt-devtestlabs SUBDIR += py-azure-mgmt-dns SUBDIR += py-azure-mgmt-eventgrid SUBDIR += py-azure-mgmt-eventhub SUBDIR += py-azure-mgmt-extendedlocation SUBDIR += py-azure-mgmt-hdinsight SUBDIR += py-azure-mgmt-imagebuilder SUBDIR += py-azure-mgmt-iotcentral SUBDIR += py-azure-mgmt-iothub SUBDIR += py-azure-mgmt-iothubprovisioningservices SUBDIR += py-azure-mgmt-keyvault SUBDIR += py-azure-mgmt-kusto SUBDIR += py-azure-mgmt-loganalytics SUBDIR += py-azure-mgmt-managedservices SUBDIR += py-azure-mgmt-managementgroups SUBDIR += py-azure-mgmt-maps SUBDIR += py-azure-mgmt-marketplaceordering SUBDIR += py-azure-mgmt-media SUBDIR += py-azure-mgmt-monitor SUBDIR += py-azure-mgmt-msi SUBDIR += py-azure-mgmt-netapp SUBDIR += py-azure-mgmt-network SUBDIR += py-azure-mgmt-policyinsights SUBDIR += py-azure-mgmt-privatedns SUBDIR += py-azure-mgmt-rdbms SUBDIR += py-azure-mgmt-recoveryservices SUBDIR += py-azure-mgmt-recoveryservicesbackup SUBDIR += py-azure-mgmt-redhatopenshift SUBDIR += py-azure-mgmt-redis SUBDIR += py-azure-mgmt-relay SUBDIR += py-azure-mgmt-reservations SUBDIR += py-azure-mgmt-resource SUBDIR += py-azure-mgmt-search SUBDIR += py-azure-mgmt-security SUBDIR += py-azure-mgmt-servicebus SUBDIR += py-azure-mgmt-servicefabric SUBDIR += py-azure-mgmt-servicefabricmanagedclusters SUBDIR += py-azure-mgmt-servicelinker SUBDIR += py-azure-mgmt-signalr SUBDIR += py-azure-mgmt-sql SUBDIR += py-azure-mgmt-sqlvirtualmachine SUBDIR += py-azure-mgmt-storage SUBDIR += py-azure-mgmt-synapse SUBDIR += py-azure-mgmt-trafficmanager SUBDIR += py-azure-mgmt-web SUBDIR += py-azure-multiapi-storage SUBDIR += py-azure-storage-blob SUBDIR += py-azure-storage-common SUBDIR += py-azure-synapse-accesscontrol SUBDIR += py-azure-synapse-artifacts SUBDIR += py-azure-synapse-managedprivateendpoints SUBDIR += py-azure-synapse-spark SUBDIR += py-b2sdk SUBDIR += py-babel SUBDIR += py-babelfish SUBDIR += py-babi_grammars SUBDIR += py-backcall SUBDIR += py-backports SUBDIR += py-backports.cached-property SUBDIR += py-backports.csv SUBDIR += py-backports.entry-points-selectable SUBDIR += py-backports.zoneinfo SUBDIR += py-banal SUBDIR += py-bandit SUBDIR += py-bcdoc SUBDIR += py-beautifultable SUBDIR += py-behave SUBDIR += py-beniget SUBDIR += py-bidict SUBDIR += py-billiard SUBDIR += py-binaryornot SUBDIR += py-biplist SUBDIR += py-bitarray SUBDIR += py-bitstring SUBDIR += py-black SUBDIR += py-blessed SUBDIR += py-blessings SUBDIR += py-blinker SUBDIR += py-blist SUBDIR += py-bluelet SUBDIR += py-boolean.py SUBDIR += py-boto SUBDIR += py-botocore SUBDIR += py-breathe SUBDIR += py-bsd SUBDIR += py-btest SUBDIR += py-build SUBDIR += py-buildbot SUBDIR += py-buildbot-console-view SUBDIR += py-buildbot-grid-view SUBDIR += py-buildbot-pkg SUBDIR += py-buildbot-waterfall-view SUBDIR += py-buildbot-worker SUBDIR += py-buildbot-www SUBDIR += py-bullet3 SUBDIR += py-bytecode SUBDIR += py-cabby SUBDIR += py-cachecontrol SUBDIR += py-cached-property SUBDIR += py-cachetools SUBDIR += py-cachetools3 SUBDIR += py-cachy SUBDIR += py-cadquery-pywrap SUBDIR += py-calver SUBDIR += py-canonicaljson SUBDIR += py-capstone SUBDIR += py-capturer SUBDIR += py-case SUBDIR += py-castellan SUBDIR += py-catalogue SUBDIR += py-cattrs SUBDIR += py-cbor SUBDIR += py-cbor2 SUBDIR += py-cclib SUBDIR += py-cdg SUBDIR += py-celery SUBDIR += py-celery-progress SUBDIR += py-cerberus SUBDIR += py-certsrv SUBDIR += py-cffi SUBDIR += py-cfgv SUBDIR += py-cfn-lint SUBDIR += py-cftime SUBDIR += py-chainmap SUBDIR += py-characteristic SUBDIR += py-check-manifest SUBDIR += py-cheetah3 SUBDIR += py-circuitbreaker SUBDIR += py-circuits SUBDIR += py-ciso8601 SUBDIR += py-ckanapi SUBDIR += py-clang SUBDIR += py-cld SUBDIR += py-cle SUBDIR += py-cleo SUBDIR += py-cli-helpers SUBDIR += py-cliapp SUBDIR += py-click SUBDIR += py-click-completion SUBDIR += py-click-default-group SUBDIR += py-click-log SUBDIR += py-click-plugins SUBDIR += py-click-threading SUBDIR += py-click7 SUBDIR += py-cliff SUBDIR += py-cligj SUBDIR += py-clikit SUBDIR += py-clint SUBDIR += py-cloudpickle SUBDIR += py-cluster SUBDIR += py-cmd2 SUBDIR += py-cmdtest SUBDIR += py-codecov SUBDIR += py-codegen SUBDIR += py-cog SUBDIR += py-collective.monkeypatcher SUBDIR += py-colorama SUBDIR += py-colored-traceback SUBDIR += py-coloredlogs SUBDIR += py-colorful SUBDIR += py-colorlog SUBDIR += py-colorspacious SUBDIR += py-columnize SUBDIR += py-commandlines SUBDIR += py-conditional SUBDIR += py-configargparse SUBDIR += py-configobj SUBDIR += py-configparser SUBDIR += py-configupdater SUBDIR += py-confusable_homoglyphs SUBDIR += py-confuse SUBDIR += py-connection_pool SUBDIR += py-constantly SUBDIR += py-construct SUBDIR += py-contextlib2 SUBDIR += py-convertdate SUBDIR += py-cookiecutter SUBDIR += py-copier SUBDIR += py-coreapi SUBDIR += py-coreschema SUBDIR += py-country SUBDIR += py-cov-core SUBDIR += py-covdefaults SUBDIR += py-coverage SUBDIR += py-coverage_enable_subprocess SUBDIR += py-cppheaderparser SUBDIR += py-cppy SUBDIR += py-crank SUBDIR += py-crashtest SUBDIR += py-crc32c SUBDIR += py-crcmod SUBDIR += py-cson SUBDIR += py-csv23 SUBDIR += py-ctags SUBDIR += py-ctypesgen SUBDIR += py-curio SUBDIR += py-cursive SUBDIR += py-curtsies SUBDIR += py-cvss SUBDIR += py-cwcwidth SUBDIR += py-cxx SUBDIR += py-cycler SUBDIR += py-cymbal SUBDIR += py-cymem SUBDIR += py-cysignals SUBDIR += py-cython-test-exception-raiser SUBDIR += py-cytoolz SUBDIR += py-d2to1 SUBDIR += py-daemon SUBDIR += py-daemon-runner SUBDIR += py-daemonize SUBDIR += py-daemons SUBDIR += py-dal SUBDIR += py-darts.util.lru SUBDIR += py-dask SUBDIR += py-dataclasses-json SUBDIR += py-datadog SUBDIR += py-datapackage SUBDIR += py-datatest SUBDIR += py-dateparser SUBDIR += py-dateutil SUBDIR += py-dateutils SUBDIR += py-datrie SUBDIR += py-dbus SUBDIR += py-ddsketch SUBDIR += py-ddt SUBDIR += py-ddtrace SUBDIR += py-debtcollector SUBDIR += py-debugpy SUBDIR += py-debugtools SUBDIR += py-decorator SUBDIR += py-decoratortools SUBDIR += py-deepdiff SUBDIR += py-deepmerge SUBDIR += py-defusedxml SUBDIR += py-demjson SUBDIR += py-deprecat SUBDIR += py-deprecated SUBDIR += py-deprecation SUBDIR += py-devtools SUBDIR += py-dexml2 SUBDIR += py-diazo SUBDIR += py-dill SUBDIR += py-dirspec SUBDIR += py-diskcache SUBDIR += py-distlib SUBDIR += py-distributed SUBDIR += py-dj40-django-rq SUBDIR += py-dj40-graphene-django SUBDIR += py-django-rq SUBDIR += py-dockerpty SUBDIR += py-docopt SUBDIR += py-doctest-ignore-unicode SUBDIR += py-dogpile.cache SUBDIR += py-doit SUBDIR += py-dotted SUBDIR += py-dotty-dict SUBDIR += py-dpcontracts SUBDIR += py-dtfabric SUBDIR += py-dunamai SUBDIR += py-durus SUBDIR += py-dynrules SUBDIR += py-easyprocess SUBDIR += py-editables SUBDIR += py-editdistance SUBDIR += py-eggtestinfo SUBDIR += py-ejson SUBDIR += py-enlighten SUBDIR += py-entrypoints SUBDIR += py-enum-compat SUBDIR += py-envisage SUBDIR += py-envs SUBDIR += py-epc SUBDIR += py-epdb SUBDIR += py-epsilon SUBDIR += py-etils SUBDIR += py-evdev SUBDIR += py-eventlib SUBDIR += py-ewmh SUBDIR += py-exam SUBDIR += py-exceptiongroup SUBDIR += py-executing SUBDIR += py-expiringdict SUBDIR += py-extras SUBDIR += py-extremes SUBDIR += py-fabric SUBDIR += py-fabric3 SUBDIR += py-factory-boy SUBDIR += py-fam SUBDIR += py-fastbencode SUBDIR += py-fastcache SUBDIR += py-fasteners SUBDIR += py-fastentrypoints SUBDIR += py-fastf1 SUBDIR += py-fastimport SUBDIR += py-fastjsonschema SUBDIR += py-fastnumbers SUBDIR += py-fastprogress SUBDIR += py-fbprophet SUBDIR += py-filebytes SUBDIR += py-filedepot SUBDIR += py-filemagic SUBDIR += py-filetype SUBDIR += py-findlibs SUBDIR += py-findpython SUBDIR += py-first SUBDIR += py-five.globalrequest SUBDIR += py-fixtures SUBDIR += py-flake8 SUBDIR += py-flake8-black SUBDIR += py-flake8-bugbear SUBDIR += py-flake8-builtins SUBDIR += py-flake8-docstrings SUBDIR += py-flake8-import-order SUBDIR += py-flake8-polyfill SUBDIR += py-flake8-quotes SUBDIR += py-flaky SUBDIR += py-flask-babel SUBDIR += py-flatbuffers SUBDIR += py-flex SUBDIR += py-flexmock SUBDIR += py-flit SUBDIR += py-flit-core SUBDIR += py-flit-scm SUBDIR += py-fluent SUBDIR += py-fluent-logger SUBDIR += py-flufl.i18n SUBDIR += py-flufl.lock SUBDIR += py-flynt SUBDIR += py-foolscap SUBDIR += py-freebsd SUBDIR += py-freebsd-sysctl SUBDIR += py-freenas.utils SUBDIR += py-freezegun SUBDIR += py-frictionless SUBDIR += py-frozendict SUBDIR += py-frozenlist SUBDIR += py-fs SUBDIR += py-fs2 SUBDIR += py-fsspec SUBDIR += py-fudge SUBDIR += py-funcparserlib SUBDIR += py-funcsigs SUBDIR += py-funcy SUBDIR += py-furl SUBDIR += py-fusepy SUBDIR += py-future SUBDIR += py-futurist SUBDIR += py-fuzzywuzzy SUBDIR += py-fypp SUBDIR += py-game SUBDIR += py-game_sdl2 SUBDIR += py-gapic-generator SUBDIR += py-gast SUBDIR += py-genson SUBDIR += py-genty SUBDIR += py-geojson SUBDIR += py-get-reader SUBDIR += py-gevent SUBDIR += py-git-semver SUBDIR += py-git-up SUBDIR += py-git-url-parse SUBDIR += py-gitdb SUBDIR += py-gitless SUBDIR += py-gitpython SUBDIR += py-giturlparse SUBDIR += py-glance-store SUBDIR += py-glob2 SUBDIR += py-gobject3 SUBDIR += py-google-cloud-iam SUBDIR += py-google-crc32c SUBDIR += py-google-i18n-address SUBDIR += py-google-pasta SUBDIR += py-google-re2 SUBDIR += py-googleapis-common-protos SUBDIR += py-gpxpy SUBDIR += py-grab SUBDIR += py-graphene SUBDIR += py-graphene-django SUBDIR += py-graphene-sqlalchemy SUBDIR += py-graphene2 SUBDIR += py-graphql-core SUBDIR += py-graphql-core2 SUBDIR += py-graphql-relay SUBDIR += py-graphql-relay2 SUBDIR += py-greenlet SUBDIR += py-grizzled SUBDIR += py-grpc-google-iam-v1 SUBDIR += py-grpc-stubs SUBDIR += py-grpcio SUBDIR += py-grpcio-gcp SUBDIR += py-grpcio-status SUBDIR += py-grpcio-tools SUBDIR += py-gs_api_client SUBDIR += py-gtfslib SUBDIR += py-guppy3 SUBDIR += py-gyp SUBDIR += py-hash_ring SUBDIR += py-hatch SUBDIR += py-hatchling SUBDIR += py-heapdict SUBDIR += py-helpdev SUBDIR += py-hg-evolve SUBDIR += py-hglib SUBDIR += py-hgtools SUBDIR += py-hidraw SUBDIR += py-holidays SUBDIR += py-homebase SUBDIR += py-http-prompt SUBDIR += py-humanize SUBDIR += py-hvac SUBDIR += py-hypothesis SUBDIR += py-hypothesmith SUBDIR += py-icalendar SUBDIR += py-ice SUBDIR += py-ice37 SUBDIR += py-identify SUBDIR += py-ijson SUBDIR += py-imgkit SUBDIR += py-immutables SUBDIR += py-importlab SUBDIR += py-importlib-metadata SUBDIR += py-importlib-resources SUBDIR += py-incremental SUBDIR += py-infinity SUBDIR += py-inflect SUBDIR += py-inflection SUBDIR += py-iniconfig SUBDIR += py-inifile SUBDIR += py-iniparse SUBDIR += py-installer SUBDIR += py-intbitset SUBDIR += py-intelhex SUBDIR += py-intervals SUBDIR += py-intervaltree SUBDIR += py-invoke SUBDIR += py-ioflo SUBDIR += py-iopath SUBDIR += py-ipaddr SUBDIR += py-ipdb SUBDIR += py-ipykernel SUBDIR += py-ipykernel5 SUBDIR += py-ipympl SUBDIR += py-ipyparallel SUBDIR += py-ipython_genutils SUBDIR += py-ipywidgets SUBDIR += py-iso8601 SUBDIR += py-isodate SUBDIR += py-isort SUBDIR += py-itanium_demangler SUBDIR += py-itemadapter SUBDIR += py-itemloaders SUBDIR += py-iteration-utilities SUBDIR += py-itypes SUBDIR += py-jaraco SUBDIR += py-jaraco.classes SUBDIR += py-jaraco.context SUBDIR += py-jaraco.functools SUBDIR += py-jaraco.itertools SUBDIR += py-jaraco.logging SUBDIR += py-jaraco.timing SUBDIR += py-jaraco.util SUBDIR += py-javaproperties SUBDIR += py-jdcal SUBDIR += py-jedi SUBDIR += py-jeepney SUBDIR += py-jellyfish SUBDIR += py-jenkins-job-builder SUBDIR += py-jep SUBDIR += py-jinja2-ansible-filters SUBDIR += py-jinja2-time SUBDIR += py-jira SUBDIR += py-jitterentropy SUBDIR += py-jmespath SUBDIR += py-joblib SUBDIR += py-jsbeautifier SUBDIR += py-jschema-to-python SUBDIR += py-jsmin SUBDIR += py-json5 SUBDIR += py-json_tricks SUBDIR += py-jsondiff SUBDIR += py-jsonform SUBDIR += py-jsonlines SUBDIR += py-jsonnet SUBDIR += py-jsonpatch SUBDIR += py-jsonpath-ng SUBDIR += py-jsonpath-rw SUBDIR += py-jsonpickle SUBDIR += py-jsonpointer SUBDIR += py-jsonref SUBDIR += py-jsonrpclib-pelix SUBDIR += py-jsonschema SUBDIR += py-jsonschema3 SUBDIR += py-jsonsir SUBDIR += py-jupyter-client SUBDIR += py-jupyter-core SUBDIR += py-jupyter-packaging SUBDIR += py-jupyter-server SUBDIR += py-jupyter-server-mathjax SUBDIR += py-jupyter-telemetry SUBDIR += py-jupyter_console SUBDIR += py-jupyterlab SUBDIR += py-jupyterlab-server SUBDIR += py-jupyterlab-widgets SUBDIR += py-jupyterlab_launcher SUBDIR += py-kaitaistruct SUBDIR += py-kaptan SUBDIR += py-kazoo SUBDIR += py-keystone-engine SUBDIR += py-keystoneauth1 SUBDIR += py-keystonemiddleware SUBDIR += py-kitchen SUBDIR += py-knack SUBDIR += py-l18n SUBDIR += py-lark SUBDIR += py-launchpadlib SUBDIR += py-lazr.config SUBDIR += py-lazr.delegates SUBDIR += py-lazr.restfulclient SUBDIR += py-lazr.uri SUBDIR += py-lazy SUBDIR += py-lazy-object-proxy SUBDIR += py-libcst SUBDIR += py-libioc SUBDIR += py-libpeas SUBDIR += py-libplist SUBDIR += py-libtaxii SUBDIR += py-libtmux SUBDIR += py-libusb1 SUBDIR += py-libversion SUBDIR += py-libvirt SUBDIR += py-libzfs SUBDIR += py-line-profiler SUBDIR += py-linear-tsv SUBDIR += py-linecache2 SUBDIR += py-lineedit SUBDIR += py-littleutils SUBDIR += py-llfuse SUBDIR += py-llvmcpy SUBDIR += py-llvmlite SUBDIR += py-lml SUBDIR += py-locket SUBDIR += py-lockfile SUBDIR += py-logan SUBDIR += py-logbook SUBDIR += py-logfury SUBDIR += py-logilab-common SUBDIR += py-loguru SUBDIR += py-logutils SUBDIR += py-logzero SUBDIR += py-louie SUBDIR += py-lru-dict SUBDIR += py-lunardate SUBDIR += py-lxml SUBDIR += py-lxml-stubs SUBDIR += py-mac-vendor-lookup SUBDIR += py-macholib SUBDIR += py-magic SUBDIR += py-mailcap-fix SUBDIR += py-makefun SUBDIR += py-manuel SUBDIR += py-marrow.mailer SUBDIR += py-marrow.util SUBDIR += py-marshmallow SUBDIR += py-marshmallow-enum SUBDIR += py-matrix-angular-sdk SUBDIR += py-matrix-common SUBDIR += py-maturin SUBDIR += py-mccabe SUBDIR += py-mdv SUBDIR += py-mediafile SUBDIR += py-medikit SUBDIR += py-memory-allocator SUBDIR += py-memory-profiler SUBDIR += py-mergedeep SUBDIR += py-microversion-parse SUBDIR += py-milc SUBDIR += py-mime SUBDIR += py-minidump SUBDIR += py-minimongo SUBDIR += py-minio SUBDIR += py-mock SUBDIR += py-molecule SUBDIR += py-mondrian SUBDIR += py-mongokit SUBDIR += py-monkeytype SUBDIR += py-monotonic SUBDIR += py-monty SUBDIR += py-more-itertools SUBDIR += py-moto SUBDIR += py-mox SUBDIR += py-mox3 SUBDIR += py-mrkd SUBDIR += py-msal SUBDIR += py-msal-extensions SUBDIR += py-msgpack SUBDIR += py-mulpyplexer SUBDIR += py-multi_key_dict SUBDIR += py-multipledispatch SUBDIR += py-multiprocess SUBDIR += py-multitasking SUBDIR += py-munch SUBDIR += py-murmurhash SUBDIR += py-mygpoclient SUBDIR += py-mypy SUBDIR += py-mypy-protobuf SUBDIR += py-mypy_extensions SUBDIR += py-naiveBayesClassifier SUBDIR += py-nanotime SUBDIR += py-natsort SUBDIR += py-natural SUBDIR += py-nbclassic SUBDIR += py-nbclient SUBDIR += py-nbconvert SUBDIR += py-nbdime SUBDIR += py-nbformat SUBDIR += py-nest-asyncio SUBDIR += py-node-semver SUBDIR += py-nodeenv SUBDIR += py-nose SUBDIR += py-nose-cov SUBDIR += py-nose-timer SUBDIR += py-nose2 SUBDIR += py-noseofyeti SUBDIR += py-nosexcover SUBDIR += py-notebook-shim SUBDIR += py-notify2 SUBDIR += py-num2words SUBDIR += py-numba SUBDIR += py-objgraph SUBDIR += py-oci SUBDIR += py-odfpy SUBDIR += py-offtrac SUBDIR += py-olefile SUBDIR += py-oletools SUBDIR += py-omnijson SUBDIR += py-omniorb SUBDIR += py-onigurumacffi SUBDIR += py-opcodes SUBDIR += py-openapi-codec SUBDIR += py-openapi-core SUBDIR += py-openapi-schema-validator SUBDIR += py-openapi-spec-validator SUBDIR += py-opencensus SUBDIR += py-opencensus-context SUBDIR += py-opendht SUBDIR += py-opengrok-tools SUBDIR += py-openstacksdk SUBDIR += py-opentracing SUBDIR += py-opster SUBDIR += py-optik SUBDIR += py-orange-canvas-core SUBDIR += py-orange-widget-base SUBDIR += py-orca SUBDIR += py-ordered-set SUBDIR += py-ordereddict SUBDIR += py-orderedmultidict SUBDIR += py-os-brick SUBDIR += py-os-client-config SUBDIR += py-os-service-types SUBDIR += py-os-vif SUBDIR += py-os-win SUBDIR += py-osc-lib SUBDIR += py-oslo.cache SUBDIR += py-oslo.concurrency SUBDIR += py-oslo.config SUBDIR += py-oslo.context SUBDIR += py-oslo.db SUBDIR += py-oslo.i18n SUBDIR += py-oslo.limit SUBDIR += py-oslo.log SUBDIR += py-oslo.messaging SUBDIR += py-oslo.metrics SUBDIR += py-oslo.middleware SUBDIR += py-oslo.policy SUBDIR += py-oslo.privsep SUBDIR += py-oslo.reports SUBDIR += py-oslo.rootwrap SUBDIR += py-oslo.serialization SUBDIR += py-oslo.service SUBDIR += py-oslo.upgradecheck SUBDIR += py-oslo.utils SUBDIR += py-oslo.versionedobjects SUBDIR += py-oslo.vmware SUBDIR += py-oslotest SUBDIR += py-osprofiler SUBDIR += py-outcome SUBDIR += py-ovs SUBDIR += py-ovsdbapp SUBDIR += py-p4python SUBDIR += py-packaging SUBDIR += py-parallax SUBDIR += py-parameterized SUBDIR += py-parsedatetime SUBDIR += py-parsley SUBDIR += py-parver SUBDIR += py-pastel SUBDIR += py-patch SUBDIR += py-patch-ng SUBDIR += py-path SUBDIR += py-path.py SUBDIR += py-pathable SUBDIR += py-pathlib2 SUBDIR += py-pathos SUBDIR += py-pathspec SUBDIR += py-pathtools SUBDIR += py-paver SUBDIR += py-pbr SUBDIR += py-pdm SUBDIR += py-pdm-pep517 SUBDIR += py-pebble SUBDIR += py-pefile SUBDIR += py-pendulum SUBDIR += py-pep517 SUBDIR += py-pep562 SUBDIR += py-pep621 SUBDIR += py-pep8-naming SUBDIR += py-period SUBDIR += py-persistent SUBDIR += py-petname SUBDIR += py-pew SUBDIR += py-pex SUBDIR += py-phabricator SUBDIR += py-phonenumbers SUBDIR += py-phply SUBDIR += py-phpserialize SUBDIR += py-phx-class-registry SUBDIR += py-pid SUBDIR += py-pika SUBDIR += py-pika-pool SUBDIR += py-pinocchio SUBDIR += py-pint SUBDIR += py-pint-pandas SUBDIR += py-pip SUBDIR += py-pip-api SUBDIR += py-pip-licenses SUBDIR += py-pip-run SUBDIR += py-pip-shims SUBDIR += py-pip-tools SUBDIR += py-pip-tools4 SUBDIR += py-pipdeptree SUBDIR += py-pipenv SUBDIR += py-pipreqs SUBDIR += py-pipx SUBDIR += py-pkgconfig SUBDIR += py-plac SUBDIR += py-plan SUBDIR += py-platformdirs SUBDIR += py-plette SUBDIR += py-plex SUBDIR += py-plucky SUBDIR += py-pluggy SUBDIR += py-pluggy0 SUBDIR += py-pluginbase SUBDIR += py-ply SUBDIR += py-pockets SUBDIR += py-podcastparser SUBDIR += py-poetry-core SUBDIR += py-poetry-dynamic-versioning SUBDIR += py-poetry2setup SUBDIR += py-polib SUBDIR += py-pooch SUBDIR += py-pop SUBDIR += py-pop-config SUBDIR += py-portalocker SUBDIR += py-positional SUBDIR += py-posix_ipc SUBDIR += py-pox SUBDIR += py-poyo SUBDIR += py-ppft SUBDIR += py-prance SUBDIR += py-pre-commit SUBDIR += py-pre-commit-hooks SUBDIR += py-prefixed SUBDIR += py-preshed SUBDIR += py-pretend SUBDIR += py-prettyprinter SUBDIR += py-prettytable SUBDIR += py-prettytable0 SUBDIR += py-proglog SUBDIR += py-progress SUBDIR += py-promise SUBDIR += py-prompt-toolkit SUBDIR += py-prompt-toolkit1 SUBDIR += py-prompt-toolkit2 SUBDIR += py-proselint SUBDIR += py-proto-plus SUBDIR += py-protobuf SUBDIR += py-protobuf-compiler SUBDIR += py-proxmoxer SUBDIR += py-ptable SUBDIR += py-ptpython SUBDIR += py-ptvsd SUBDIR += py-pudb SUBDIR += py-pure-eval SUBDIR += py-purl SUBDIR += py-py SUBDIR += py-py-ubjson SUBDIR += py-py_interface SUBDIR += py-pyasn1 SUBDIR += py-pyasn1-modules SUBDIR += py-pybind11 SUBDIR += py-pybix SUBDIR += py-pycadf SUBDIR += py-pycalendar SUBDIR += py-pycallgraph SUBDIR += py-pycapsicum SUBDIR += py-pycerberus SUBDIR += py-pycmd SUBDIR += py-pycodeexport SUBDIR += py-pycodestyle SUBDIR += py-pycognito SUBDIR += py-pycompilation SUBDIR += py-pycparser SUBDIR += py-pydantic SUBDIR += py-pydash SUBDIR += py-pydecor SUBDIR += py-pydenticon SUBDIR += py-pydevd SUBDIR += py-pydispatcher SUBDIR += py-pydocstyle SUBDIR += py-pydrive SUBDIR += py-pyee SUBDIR += py-pyelftools SUBDIR += py-pyface SUBDIR += py-pyfcm SUBDIR += py-pyflakes SUBDIR += py-pyformance SUBDIR += py-pygdbmi SUBDIR += py-pygit2 SUBDIR += py-pygithub SUBDIR += py-pygpx SUBDIR += py-pyhashxx SUBDIR += py-pyhcl SUBDIR += py-pyicu SUBDIR += py-pyina SUBDIR += py-pyinotify SUBDIR += py-pyinquirer SUBDIR += py-pyinstaller SUBDIR += py-pyjq SUBDIR += py-pyjsparser SUBDIR += py-pylama SUBDIR += py-pylev SUBDIR += py-pylibsrtp SUBDIR += py-pylint-django SUBDIR += py-pylint-plugin-utils SUBDIR += py-pylru SUBDIR += py-pylru-cache SUBDIR += py-pyls-black SUBDIR += py-pymarc SUBDIR += py-pymaven-patch SUBDIR += py-pymisp SUBDIR += py-pympler SUBDIR += py-pymtbl SUBDIR += py-pynest2d SUBDIR += py-pyopencl SUBDIR += py-pyparsing SUBDIR += py-pyparsing2 SUBDIR += py-pyperclip SUBDIR += py-pyperf SUBDIR += py-pyplusplus SUBDIR += py-pyproject-fmt SUBDIR += py-pyproject-metadata SUBDIR += py-pypugjs SUBDIR += py-pyqtree SUBDIR += py-pyquery SUBDIR += py-pyquil SUBDIR += py-pyral SUBDIR += py-pyrepl SUBDIR += py-pyrfc3339 SUBDIR += py-pyright SUBDIR += py-pyro SUBDIR += py-pyrsistent SUBDIR += py-pyscaffold SUBDIR += py-pysdl2 SUBDIR += py-pyshp SUBDIR += py-pysimdjson SUBDIR += py-pysparklines SUBDIR += py-pystorm SUBDIR += py-pyte SUBDIR += py-pytest SUBDIR += py-pytest-aiohttp SUBDIR += py-pytest-asyncio SUBDIR += py-pytest-azurepipelines SUBDIR += py-pytest-benchmark SUBDIR += py-pytest-black SUBDIR += py-pytest-black-multipy SUBDIR += py-pytest-cache SUBDIR += py-pytest-canonical-data SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-checkdocs SUBDIR += py-pytest-cov SUBDIR += py-pytest-datadir SUBDIR += py-pytest-django SUBDIR += py-pytest-enabler SUBDIR += py-pytest-env SUBDIR += py-pytest-factoryboy SUBDIR += py-pytest-fixture-config SUBDIR += py-pytest-flake8 SUBDIR += py-pytest-flakes SUBDIR += py-pytest-flask SUBDIR += py-pytest-forked SUBDIR += py-pytest-freezegun SUBDIR += py-pytest-helpers-namespace SUBDIR += py-pytest-html SUBDIR += py-pytest-httpbin SUBDIR += py-pytest-isort SUBDIR += py-pytest-lazy-fixture SUBDIR += py-pytest-localserver SUBDIR += py-pytest-markdown SUBDIR += py-pytest-metadata SUBDIR += py-pytest-mock SUBDIR += py-pytest-mutagen SUBDIR += py-pytest-mypy SUBDIR += py-pytest-nunit SUBDIR += py-pytest-pep8 SUBDIR += py-pytest-plus SUBDIR += py-pytest-pycodestyle SUBDIR += py-pytest-randomly SUBDIR += py-pytest-regressions SUBDIR += py-pytest-regtest SUBDIR += py-pytest-relaxed SUBDIR += py-pytest-rerunfailures SUBDIR += py-pytest-runner SUBDIR += py-pytest-shutil SUBDIR += py-pytest-subtests SUBDIR += py-pytest-sugar SUBDIR += py-pytest-timeout SUBDIR += py-pytest-tornado SUBDIR += py-pytest-translations SUBDIR += py-pytest-trio SUBDIR += py-pytest-twisted SUBDIR += py-pytest-verbose-parametrize SUBDIR += py-pytest-virtualenv SUBDIR += py-pytest-xdist SUBDIR += py-pytest-xprocess SUBDIR += py-pytest4 SUBDIR += py-pytest4-asyncio SUBDIR += py-pytest4-cache SUBDIR += py-pytest4-cov SUBDIR += py-pytest4-flakes SUBDIR += py-python-Levenshtein SUBDIR += py-python-application SUBDIR += py-python-bugzilla SUBDIR += py-python-dbusmock SUBDIR += py-python-decouple SUBDIR += py-python-distutils-extra SUBDIR += py-python-dtrace SUBDIR += py-python-easyconfig SUBDIR += py-python-editor SUBDIR += py-python-engineio SUBDIR += py-python-gflags SUBDIR += py-python-gilt SUBDIR += py-python-gist SUBDIR += py-python-gitlab SUBDIR += py-python-jenkins SUBDIR += py-python-json-logger SUBDIR += py-python-jsonrpc-server SUBDIR += py-python-magic SUBDIR += py-python-mimeparse SUBDIR += py-python-pcre SUBDIR += py-python-ptrace SUBDIR += py-python-rapidjson SUBDIR += py-python-socketio SUBDIR += py-python-statsd SUBDIR += py-python-subunit SUBDIR += py-pythonbrew SUBDIR += py-pythondialog SUBDIR += py-pythonfinder SUBDIR += py-pythran SUBDIR += py-pytimeparse SUBDIR += py-pytools SUBDIR += py-pytrie SUBDIR += py-pytvmaze SUBDIR += py-pytz SUBDIR += py-pytz-deprecation-shim SUBDIR += py-pytzdata SUBDIR += py-pyudev SUBDIR += py-pyupgrade SUBDIR += py-pyusb SUBDIR += py-pyvisa SUBDIR += py-pyvisa-py SUBDIR += py-pyxb SUBDIR += py-pyyaml-include SUBDIR += py-pyyaml_env_tag SUBDIR += py-pyzipper SUBDIR += py-q SUBDIR += py-qasync SUBDIR += py-qcs-api-client SUBDIR += py-qstylizer SUBDIR += py-qt5 SUBDIR += py-qt5-pyqt SUBDIR += py-qt5-qscintilla2 SUBDIR += py-qt5-sip SUBDIR += py-qtbuilder SUBDIR += py-qtconsole SUBDIR += py-questionary SUBDIR += py-qutip SUBDIR += py-qutip-qip SUBDIR += py-ramlfications SUBDIR += py-rapidfuzz SUBDIR += py-rapidfuzz-capi SUBDIR += py-ratelimiter SUBDIR += py-rauth SUBDIR += py-raven SUBDIR += py-rchitect SUBDIR += py-readme-renderer SUBDIR += py-rebulk SUBDIR += py-recordclass SUBDIR += py-rednose SUBDIR += py-reedsolo SUBDIR += py-remote-pdb SUBDIR += py-repoze.lru SUBDIR += py-repoze.sphinx.autointerface SUBDIR += py-repoze.tm2 SUBDIR += py-repoze.who SUBDIR += py-repoze.xmliter SUBDIR += py-represent SUBDIR += py-requestsexceptions SUBDIR += py-requirementslib SUBDIR += py-resolvelib SUBDIR += py-resolvelib05 SUBDIR += py-resolvelib07 SUBDIR += py-resolver SUBDIR += py-resource SUBDIR += py-responses SUBDIR += py-retry2 SUBDIR += py-retrying SUBDIR += py-retype SUBDIR += py-rfc3339 SUBDIR += py-rfc3339-validator SUBDIR += py-robotframework SUBDIR += py-robotframework-databaselibrary SUBDIR += py-robotframework-pabot SUBDIR += py-robotframework-pythonlibcore SUBDIR += py-robotframework-seleniumlibrary SUBDIR += py-robotframework-stacktrace SUBDIR += py-robotremoteserver SUBDIR += py-rope SUBDIR += py-rose SUBDIR += py-rpcq SUBDIR += py-rply SUBDIR += py-rq SUBDIR += py-rq-scheduler SUBDIR += py-rstr SUBDIR += py-rtree SUBDIR += py-rtslib-fb SUBDIR += py-ruamel.yaml SUBDIR += py-ruamel.yaml.clib SUBDIR += py-rubymarshal SUBDIR += py-rush SUBDIR += py-rx SUBDIR += py-rx1 SUBDIR += py-saneyaml SUBDIR += py-sarge SUBDIR += py-sarif-om SUBDIR += py-schedule SUBDIR += py-scheduler SUBDIR += py-schema SUBDIR += py-schematics-patched SUBDIR += py-scikit-build SUBDIR += py-scooby SUBDIR += py-scripttest SUBDIR += py-selection SUBDIR += py-semantic-version SUBDIR += py-semver SUBDIR += py-sentry-sdk SUBDIR += py-serializable SUBDIR += py-serpent SUBDIR += py-session-info SUBDIR += py-setproctitle SUBDIR += py-setuptools SUBDIR += py-setuptools-git SUBDIR += py-setuptools-pkg SUBDIR += py-setuptools-rust SUBDIR += py-setuptools44 SUBDIR += py-setuptools_hg SUBDIR += py-setuptools_scm SUBDIR += py-setuptools_scm_git_archive SUBDIR += py-sexpdata SUBDIR += py-sgmllib3k SUBDIR += py-sh SUBDIR += py-shapely SUBDIR += py-shellingham SUBDIR += py-signalr-client-aio SUBDIR += py-simpleeval SUBDIR += py-simplegeneric SUBDIR += py-simplejson SUBDIR += py-simpleparse SUBDIR += py-simpletal SUBDIR += py-simpy SUBDIR += py-sip SUBDIR += py-sip4 SUBDIR += py-six SUBDIR += py-smmap SUBDIR += py-snakeviz SUBDIR += py-sniffio SUBDIR += py-sortedcontainers SUBDIR += py-sourcemap SUBDIR += py-speaklater SUBDIR += py-speg SUBDIR += py-spyder SUBDIR += py-spyder-kernels SUBDIR += py-squint SUBDIR += py-sre-yield SUBDIR += py-srsly SUBDIR += py-stack-data SUBDIR += py-stackexchange SUBDIR += py-statgrab SUBDIR += py-statsd SUBDIR += py-stdlib-list SUBDIR += py-stdnum SUBDIR += py-stevedore SUBDIR += py-stopit SUBDIR += py-strategies SUBDIR += py-streamparse SUBDIR += py-strict-rfc3339 SUBDIR += py-stringbrewer SUBDIR += py-stringcase SUBDIR += py-structlog SUBDIR += py-subprocess-tee SUBDIR += py-subversion SUBDIR += py-sure SUBDIR += py-swagger-spec-validator SUBDIR += py-synr SUBDIR += py-sysctl SUBDIR += py-sysv_ipc SUBDIR += py-tables SUBDIR += py-tabulate SUBDIR += py-tabulator SUBDIR += py-tapi SUBDIR += py-tarantool-queue SUBDIR += py-tartiflette SUBDIR += py-tartiflette-aiohttp SUBDIR += py-taskflow SUBDIR += py-tasklib SUBDIR += py-tblib SUBDIR += py-tdworkflow SUBDIR += py-telepath SUBDIR += py-tempora SUBDIR += py-tenacity SUBDIR += py-termcolor SUBDIR += py-termstyle SUBDIR += py-testfixtures SUBDIR += py-testinfra SUBDIR += py-testoob SUBDIR += py-testpath SUBDIR += py-testrepository SUBDIR += py-testresources SUBDIR += py-testscenarios SUBDIR += py-testtools SUBDIR += py-thefuzz SUBDIR += py-threema-msgapi SUBDIR += py-thrift SUBDIR += py-thriftpy2 SUBDIR += py-tiamat SUBDIR += py-timelib SUBDIR += py-timeout-decorator SUBDIR += py-tinyarray SUBDIR += py-tinyrpc SUBDIR += py-tipper SUBDIR += py-tokenize-rt SUBDIR += py-toolz SUBDIR += py-tooz SUBDIR += py-toposort SUBDIR += py-tox SUBDIR += py-traceback2 SUBDIR += py-traitlets SUBDIR += py-traits SUBDIR += py-transaction SUBDIR += py-transitions SUBDIR += py-tree-format SUBDIR += py-trimesh SUBDIR += py-trove-classifiers SUBDIR += py-ttictoc SUBDIR += py-ttystatus SUBDIR += py-twiggy SUBDIR += py-twilio SUBDIR += py-twine SUBDIR += py-twisted SUBDIR += py-txaio SUBDIR += py-txi2p-tahoe SUBDIR += py-typechecks SUBDIR += py-typed-ast SUBDIR += py-typeguard SUBDIR += py-typer SUBDIR += py-types-Flask SUBDIR += py-types-Jinja2 SUBDIR += py-types-MarkupSafe SUBDIR += py-types-Pillow SUBDIR += py-types-PyYAML SUBDIR += py-types-Werkzeug SUBDIR += py-types-click SUBDIR += py-types-docutils SUBDIR += py-types-futures SUBDIR += py-types-mock SUBDIR += py-types-protobuf SUBDIR += py-types-psycopg2 SUBDIR += py-types-requests SUBDIR += py-types-termcolor SUBDIR += py-types-toml SUBDIR += py-types-typed-ast SUBDIR += py-types-urllib3 SUBDIR += py-types-xxhash SUBDIR += py-typing-extensions SUBDIR += py-typing-inspect SUBDIR += py-tzdata SUBDIR += py-tzlocal SUBDIR += py-u-msgpack-python SUBDIR += py-ua_parser SUBDIR += py-ubelt SUBDIR += py-uhid-freebsd SUBDIR += py-ujson SUBDIR += py-unearth SUBDIR += py-unicodecsv SUBDIR += py-unicodedata2 SUBDIR += py-unipath SUBDIR += py-unittest2 SUBDIR += py-unittest2pytest SUBDIR += py-unpaddedbase64 SUBDIR += py-update_checker SUBDIR += py-urlimport SUBDIR += py-urwid SUBDIR += py-urwid-readline SUBDIR += py-urwidtrees SUBDIR += py-us SUBDIR += py-user_agents SUBDIR += py-userpath SUBDIR += py-uvloop SUBDIR += py-validate-pyproject SUBDIR += py-validators SUBDIR += py-validictory SUBDIR += py-vcrpy SUBDIR += py-vcver SUBDIR += py-vcversioner SUBDIR += py-venusian SUBDIR += py-verboselogs SUBDIR += py-versiontools SUBDIR += py-verspec SUBDIR += py-vine SUBDIR += py-virtualenv SUBDIR += py-virtualenv-api SUBDIR += py-virtualenv-clone SUBDIR += py-virtualenvwrapper SUBDIR += py-visitor SUBDIR += py-vistir SUBDIR += py-voluptuous SUBDIR += py-voluptuous-serialize SUBDIR += py-vsts SUBDIR += py-vsts-cd-manager SUBDIR += py-vulture SUBDIR += py-wadllib SUBDIR += py-warlock SUBDIR += py-watchdog SUBDIR += py-watchfiles SUBDIR += py-watchgod SUBDIR += py-watermark SUBDIR += py-wcwidth SUBDIR += py-weblib SUBDIR += py-websockets SUBDIR += py-websockify SUBDIR += py-wheel SUBDIR += py-whichcraft SUBDIR += py-whistle SUBDIR += py-widgetsnbextension SUBDIR += py-wlc SUBDIR += py-woops SUBDIR += py-wrapt SUBDIR += py-wsgi-intercept SUBDIR += py-wsgi_xmlrpc SUBDIR += py-wsgitools SUBDIR += py-wsgiutils SUBDIR += py-wsme SUBDIR += py-xarray SUBDIR += py-xarray-einstats SUBDIR += py-xattr SUBDIR += py-xcaplib SUBDIR += py-xdg SUBDIR += py-xdis SUBDIR += py-xdoctest SUBDIR += py-xerox SUBDIR += py-xmltodict SUBDIR += py-xstatic SUBDIR += py-xstatic-angular SUBDIR += py-xstatic-angular-bootstrap SUBDIR += py-xstatic-angular-fileupload SUBDIR += py-xstatic-angular-gettext SUBDIR += py-xstatic-angular-lrdragndrop SUBDIR += py-xstatic-angular-schema-form SUBDIR += py-xstatic-bootstrap-datepicker SUBDIR += py-xstatic-bootstrap-scss SUBDIR += py-xstatic-bootswatch SUBDIR += py-xstatic-d3 SUBDIR += py-xstatic-font-awesome SUBDIR += py-xstatic-hogan SUBDIR += py-xstatic-jasmine SUBDIR += py-xstatic-jquery SUBDIR += py-xstatic-jquery-migrate SUBDIR += py-xstatic-jquery-ui SUBDIR += py-xstatic-jquery.quicksearch SUBDIR += py-xstatic-jquery.tablesorter SUBDIR += py-xstatic-jsencrypt SUBDIR += py-xstatic-mdi SUBDIR += py-xstatic-objectpath SUBDIR += py-xstatic-rickshaw SUBDIR += py-xstatic-roboto-fontface SUBDIR += py-xstatic-smart-table SUBDIR += py-xstatic-spin SUBDIR += py-xstatic-term.js SUBDIR += py-xstatic-tv4 SUBDIR += py-xxhash SUBDIR += py-yacs SUBDIR += py-yaml SUBDIR += py-yamllint SUBDIR += py-yamlordereddictloader SUBDIR += py-yandex-money-sdk SUBDIR += py-yappi SUBDIR += py-yapps2 SUBDIR += py-yarg SUBDIR += py-yaspin SUBDIR += py-yattag SUBDIR += py-yg.lockfile SUBDIR += py-yunomi SUBDIR += py-z3c.autoinclude SUBDIR += py-z3c.batching SUBDIR += py-z3c.zcmlhook SUBDIR += py-zc.buildout SUBDIR += py-zclockfile SUBDIR += py-zconfig SUBDIR += py-zict SUBDIR += py-zipp SUBDIR += py-zope.app.basicskin SUBDIR += py-zope.app.renderer SUBDIR += py-zope.app.schema SUBDIR += py-zope.broken SUBDIR += py-zope.browser SUBDIR += py-zope.browserresource SUBDIR += py-zope.cachedescriptors SUBDIR += py-zope.component SUBDIR += py-zope.configuration SUBDIR += py-zope.contentprovider SUBDIR += py-zope.contenttype SUBDIR += py-zope.copy SUBDIR += py-zope.datetime SUBDIR += py-zope.deferredimport SUBDIR += py-zope.deprecation SUBDIR += py-zope.dottedname SUBDIR += py-zope.event SUBDIR += py-zope.exceptions SUBDIR += py-zope.filerepresentation SUBDIR += py-zope.generations SUBDIR += py-zope.globalrequest SUBDIR += py-zope.i18n SUBDIR += py-zope.interface SUBDIR += py-zope.lifecycleevent SUBDIR += py-zope.location SUBDIR += py-zope.processlifetime SUBDIR += py-zope.publisher SUBDIR += py-zope.schema SUBDIR += py-zope.sequencesort SUBDIR += py-zope.size SUBDIR += py-zope.tales SUBDIR += py-zope.testbrowser SUBDIR += py-zope.testing SUBDIR += py-zope.traversing SUBDIR += py3c SUBDIR += pybind11 SUBDIR += pybugz SUBDIR += pycanberra SUBDIR += pycharm-ce SUBDIR += pycharm-pro SUBDIR += pycos SUBDIR += pycount SUBDIR += pydbus-common SUBDIR += pydio-packr SUBDIR += pygobject3-common SUBDIR += pylint SUBDIR += pyobfuscate SUBDIR += pyotherside-qt5 SUBDIR += pyside2 SUBDIR += pyside2-tools SUBDIR += pystring SUBDIR += pysvn SUBDIR += pythontidy SUBDIR += pytype SUBDIR += qbe SUBDIR += qca SUBDIR += qconf SUBDIR += qcoro SUBDIR += qgit SUBDIR += qjson SUBDIR += qmake SUBDIR += qschematic SUBDIR += qscintilla2-designerplugin-qt5 SUBDIR += qscintilla2-qt5 SUBDIR += qt-maybe SUBDIR += qt5 SUBDIR += qt5-assistant SUBDIR += qt5-buildtools SUBDIR += qt5-concurrent SUBDIR += qt5-core SUBDIR += qt5-dbus SUBDIR += qt5-designer SUBDIR += qt5-help SUBDIR += qt5-linguist SUBDIR += qt5-linguisttools SUBDIR += qt5-location SUBDIR += qt5-qdbus SUBDIR += qt5-qdbusviewer SUBDIR += qt5-qdoc SUBDIR += qt5-qdoc-data SUBDIR += qt5-qmake SUBDIR += qt5-remoteobjects SUBDIR += qt5-script SUBDIR += qt5-scripttools SUBDIR += qt5-scxml SUBDIR += qt5-testlib SUBDIR += qt5-uitools + SUBDIR += qt6-5compat + SUBDIR += qt6-base + SUBDIR += qt6-tools + SUBDIR += qt6-translations SUBDIR += qtcreator SUBDIR += quantum SUBDIR += quickcheck++ SUBDIR += quilt SUBDIR += rabs SUBDIR += radare2 SUBDIR += radian SUBDIR += ragel SUBDIR += raknet SUBDIR += rang SUBDIR += range-v3 SUBDIR += rapidcheck SUBDIR += rapidfuzz-cpp SUBDIR += rapidjson SUBDIR += rapidyaml SUBDIR += raylib SUBDIR += rbenv SUBDIR += rbtools SUBDIR += rclint SUBDIR += rcs SUBDIR += rcs57 SUBDIR += re2 SUBDIR += re2c SUBDIR += readline SUBDIR += rebar SUBDIR += rebar3 SUBDIR += redasm SUBDIR += redo SUBDIR += regexx SUBDIR += regexxer SUBDIR += remake SUBDIR += remotery SUBDIR += replay SUBDIR += replxx SUBDIR += reproc SUBDIR += resolv_wrapper SUBDIR += revive SUBDIR += rgbds SUBDIR += rgxg SUBDIR += rhtvision SUBDIR += rinutils SUBDIR += riscv32-unknown-elf-gcc SUBDIR += riscv64-gcc SUBDIR += riscv64-none-elf-gcc SUBDIR += rkcommon SUBDIR += rlog SUBDIR += rlwrap SUBDIR += robin-hood-hashing SUBDIR += robin-map SUBDIR += roboctl SUBDIR += robodoc SUBDIR += ros-catkin SUBDIR += ros-catkin_pkg SUBDIR += ros-console_bridge SUBDIR += ros-rosdep SUBDIR += ros-rosdistro SUBDIR += ros-rosinstall_generator SUBDIR += ros-rospkg SUBDIR += ros-urdfdom SUBDIR += ros-urdfdom_headers SUBDIR += ros-vcstool SUBDIR += ros-vcstools SUBDIR += ros-wstool SUBDIR += roswell SUBDIR += rote SUBDIR += rpc2 SUBDIR += rpclib SUBDIR += rsvndump SUBDIR += rth SUBDIR += rttr SUBDIR += ruby-bsearch SUBDIR += ruby-build SUBDIR += ruby-gems SUBDIR += ruby-install SUBDIR += ruby-rbprof SUBDIR += ruby-setup.rb SUBDIR += ruby-subversion SUBDIR += rubygem-CFPropertyList SUBDIR += rubygem-abstract SUBDIR += rubygem-actionpack-action_caching SUBDIR += rubygem-actionpack-page_caching SUBDIR += rubygem-actionview4 SUBDIR += rubygem-actionview5 SUBDIR += rubygem-actionview50 SUBDIR += rubygem-actionview52 SUBDIR += rubygem-actionview60 SUBDIR += rubygem-actionview61 SUBDIR += rubygem-actionview70 SUBDIR += rubygem-active_scaffold SUBDIR += rubygem-activejob4 SUBDIR += rubygem-activejob5 SUBDIR += rubygem-activejob50 SUBDIR += rubygem-activejob52 SUBDIR += rubygem-activejob60 SUBDIR += rubygem-activejob61 SUBDIR += rubygem-activejob70 SUBDIR += rubygem-activemessaging SUBDIR += rubygem-activerecord-deprecated_finders SUBDIR += rubygem-activesupport4 SUBDIR += rubygem-activesupport5 SUBDIR += rubygem-activesupport50 SUBDIR += rubygem-activesupport52 SUBDIR += rubygem-activesupport60 SUBDIR += rubygem-activesupport61 SUBDIR += rubygem-activesupport70 SUBDIR += rubygem-airborne SUBDIR += rubygem-akismet SUBDIR += rubygem-algebrick SUBDIR += rubygem-algorithms SUBDIR += rubygem-aliyun-sdk SUBDIR += rubygem-allison SUBDIR += rubygem-amazing_print SUBDIR += rubygem-analogger SUBDIR += rubygem-annoy SUBDIR += rubygem-ansi SUBDIR += rubygem-apipie-bindings SUBDIR += rubygem-apipie-params SUBDIR += rubygem-app_config SUBDIR += rubygem-appraisal SUBDIR += rubygem-arr-pm SUBDIR += rubygem-arrayfields SUBDIR += rubygem-ascii85 SUBDIR += rubygem-asetus SUBDIR += rubygem-aspectr SUBDIR += rubygem-ast SUBDIR += rubygem-astrolabe SUBDIR += rubygem-async SUBDIR += rubygem-async-io SUBDIR += rubygem-atomic SUBDIR += rubygem-attic SUBDIR += rubygem-attr_required SUBDIR += rubygem-authlogic SUBDIR += rubygem-avro SUBDIR += rubygem-awesome_print SUBDIR += rubygem-awrence SUBDIR += rubygem-aws-crt SUBDIR += rubygem-aws-eventstream SUBDIR += rubygem-aws-partitions SUBDIR += rubygem-aws-sdk SUBDIR += rubygem-aws-sdk-accessanalyzer SUBDIR += rubygem-aws-sdk-account SUBDIR += rubygem-aws-sdk-acm SUBDIR += rubygem-aws-sdk-acmpca SUBDIR += rubygem-aws-sdk-alexaforbusiness SUBDIR += rubygem-aws-sdk-amplify SUBDIR += rubygem-aws-sdk-amplifybackend SUBDIR += rubygem-aws-sdk-amplifyuibuilder SUBDIR += rubygem-aws-sdk-apigateway SUBDIR += rubygem-aws-sdk-apigatewaymanagementapi SUBDIR += rubygem-aws-sdk-apigatewayv2 SUBDIR += rubygem-aws-sdk-appconfig SUBDIR += rubygem-aws-sdk-appconfigdata SUBDIR += rubygem-aws-sdk-appflow SUBDIR += rubygem-aws-sdk-appintegrationsservice SUBDIR += rubygem-aws-sdk-applicationautoscaling SUBDIR += rubygem-aws-sdk-applicationcostprofiler SUBDIR += rubygem-aws-sdk-applicationdiscoveryservice SUBDIR += rubygem-aws-sdk-applicationinsights SUBDIR += rubygem-aws-sdk-appmesh SUBDIR += rubygem-aws-sdk-appregistry SUBDIR += rubygem-aws-sdk-apprunner SUBDIR += rubygem-aws-sdk-appstream SUBDIR += rubygem-aws-sdk-appsync SUBDIR += rubygem-aws-sdk-athena SUBDIR += rubygem-aws-sdk-auditmanager SUBDIR += rubygem-aws-sdk-augmentedairuntime SUBDIR += rubygem-aws-sdk-autoscaling SUBDIR += rubygem-aws-sdk-autoscalingplans SUBDIR += rubygem-aws-sdk-backup SUBDIR += rubygem-aws-sdk-backupgateway SUBDIR += rubygem-aws-sdk-batch SUBDIR += rubygem-aws-sdk-billingconductor SUBDIR += rubygem-aws-sdk-braket SUBDIR += rubygem-aws-sdk-budgets SUBDIR += rubygem-aws-sdk-chime SUBDIR += rubygem-aws-sdk-chimesdkidentity SUBDIR += rubygem-aws-sdk-chimesdkmediapipelines SUBDIR += rubygem-aws-sdk-chimesdkmeetings SUBDIR += rubygem-aws-sdk-chimesdkmessaging SUBDIR += rubygem-aws-sdk-cloud9 SUBDIR += rubygem-aws-sdk-cloudcontrolapi SUBDIR += rubygem-aws-sdk-clouddirectory SUBDIR += rubygem-aws-sdk-cloudformation SUBDIR += rubygem-aws-sdk-cloudfront SUBDIR += rubygem-aws-sdk-cloudhsm SUBDIR += rubygem-aws-sdk-cloudhsmv2 SUBDIR += rubygem-aws-sdk-cloudsearch SUBDIR += rubygem-aws-sdk-cloudsearchdomain SUBDIR += rubygem-aws-sdk-cloudtrail SUBDIR += rubygem-aws-sdk-cloudwatch SUBDIR += rubygem-aws-sdk-cloudwatchevents SUBDIR += rubygem-aws-sdk-cloudwatchevidently SUBDIR += rubygem-aws-sdk-cloudwatchlogs SUBDIR += rubygem-aws-sdk-cloudwatchrum SUBDIR += rubygem-aws-sdk-codeartifact SUBDIR += rubygem-aws-sdk-codebuild SUBDIR += rubygem-aws-sdk-codecommit SUBDIR += rubygem-aws-sdk-codedeploy SUBDIR += rubygem-aws-sdk-codeguruprofiler SUBDIR += rubygem-aws-sdk-codegurureviewer SUBDIR += rubygem-aws-sdk-codepipeline SUBDIR += rubygem-aws-sdk-codestar SUBDIR += rubygem-aws-sdk-codestarconnections SUBDIR += rubygem-aws-sdk-codestarnotifications SUBDIR += rubygem-aws-sdk-cognitoidentity SUBDIR += rubygem-aws-sdk-cognitoidentityprovider SUBDIR += rubygem-aws-sdk-cognitosync SUBDIR += rubygem-aws-sdk-comprehend SUBDIR += rubygem-aws-sdk-comprehendmedical SUBDIR += rubygem-aws-sdk-computeoptimizer SUBDIR += rubygem-aws-sdk-configservice SUBDIR += rubygem-aws-sdk-connect SUBDIR += rubygem-aws-sdk-connectcampaignservice SUBDIR += rubygem-aws-sdk-connectcontactlens SUBDIR += rubygem-aws-sdk-connectparticipant SUBDIR += rubygem-aws-sdk-connectwisdomservice SUBDIR += rubygem-aws-sdk-core SUBDIR += rubygem-aws-sdk-core2 SUBDIR += rubygem-aws-sdk-costandusagereportservice SUBDIR += rubygem-aws-sdk-costexplorer SUBDIR += rubygem-aws-sdk-customerprofiles SUBDIR += rubygem-aws-sdk-databasemigrationservice SUBDIR += rubygem-aws-sdk-dataexchange SUBDIR += rubygem-aws-sdk-datapipeline SUBDIR += rubygem-aws-sdk-datasync SUBDIR += rubygem-aws-sdk-dax SUBDIR += rubygem-aws-sdk-detective SUBDIR += rubygem-aws-sdk-devicefarm SUBDIR += rubygem-aws-sdk-devopsguru SUBDIR += rubygem-aws-sdk-directconnect SUBDIR += rubygem-aws-sdk-directoryservice SUBDIR += rubygem-aws-sdk-dlm SUBDIR += rubygem-aws-sdk-docdb SUBDIR += rubygem-aws-sdk-drs SUBDIR += rubygem-aws-sdk-dynamodb SUBDIR += rubygem-aws-sdk-dynamodbstreams SUBDIR += rubygem-aws-sdk-ebs SUBDIR += rubygem-aws-sdk-ec2 SUBDIR += rubygem-aws-sdk-ec2instanceconnect SUBDIR += rubygem-aws-sdk-ecr SUBDIR += rubygem-aws-sdk-ecrpublic SUBDIR += rubygem-aws-sdk-ecs SUBDIR += rubygem-aws-sdk-efs SUBDIR += rubygem-aws-sdk-eks SUBDIR += rubygem-aws-sdk-elasticache SUBDIR += rubygem-aws-sdk-elasticbeanstalk SUBDIR += rubygem-aws-sdk-elasticinference SUBDIR += rubygem-aws-sdk-elasticloadbalancing SUBDIR += rubygem-aws-sdk-elasticloadbalancingv2 SUBDIR += rubygem-aws-sdk-elasticsearchservice SUBDIR += rubygem-aws-sdk-elastictranscoder SUBDIR += rubygem-aws-sdk-emr SUBDIR += rubygem-aws-sdk-emrcontainers SUBDIR += rubygem-aws-sdk-emrserverless SUBDIR += rubygem-aws-sdk-eventbridge SUBDIR += rubygem-aws-sdk-finspace SUBDIR += rubygem-aws-sdk-finspacedata SUBDIR += rubygem-aws-sdk-firehose SUBDIR += rubygem-aws-sdk-fis SUBDIR += rubygem-aws-sdk-fms SUBDIR += rubygem-aws-sdk-forecastqueryservice SUBDIR += rubygem-aws-sdk-forecastservice SUBDIR += rubygem-aws-sdk-frauddetector SUBDIR += rubygem-aws-sdk-fsx SUBDIR += rubygem-aws-sdk-gamelift SUBDIR += rubygem-aws-sdk-gamesparks SUBDIR += rubygem-aws-sdk-glacier SUBDIR += rubygem-aws-sdk-globalaccelerator SUBDIR += rubygem-aws-sdk-glue SUBDIR += rubygem-aws-sdk-gluedatabrew SUBDIR += rubygem-aws-sdk-greengrass SUBDIR += rubygem-aws-sdk-greengrassv2 SUBDIR += rubygem-aws-sdk-groundstation SUBDIR += rubygem-aws-sdk-guardduty SUBDIR += rubygem-aws-sdk-health SUBDIR += rubygem-aws-sdk-healthlake SUBDIR += rubygem-aws-sdk-honeycode SUBDIR += rubygem-aws-sdk-iam SUBDIR += rubygem-aws-sdk-identitystore SUBDIR += rubygem-aws-sdk-imagebuilder SUBDIR += rubygem-aws-sdk-importexport SUBDIR += rubygem-aws-sdk-inspector SUBDIR += rubygem-aws-sdk-inspector2 SUBDIR += rubygem-aws-sdk-iot SUBDIR += rubygem-aws-sdk-iot1clickdevicesservice SUBDIR += rubygem-aws-sdk-iot1clickprojects SUBDIR += rubygem-aws-sdk-iotanalytics SUBDIR += rubygem-aws-sdk-iotdataplane SUBDIR += rubygem-aws-sdk-iotdeviceadvisor SUBDIR += rubygem-aws-sdk-iotevents SUBDIR += rubygem-aws-sdk-ioteventsdata SUBDIR += rubygem-aws-sdk-iotfleethub SUBDIR += rubygem-aws-sdk-iotjobsdataplane SUBDIR += rubygem-aws-sdk-iotsecuretunneling SUBDIR += rubygem-aws-sdk-iotsitewise SUBDIR += rubygem-aws-sdk-iotthingsgraph SUBDIR += rubygem-aws-sdk-iottwinmaker SUBDIR += rubygem-aws-sdk-iotwireless SUBDIR += rubygem-aws-sdk-ivs SUBDIR += rubygem-aws-sdk-ivschat SUBDIR += rubygem-aws-sdk-kafka SUBDIR += rubygem-aws-sdk-kafkaconnect SUBDIR += rubygem-aws-sdk-kendra SUBDIR += rubygem-aws-sdk-keyspaces SUBDIR += rubygem-aws-sdk-kinesis SUBDIR += rubygem-aws-sdk-kinesisanalytics SUBDIR += rubygem-aws-sdk-kinesisanalyticsv2 SUBDIR += rubygem-aws-sdk-kinesisvideo SUBDIR += rubygem-aws-sdk-kinesisvideoarchivedmedia SUBDIR += rubygem-aws-sdk-kinesisvideomedia SUBDIR += rubygem-aws-sdk-kinesisvideosignalingchannels SUBDIR += rubygem-aws-sdk-kms SUBDIR += rubygem-aws-sdk-lakeformation SUBDIR += rubygem-aws-sdk-lambda SUBDIR += rubygem-aws-sdk-lambdapreview SUBDIR += rubygem-aws-sdk-lex SUBDIR += rubygem-aws-sdk-lexmodelbuildingservice SUBDIR += rubygem-aws-sdk-lexmodelsv2 SUBDIR += rubygem-aws-sdk-lexruntimev2 SUBDIR += rubygem-aws-sdk-licensemanager SUBDIR += rubygem-aws-sdk-lightsail SUBDIR += rubygem-aws-sdk-locationservice SUBDIR += rubygem-aws-sdk-lookoutequipment SUBDIR += rubygem-aws-sdk-lookoutforvision SUBDIR += rubygem-aws-sdk-lookoutmetrics SUBDIR += rubygem-aws-sdk-machinelearning SUBDIR += rubygem-aws-sdk-macie SUBDIR += rubygem-aws-sdk-macie2 SUBDIR += rubygem-aws-sdk-mainframemodernization SUBDIR += rubygem-aws-sdk-managedblockchain SUBDIR += rubygem-aws-sdk-managedgrafana SUBDIR += rubygem-aws-sdk-marketplacecatalog SUBDIR += rubygem-aws-sdk-marketplacecommerceanalytics SUBDIR += rubygem-aws-sdk-marketplaceentitlementservice SUBDIR += rubygem-aws-sdk-marketplacemetering SUBDIR += rubygem-aws-sdk-mediaconnect SUBDIR += rubygem-aws-sdk-mediaconvert SUBDIR += rubygem-aws-sdk-medialive SUBDIR += rubygem-aws-sdk-mediapackage SUBDIR += rubygem-aws-sdk-mediapackagevod SUBDIR += rubygem-aws-sdk-mediastore SUBDIR += rubygem-aws-sdk-mediastoredata SUBDIR += rubygem-aws-sdk-mediatailor SUBDIR += rubygem-aws-sdk-memorydb SUBDIR += rubygem-aws-sdk-mgn SUBDIR += rubygem-aws-sdk-migrationhub SUBDIR += rubygem-aws-sdk-migrationhubconfig SUBDIR += rubygem-aws-sdk-migrationhubrefactorspaces SUBDIR += rubygem-aws-sdk-migrationhubstrategyrecommendations SUBDIR += rubygem-aws-sdk-mobile SUBDIR += rubygem-aws-sdk-mq SUBDIR += rubygem-aws-sdk-mturk SUBDIR += rubygem-aws-sdk-mwaa SUBDIR += rubygem-aws-sdk-neptune SUBDIR += rubygem-aws-sdk-networkfirewall SUBDIR += rubygem-aws-sdk-networkmanager SUBDIR += rubygem-aws-sdk-nimblestudio SUBDIR += rubygem-aws-sdk-opensearchservice SUBDIR += rubygem-aws-sdk-opsworks SUBDIR += rubygem-aws-sdk-opsworkscm SUBDIR += rubygem-aws-sdk-organizations SUBDIR += rubygem-aws-sdk-outposts SUBDIR += rubygem-aws-sdk-panorama SUBDIR += rubygem-aws-sdk-personalize SUBDIR += rubygem-aws-sdk-personalizeevents SUBDIR += rubygem-aws-sdk-personalizeruntime SUBDIR += rubygem-aws-sdk-pi SUBDIR += rubygem-aws-sdk-pinpoint SUBDIR += rubygem-aws-sdk-pinpointemail SUBDIR += rubygem-aws-sdk-pinpointsmsvoice SUBDIR += rubygem-aws-sdk-pinpointsmsvoicev2 SUBDIR += rubygem-aws-sdk-polly SUBDIR += rubygem-aws-sdk-pricing SUBDIR += rubygem-aws-sdk-prometheusservice SUBDIR += rubygem-aws-sdk-proton SUBDIR += rubygem-aws-sdk-qldb SUBDIR += rubygem-aws-sdk-qldbsession SUBDIR += rubygem-aws-sdk-quicksight SUBDIR += rubygem-aws-sdk-ram SUBDIR += rubygem-aws-sdk-rds SUBDIR += rubygem-aws-sdk-rdsdataservice SUBDIR += rubygem-aws-sdk-recyclebin SUBDIR += rubygem-aws-sdk-redshift SUBDIR += rubygem-aws-sdk-redshiftdataapiservice SUBDIR += rubygem-aws-sdk-redshiftserverless SUBDIR += rubygem-aws-sdk-rekognition SUBDIR += rubygem-aws-sdk-resiliencehub SUBDIR += rubygem-aws-sdk-resourcegroups SUBDIR += rubygem-aws-sdk-resourcegroupstaggingapi SUBDIR += rubygem-aws-sdk-resources SUBDIR += rubygem-aws-sdk-resources2 SUBDIR += rubygem-aws-sdk-robomaker SUBDIR += rubygem-aws-sdk-rolesanywhere SUBDIR += rubygem-aws-sdk-route53 SUBDIR += rubygem-aws-sdk-route53domains SUBDIR += rubygem-aws-sdk-route53recoverycluster SUBDIR += rubygem-aws-sdk-route53recoverycontrolconfig SUBDIR += rubygem-aws-sdk-route53recoveryreadiness SUBDIR += rubygem-aws-sdk-route53resolver SUBDIR += rubygem-aws-sdk-s3 SUBDIR += rubygem-aws-sdk-s3control SUBDIR += rubygem-aws-sdk-s3outposts SUBDIR += rubygem-aws-sdk-sagemaker SUBDIR += rubygem-aws-sdk-sagemakeredgemanager SUBDIR += rubygem-aws-sdk-sagemakerfeaturestoreruntime SUBDIR += rubygem-aws-sdk-sagemakerruntime SUBDIR += rubygem-aws-sdk-savingsplans SUBDIR += rubygem-aws-sdk-schemas SUBDIR += rubygem-aws-sdk-secretsmanager SUBDIR += rubygem-aws-sdk-securityhub SUBDIR += rubygem-aws-sdk-serverlessapplicationrepository SUBDIR += rubygem-aws-sdk-servicecatalog SUBDIR += rubygem-aws-sdk-servicediscovery SUBDIR += rubygem-aws-sdk-servicequotas SUBDIR += rubygem-aws-sdk-ses SUBDIR += rubygem-aws-sdk-sesv2 SUBDIR += rubygem-aws-sdk-shield SUBDIR += rubygem-aws-sdk-signer SUBDIR += rubygem-aws-sdk-simpledb SUBDIR += rubygem-aws-sdk-sms SUBDIR += rubygem-aws-sdk-snowball SUBDIR += rubygem-aws-sdk-snowdevicemanagement SUBDIR += rubygem-aws-sdk-sns SUBDIR += rubygem-aws-sdk-sqs SUBDIR += rubygem-aws-sdk-ssm SUBDIR += rubygem-aws-sdk-ssmcontacts SUBDIR += rubygem-aws-sdk-ssmincidents SUBDIR += rubygem-aws-sdk-sso SUBDIR += rubygem-aws-sdk-ssoadmin SUBDIR += rubygem-aws-sdk-ssooidc SUBDIR += rubygem-aws-sdk-states SUBDIR += rubygem-aws-sdk-storagegateway SUBDIR += rubygem-aws-sdk-support SUBDIR += rubygem-aws-sdk-swf SUBDIR += rubygem-aws-sdk-synthetics SUBDIR += rubygem-aws-sdk-textract SUBDIR += rubygem-aws-sdk-timestreamquery SUBDIR += rubygem-aws-sdk-timestreamwrite SUBDIR += rubygem-aws-sdk-transcribeservice SUBDIR += rubygem-aws-sdk-transcribestreamingservice SUBDIR += rubygem-aws-sdk-transfer SUBDIR += rubygem-aws-sdk-translate SUBDIR += rubygem-aws-sdk-voiceid SUBDIR += rubygem-aws-sdk-waf SUBDIR += rubygem-aws-sdk-wafregional SUBDIR += rubygem-aws-sdk-wafv2 SUBDIR += rubygem-aws-sdk-wellarchitected SUBDIR += rubygem-aws-sdk-workdocs SUBDIR += rubygem-aws-sdk-worklink SUBDIR += rubygem-aws-sdk-workmail SUBDIR += rubygem-aws-sdk-workmailmessageflow SUBDIR += rubygem-aws-sdk-workspaces SUBDIR += rubygem-aws-sdk-workspacesweb SUBDIR += rubygem-aws-sdk-xray SUBDIR += rubygem-aws-sdk2 SUBDIR += rubygem-aws-sigv2 SUBDIR += rubygem-aws-sigv4 SUBDIR += rubygem-axiom-types SUBDIR += rubygem-azure-storage SUBDIR += rubygem-azure-storage-blob SUBDIR += rubygem-azure-storage-common SUBDIR += rubygem-azure-storage-file SUBDIR += rubygem-azure-storage-queue SUBDIR += rubygem-azure-storage-table SUBDIR += rubygem-azure_cognitiveservices_anomalydetector SUBDIR += rubygem-azure_cognitiveservices_autosuggest SUBDIR += rubygem-azure_cognitiveservices_computervision SUBDIR += rubygem-azure_cognitiveservices_contentmoderator SUBDIR += rubygem-azure_cognitiveservices_customimagesearch SUBDIR += rubygem-azure_cognitiveservices_customsearch SUBDIR += rubygem-azure_cognitiveservices_customvisionprediction SUBDIR += rubygem-azure_cognitiveservices_customvisiontraining SUBDIR += rubygem-azure_cognitiveservices_entitysearch SUBDIR += rubygem-azure_cognitiveservices_face SUBDIR += rubygem-azure_cognitiveservices_formrecognizer SUBDIR += rubygem-azure_cognitiveservices_imagesearch SUBDIR += rubygem-azure_cognitiveservices_localsearch SUBDIR += rubygem-azure_cognitiveservices_luisauthoring SUBDIR += rubygem-azure_cognitiveservices_luisruntime SUBDIR += rubygem-azure_cognitiveservices_newssearch SUBDIR += rubygem-azure_cognitiveservices_personalizer SUBDIR += rubygem-azure_cognitiveservices_qnamaker SUBDIR += rubygem-azure_cognitiveservices_qnamakerruntime SUBDIR += rubygem-azure_cognitiveservices_spellcheck SUBDIR += rubygem-azure_cognitiveservices_textanalytics SUBDIR += rubygem-azure_cognitiveservices_videosearch SUBDIR += rubygem-azure_cognitiveservices_visualsearch SUBDIR += rubygem-azure_cognitiveservices_websearch SUBDIR += rubygem-azure_event_grid SUBDIR += rubygem-azure_graph_rbac SUBDIR += rubygem-azure_key_vault SUBDIR += rubygem-azure_mgmt_adhybridhealth_service SUBDIR += rubygem-azure_mgmt_advisor SUBDIR += rubygem-azure_mgmt_alerts_management SUBDIR += rubygem-azure_mgmt_analysis_services SUBDIR += rubygem-azure_mgmt_api_management SUBDIR += rubygem-azure_mgmt_appconfiguration SUBDIR += rubygem-azure_mgmt_attestation SUBDIR += rubygem-azure_mgmt_authorization SUBDIR += rubygem-azure_mgmt_automanage SUBDIR += rubygem-azure_mgmt_automation SUBDIR += rubygem-azure_mgmt_azurestack SUBDIR += rubygem-azure_mgmt_azurestack_hci SUBDIR += rubygem-azure_mgmt_batch SUBDIR += rubygem-azure_mgmt_batchai SUBDIR += rubygem-azure_mgmt_billing SUBDIR += rubygem-azure_mgmt_bot_service SUBDIR += rubygem-azure_mgmt_cdn SUBDIR += rubygem-azure_mgmt_cognitive_services SUBDIR += rubygem-azure_mgmt_commerce SUBDIR += rubygem-azure_mgmt_compute SUBDIR += rubygem-azure_mgmt_consumption SUBDIR += rubygem-azure_mgmt_container_instance SUBDIR += rubygem-azure_mgmt_container_registry SUBDIR += rubygem-azure_mgmt_container_service SUBDIR += rubygem-azure_mgmt_cosmosdb SUBDIR += rubygem-azure_mgmt_cost_management SUBDIR += rubygem-azure_mgmt_customer_insights SUBDIR += rubygem-azure_mgmt_data_factory SUBDIR += rubygem-azure_mgmt_data_migration SUBDIR += rubygem-azure_mgmt_databox SUBDIR += rubygem-azure_mgmt_datalake_analytics SUBDIR += rubygem-azure_mgmt_datalake_store SUBDIR += rubygem-azure_mgmt_datashare SUBDIR += rubygem-azure_mgmt_deployment_manager SUBDIR += rubygem-azure_mgmt_dev_spaces SUBDIR += rubygem-azure_mgmt_devtestlabs SUBDIR += rubygem-azure_mgmt_digitaltwins SUBDIR += rubygem-azure_mgmt_dns SUBDIR += rubygem-azure_mgmt_edgegateway SUBDIR += rubygem-azure_mgmt_event_grid SUBDIR += rubygem-azure_mgmt_event_hub SUBDIR += rubygem-azure_mgmt_features SUBDIR += rubygem-azure_mgmt_hanaonazure SUBDIR += rubygem-azure_mgmt_hdinsight SUBDIR += rubygem-azure_mgmt_hybrid_compute SUBDIR += rubygem-azure_mgmt_import_export SUBDIR += rubygem-azure_mgmt_iot_central SUBDIR += rubygem-azure_mgmt_iot_hub SUBDIR += rubygem-azure_mgmt_key_vault SUBDIR += rubygem-azure_mgmt_kubernetes_configuration SUBDIR += rubygem-azure_mgmt_kusto SUBDIR += rubygem-azure_mgmt_labservices SUBDIR += rubygem-azure_mgmt_links SUBDIR += rubygem-azure_mgmt_locks SUBDIR += rubygem-azure_mgmt_logic SUBDIR += rubygem-azure_mgmt_machine_learning SUBDIR += rubygem-azure_mgmt_machine_learning_services SUBDIR += rubygem-azure_mgmt_maintenance SUBDIR += rubygem-azure_mgmt_managed_applications SUBDIR += rubygem-azure_mgmt_mariadb SUBDIR += rubygem-azure_mgmt_marketplace_ordering SUBDIR += rubygem-azure_mgmt_media_services SUBDIR += rubygem-azure_mgmt_migrate SUBDIR += rubygem-azure_mgmt_mixedreality SUBDIR += rubygem-azure_mgmt_monitor SUBDIR += rubygem-azure_mgmt_msi SUBDIR += rubygem-azure_mgmt_mysql SUBDIR += rubygem-azure_mgmt_netapp SUBDIR += rubygem-azure_mgmt_network SUBDIR += rubygem-azure_mgmt_notification_hubs SUBDIR += rubygem-azure_mgmt_operational_insights SUBDIR += rubygem-azure_mgmt_operations_management SUBDIR += rubygem-azure_mgmt_peering SUBDIR += rubygem-azure_mgmt_policy SUBDIR += rubygem-azure_mgmt_policy_insights SUBDIR += rubygem-azure_mgmt_portal SUBDIR += rubygem-azure_mgmt_postgresql SUBDIR += rubygem-azure_mgmt_powerbi_dedicated SUBDIR += rubygem-azure_mgmt_powerbi_embedded SUBDIR += rubygem-azure_mgmt_privatedns SUBDIR += rubygem-azure_mgmt_recovery_services SUBDIR += rubygem-azure_mgmt_recovery_services_backup SUBDIR += rubygem-azure_mgmt_recovery_services_site_recovery SUBDIR += rubygem-azure_mgmt_redis SUBDIR += rubygem-azure_mgmt_relay SUBDIR += rubygem-azure_mgmt_reservations SUBDIR += rubygem-azure_mgmt_resource_health SUBDIR += rubygem-azure_mgmt_resourcegraph SUBDIR += rubygem-azure_mgmt_resources SUBDIR += rubygem-azure_mgmt_resources_management SUBDIR += rubygem-azure_mgmt_scheduler SUBDIR += rubygem-azure_mgmt_search SUBDIR += rubygem-azure_mgmt_security SUBDIR += rubygem-azure_mgmt_serialconsole SUBDIR += rubygem-azure_mgmt_service_bus SUBDIR += rubygem-azure_mgmt_service_fabric SUBDIR += rubygem-azure_mgmt_signalr SUBDIR += rubygem-azure_mgmt_sql SUBDIR += rubygem-azure_mgmt_sqlvirtualmachine SUBDIR += rubygem-azure_mgmt_stor_simple8000_series SUBDIR += rubygem-azure_mgmt_storage SUBDIR += rubygem-azure_mgmt_storagecache SUBDIR += rubygem-azure_mgmt_storagesync SUBDIR += rubygem-azure_mgmt_stream_analytics SUBDIR += rubygem-azure_mgmt_subscriptions SUBDIR += rubygem-azure_mgmt_support SUBDIR += rubygem-azure_mgmt_synapse SUBDIR += rubygem-azure_mgmt_time_series_insights SUBDIR += rubygem-azure_mgmt_traffic_manager SUBDIR += rubygem-azure_mgmt_vmware_cloudsimple SUBDIR += rubygem-azure_mgmt_web SUBDIR += rubygem-azure_sdk SUBDIR += rubygem-azure_service_fabric SUBDIR += rubygem-backports SUBDIR += rubygem-bacon SUBDIR += rubygem-baf SUBDIR += rubygem-batch-loader SUBDIR += rubygem-benelux SUBDIR += rubygem-bin_utils SUBDIR += rubygem-bindata SUBDIR += rubygem-bindex SUBDIR += rubygem-binding_of_caller SUBDIR += rubygem-bit-struct SUBDIR += rubygem-blankslate SUBDIR += rubygem-blockenspiel SUBDIR += rubygem-bones SUBDIR += rubygem-bootsnap SUBDIR += rubygem-bootsnap111 SUBDIR += rubygem-bootsnap112 SUBDIR += rubygem-bootstrap_form SUBDIR += rubygem-bson SUBDIR += rubygem-buftok SUBDIR += rubygem-bugspots SUBDIR += rubygem-builder SUBDIR += rubygem-byebug SUBDIR += rubygem-c21e SUBDIR += rubygem-cabin SUBDIR += rubygem-caesars SUBDIR += rubygem-cairo-gobject SUBDIR += rubygem-capybara SUBDIR += rubygem-capybara-screenshot SUBDIR += rubygem-cbor SUBDIR += rubygem-celluloid SUBDIR += rubygem-celluloid-essentials SUBDIR += rubygem-celluloid-extras SUBDIR += rubygem-celluloid-fsm SUBDIR += rubygem-celluloid-io SUBDIR += rubygem-celluloid-pool SUBDIR += rubygem-celluloid-supervision SUBDIR += rubygem-cf-uaa-lib SUBDIR += rubygem-cheffish SUBDIR += rubygem-childprocess SUBDIR += rubygem-childprocess3 SUBDIR += rubygem-childprocess40 SUBDIR += rubygem-chronic SUBDIR += rubygem-chronic_duration SUBDIR += rubygem-claide SUBDIR += rubygem-claide-plugins SUBDIR += rubygem-clamp SUBDIR += rubygem-clamp11 SUBDIR += rubygem-classifier SUBDIR += rubygem-classifier-reborn SUBDIR += rubygem-climate_control SUBDIR += rubygem-clio SUBDIR += rubygem-cliprompt SUBDIR += rubygem-cloudfiles SUBDIR += rubygem-cms_scanner SUBDIR += rubygem-cocaine SUBDIR += rubygem-coercible SUBDIR += rubygem-coffee-rails-rails5 SUBDIR += rubygem-coffee-rails-rails50 SUBDIR += rubygem-coffee-rails-rails52 SUBDIR += rubygem-coffee-rails4 SUBDIR += rubygem-coffee-rails41 SUBDIR += rubygem-coffee-script SUBDIR += rubygem-coffee-script-source SUBDIR += rubygem-colorize SUBDIR += rubygem-columnize SUBDIR += rubygem-commander SUBDIR += rubygem-concurrent-ruby SUBDIR += rubygem-concurrent-ruby-edge SUBDIR += rubygem-concurrent-ruby-ext SUBDIR += rubygem-configatron SUBDIR += rubygem-configstruct SUBDIR += rubygem-configuration SUBDIR += rubygem-console SUBDIR += rubygem-contracts SUBDIR += rubygem-contracts016 SUBDIR += rubygem-cookbook-omnifetch SUBDIR += rubygem-cool.io SUBDIR += rubygem-corefines SUBDIR += rubygem-cork SUBDIR += rubygem-countries SUBDIR += rubygem-crack SUBDIR += rubygem-cri SUBDIR += rubygem-csv SUBDIR += rubygem-cucumber SUBDIR += rubygem-cucumber-ci-environment SUBDIR += rubygem-cucumber-core SUBDIR += rubygem-cucumber-cucumber-expressions SUBDIR += rubygem-cucumber-cucumber-expressions15 SUBDIR += rubygem-cucumber-messages SUBDIR += rubygem-cucumber-messages18 SUBDIR += rubygem-cucumber-rails SUBDIR += rubygem-cucumber-tag-expressions SUBDIR += rubygem-cucumber-wire SUBDIR += rubygem-curses SUBDIR += rubygem-cyoi SUBDIR += rubygem-daemon_controller SUBDIR += rubygem-daemons SUBDIR += rubygem-danger SUBDIR += rubygem-danger-gitlab SUBDIR += rubygem-date SUBDIR += rubygem-ddmemoize SUBDIR += rubygem-ddmetrics SUBDIR += rubygem-ddplugin SUBDIR += rubygem-ddtrace SUBDIR += rubygem-debase-ruby_core_source SUBDIR += rubygem-debug SUBDIR += rubygem-debug_inspector SUBDIR += rubygem-debugger-linecache SUBDIR += rubygem-debugger-ruby_core_source SUBDIR += rubygem-debugger-xml SUBDIR += rubygem-declarative SUBDIR += rubygem-declarative-option SUBDIR += rubygem-deep_merge SUBDIR += rubygem-deep_test SUBDIR += rubygem-deface SUBDIR += rubygem-default_value_for SUBDIR += rubygem-delayed_job SUBDIR += rubygem-delayer SUBDIR += rubygem-delayer-deferred SUBDIR += rubygem-delegate SUBDIR += rubygem-deprecated SUBDIR += rubygem-deprecated2 SUBDIR += rubygem-descendants_tracker SUBDIR += rubygem-device_detector SUBDIR += rubygem-devise SUBDIR += rubygem-devise-rails5 SUBDIR += rubygem-devise-rails52 SUBDIR += rubygem-devise-rails60 SUBDIR += rubygem-devise-rails61 SUBDIR += rubygem-devise-rails70 SUBDIR += rubygem-devise47-rails61 SUBDIR += rubygem-did_you_mean SUBDIR += rubygem-dig_rb SUBDIR += rubygem-directory_watcher SUBDIR += rubygem-ditz SUBDIR += rubygem-diva SUBDIR += rubygem-docile SUBDIR += rubygem-docopt SUBDIR += rubygem-drb SUBDIR += rubygem-dry-configurable SUBDIR += rubygem-dry-container SUBDIR += rubygem-dry-core SUBDIR += rubygem-dry-equalizer SUBDIR += rubygem-dry-inflector SUBDIR += rubygem-dry-logic SUBDIR += rubygem-dry-types SUBDIR += rubygem-drydock SUBDIR += rubygem-dynflow SUBDIR += rubygem-e2mmap SUBDIR += rubygem-ecma-re-validator SUBDIR += rubygem-edavis10-object_daddy SUBDIR += rubygem-elif SUBDIR += rubygem-emoji_regex SUBDIR += rubygem-english SUBDIR += rubygem-enumerize SUBDIR += rubygem-equalizer SUBDIR += rubygem-equatable SUBDIR += rubygem-erb SUBDIR += rubygem-errand SUBDIR += rubygem-error_highlight SUBDIR += rubygem-et-orbi SUBDIR += rubygem-etc SUBDIR += rubygem-event_emitter SUBDIR += rubygem-eventmachine SUBDIR += rubygem-excon SUBDIR += rubygem-execjs SUBDIR += rubygem-extlib SUBDIR += rubygem-extras SUBDIR += rubygem-facets SUBDIR += rubygem-faker SUBDIR += rubygem-faraday-cookie_jar SUBDIR += rubygem-faraday-excon SUBDIR += rubygem-faraday-excon1 SUBDIR += rubygem-faraday_middleware-aws-sigv4 SUBDIR += rubygem-faraday_middleware-aws-sigv403 SUBDIR += rubygem-faraday_middleware-multi_json SUBDIR += rubygem-fast-stemmer SUBDIR += rubygem-fast_blank SUBDIR += rubygem-fast_gettext SUBDIR += rubygem-fast_gettext1 SUBDIR += rubygem-fast_stack SUBDIR += rubygem-fast_xor SUBDIR += rubygem-fastercsv SUBDIR += rubygem-fastri SUBDIR += rubygem-fattr SUBDIR += rubygem-fcntl SUBDIR += rubygem-ffi SUBDIR += rubygem-ffi-compiler SUBDIR += rubygem-ffi-libarchive SUBDIR += rubygem-ffi-win32-extensions SUBDIR += rubygem-ffi-yajl SUBDIR += rubygem-fiber-local SUBDIR += rubygem-fiddle SUBDIR += rubygem-file-tail SUBDIR += rubygem-filesize SUBDIR += rubygem-fileutils SUBDIR += rubygem-find SUBDIR += rubygem-flexmock SUBDIR += rubygem-flipper SUBDIR += rubygem-flipper-active_support_cache_store SUBDIR += rubygem-flipper-active_support_cache_store-rails61 SUBDIR += rubygem-flipper-ui SUBDIR += rubygem-flipper021 SUBDIR += rubygem-fluent-logger SUBDIR += rubygem-fog SUBDIR += rubygem-fog-core SUBDIR += rubygem-fog-core1 SUBDIR += rubygem-fog-core210 SUBDIR += rubygem-fog-json SUBDIR += rubygem-font-awesome-rails SUBDIR += rubygem-font-awesome-rails-rails5 SUBDIR += rubygem-font-awesome-rails-rails50 SUBDIR += rubygem-font-awesome-rails-rails52 SUBDIR += rubygem-font-awesome-rails-rails60 SUBDIR += rubygem-foreigner SUBDIR += rubygem-foreman SUBDIR += rubygem-formatador SUBDIR += rubygem-forwardable SUBDIR += rubygem-forwardable-extended SUBDIR += rubygem-fugit SUBDIR += rubygem-fugit12 SUBDIR += rubygem-fuzzy_match SUBDIR += rubygem-gapic-common SUBDIR += rubygem-gdata SUBDIR += rubygem-gem-compare SUBDIR += rubygem-gem_plugin SUBDIR += rubygem-gemcutter SUBDIR += rubygem-gemdiff SUBDIR += rubygem-gemnasium-parser SUBDIR += rubygem-gems SUBDIR += rubygem-generator SUBDIR += rubygem-generator_spec-rails4 SUBDIR += rubygem-generator_spec-rails5 SUBDIR += rubygem-georuby SUBDIR += rubygem-get_process_mem SUBDIR += rubygem-getopt SUBDIR += rubygem-getoptlong SUBDIR += rubygem-gettext SUBDIR += rubygem-gettext-setup SUBDIR += rubygem-gettext_i18n_rails SUBDIR += rubygem-gettext_i18n_rails_js-rails5 SUBDIR += rubygem-gettext_i18n_rails_js-rails50 SUBDIR += rubygem-gettext_i18n_rails_js-rails52 SUBDIR += rubygem-gettext_i18n_rails_js-rails61 SUBDIR += rubygem-gh SUBDIR += rubygem-gibbler SUBDIR += rubygem-gio2 SUBDIR += rubygem-git SUBDIR += rubygem-git-version-bump SUBDIR += rubygem-github_api SUBDIR += rubygem-gitlab SUBDIR += rubygem-gitlab-chronic SUBDIR += rubygem-gitlab-dangerfiles SUBDIR += rubygem-gitlab-experiment SUBDIR += rubygem-gitlab-labkit SUBDIR += rubygem-gitlab-license SUBDIR += rubygem-gitlab-license_finder SUBDIR += rubygem-gitlab-pygments.rb SUBDIR += rubygem-gitlab-sidekiq-fetcher SUBDIR += rubygem-gitlab_chronic_duration SUBDIR += rubygem-gitlab_git SUBDIR += rubygem-gitlab_meta SUBDIR += rubygem-glib2 SUBDIR += rubygem-gobject-introspection SUBDIR += rubygem-google-api-client SUBDIR += rubygem-google-apis-compute_v1 SUBDIR += rubygem-google-apis-core SUBDIR += rubygem-google-apis-discovery_v1 SUBDIR += rubygem-google-apis-generator SUBDIR += rubygem-google-apis-iamcredentials_v1 SUBDIR += rubygem-google-apis-monitoring_v3 SUBDIR += rubygem-google-apis-pubsub_v1 SUBDIR += rubygem-google-apis-sqladmin_v1beta4 SUBDIR += rubygem-google-apis-storage_v1 SUBDIR += rubygem-google-gax SUBDIR += rubygem-google-protobuf SUBDIR += rubygem-google-protobuf319 SUBDIR += rubygem-googleapis-common-protos SUBDIR += rubygem-googleapis-common-protos-types SUBDIR += rubygem-graf SUBDIR += rubygem-grape SUBDIR += rubygem-grape-entity SUBDIR += rubygem-grape-path-helpers SUBDIR += rubygem-grape-route-helpers SUBDIR += rubygem-grape-swagger SUBDIR += rubygem-grape15 SUBDIR += rubygem-grape_logging SUBDIR += rubygem-graphiql-rails SUBDIR += rubygem-graphlient SUBDIR += rubygem-graphql SUBDIR += rubygem-graphql-client SUBDIR += rubygem-graphql-docs SUBDIR += rubygem-grpc-google-iam-v1 SUBDIR += rubygem-guess_html_encoding SUBDIR += rubygem-gyoku SUBDIR += rubygem-hamster SUBDIR += rubygem-hana SUBDIR += rubygem-hashdiff SUBDIR += rubygem-hashery SUBDIR += rubygem-hashie SUBDIR += rubygem-hashie-forbidden_attributes SUBDIR += rubygem-hashie4 SUBDIR += rubygem-health_check SUBDIR += rubygem-heapy SUBDIR += rubygem-highline SUBDIR += rubygem-highline1 SUBDIR += rubygem-hike SUBDIR += rubygem-hike1 SUBDIR += rubygem-hitimes SUBDIR += rubygem-hocon SUBDIR += rubygem-hoe SUBDIR += rubygem-holidays SUBDIR += rubygem-http_accept_language SUBDIR += rubygem-i18n SUBDIR += rubygem-i18n_data SUBDIR += rubygem-icalendar SUBDIR += rubygem-ice_cube SUBDIR += rubygem-ice_nine SUBDIR += rubygem-inflecto SUBDIR += rubygem-iniparse SUBDIR += rubygem-insist SUBDIR += rubygem-inspec-core SUBDIR += rubygem-instance_storage SUBDIR += rubygem-interact SUBDIR += rubygem-io-console SUBDIR += rubygem-io-event SUBDIR += rubygem-io-like SUBDIR += rubygem-io-nonblock SUBDIR += rubygem-io-wait SUBDIR += rubygem-io-wait01 SUBDIR += rubygem-iobuffer SUBDIR += rubygem-iostruct SUBDIR += rubygem-ipynbdiff SUBDIR += rubygem-irb SUBDIR += rubygem-iso8601 SUBDIR += rubygem-jaeger-client SUBDIR += rubygem-jammit SUBDIR += rubygem-jaro_winkler SUBDIR += rubygem-jasmine-core SUBDIR += rubygem-jbuilder SUBDIR += rubygem-jbuilder-rails5 SUBDIR += rubygem-jbuilder-rails50 SUBDIR += rubygem-jbuilder-rails52 SUBDIR += rubygem-jbuilder-rails60 SUBDIR += rubygem-jbuilder-rails61 SUBDIR += rubygem-jekyll-coffeescript SUBDIR += rubygem-jenkins_api_client SUBDIR += rubygem-jeweler SUBDIR += rubygem-jira-ruby SUBDIR += rubygem-jira-ruby21 SUBDIR += rubygem-jmespath SUBDIR += rubygem-jquery-ui-themes SUBDIR += rubygem-jruby-jars SUBDIR += rubygem-json SUBDIR += rubygem-json-canonicalization SUBDIR += rubygem-json-schema SUBDIR += rubygem-json1 SUBDIR += rubygem-json25 SUBDIR += rubygem-json_pure SUBDIR += rubygem-json_pure1 SUBDIR += rubygem-json_schema SUBDIR += rubygem-json_schemer SUBDIR += rubygem-jsonapi-renderer SUBDIR += rubygem-jsonpath SUBDIR += rubygem-kafo SUBDIR += rubygem-kafo_parsers SUBDIR += rubygem-kafo_wizards SUBDIR += rubygem-kgio SUBDIR += rubygem-launchy SUBDIR += rubygem-lazy_priority_queue SUBDIR += rubygem-libddprof SUBDIR += rubygem-libddwaf SUBDIR += rubygem-librarian SUBDIR += rubygem-librarianp SUBDIR += rubygem-libyajl2 SUBDIR += rubygem-license_finder SUBDIR += rubygem-licensee SUBDIR += rubygem-listen SUBDIR += rubygem-little-plugger SUBDIR += rubygem-local_time SUBDIR += rubygem-local_time-rails5 SUBDIR += rubygem-locale SUBDIR += rubygem-lockfile SUBDIR += rubygem-logger SUBDIR += rubygem-logging SUBDIR += rubygem-logster SUBDIR += rubygem-loquacious SUBDIR += rubygem-lru_redux SUBDIR += rubygem-lumberjack SUBDIR += rubygem-main SUBDIR += rubygem-manpages SUBDIR += rubygem-map SUBDIR += rubygem-marcel SUBDIR += rubygem-memo_wise SUBDIR += rubygem-memoist SUBDIR += rubygem-memoizable SUBDIR += rubygem-memoize SUBDIR += rubygem-memory_profiler SUBDIR += rubygem-mercenary SUBDIR += rubygem-message_bus SUBDIR += rubygem-metaclass SUBDIR += rubygem-metaid SUBDIR += rubygem-metasm SUBDIR += rubygem-method_source SUBDIR += rubygem-micromachine SUBDIR += rubygem-middleware SUBDIR += rubygem-mini_histogram SUBDIR += rubygem-mini_portile2 SUBDIR += rubygem-mini_portile2-25 SUBDIR += rubygem-minitest SUBDIR += rubygem-mixlib-archive SUBDIR += rubygem-mixlib-authentication SUBDIR += rubygem-mixlib-cli SUBDIR += rubygem-mixlib-config SUBDIR += rubygem-mixlib-install SUBDIR += rubygem-mixlib-log SUBDIR += rubygem-mixlib-shellout SUBDIR += rubygem-mixlib-versioning SUBDIR += rubygem-mize SUBDIR += rubygem-mkrf SUBDIR += rubygem-mmap2 SUBDIR += rubygem-mocha SUBDIR += rubygem-molinillo SUBDIR += rubygem-moneta SUBDIR += rubygem-mongo SUBDIR += rubygem-mono_logger SUBDIR += rubygem-ms_rest SUBDIR += rubygem-ms_rest_azure SUBDIR += rubygem-msgpack SUBDIR += rubygem-mspec SUBDIR += rubygem-multi_json SUBDIR += rubygem-multi_json114 SUBDIR += rubygem-multi_test SUBDIR += rubygem-murmurhash3 SUBDIR += rubygem-mustache SUBDIR += rubygem-mustache-sinatra SUBDIR += rubygem-mustache0 SUBDIR += rubygem-mustermann SUBDIR += rubygem-mustermann-grape SUBDIR += rubygem-mutex_m SUBDIR += rubygem-mutter SUBDIR += rubygem-nakayoshi_fork SUBDIR += rubygem-nap SUBDIR += rubygem-native-package-installer SUBDIR += rubygem-naught SUBDIR += rubygem-necromancer SUBDIR += rubygem-needle SUBDIR += rubygem-nenv SUBDIR += rubygem-nesty SUBDIR += rubygem-netaddr SUBDIR += rubygem-newrelic-grape SUBDIR += rubygem-newrelic_rpm SUBDIR += rubygem-nice-ffi SUBDIR += rubygem-nio4r SUBDIR += rubygem-nori SUBDIR += rubygem-notiffany SUBDIR += rubygem-notify SUBDIR += rubygem-nprogress-rails SUBDIR += rubygem-nsa-rails5 SUBDIR += rubygem-numerizer SUBDIR += rubygem-oci SUBDIR += rubygem-octopress-hooks SUBDIR += rubygem-oj SUBDIR += rubygem-oj310 SUBDIR += rubygem-omniauth_crowd SUBDIR += rubygem-omnibus SUBDIR += rubygem-open3 SUBDIR += rubygem-open3_backport SUBDIR += rubygem-open4 SUBDIR += rubygem-opentracing SUBDIR += rubygem-opt_parse_validator SUBDIR += rubygem-optimist SUBDIR += rubygem-optparse SUBDIR += rubygem-orm_adapter SUBDIR += rubygem-os SUBDIR += rubygem-ostruct SUBDIR += rubygem-p4ruby SUBDIR += rubygem-paint SUBDIR += rubygem-paperclip-rails5 SUBDIR += rubygem-paperclip-rails50 SUBDIR += rubygem-parser SUBDIR += rubygem-pastel SUBDIR += rubygem-patch_finder SUBDIR += rubygem-pathname SUBDIR += rubygem-pathspec SUBDIR += rubygem-pathutil SUBDIR += rubygem-pdk SUBDIR += rubygem-pedump SUBDIR += rubygem-peek SUBDIR += rubygem-peek-gc-rails52 SUBDIR += rubygem-peek-host SUBDIR += rubygem-peek-performance_bar SUBDIR += rubygem-peek-rails4 SUBDIR += rubygem-peek-rails52 SUBDIR += rubygem-peek-rails60 SUBDIR += rubygem-peek-rails61 SUBDIR += rubygem-peek-rblineprof-rails52 SUBDIR += rubygem-peek-redis-rails52 SUBDIR += rubygem-pkg-config SUBDIR += rubygem-platform SUBDIR += rubygem-pleaserun SUBDIR += rubygem-plist SUBDIR += rubygem-pluggaloid SUBDIR += rubygem-polyamorous SUBDIR += rubygem-polyglot SUBDIR += rubygem-popen4 SUBDIR += rubygem-posix-spawn SUBDIR += rubygem-power_assert SUBDIR += rubygem-powerbar SUBDIR += rubygem-powerpack SUBDIR += rubygem-pp SUBDIR += rubygem-pqueue SUBDIR += rubygem-prettyprint SUBDIR += rubygem-profile SUBDIR += rubygem-progressbar SUBDIR += rubygem-prometheus-client-mmap SUBDIR += rubygem-protected_attributes SUBDIR += rubygem-protobuf-cucumber SUBDIR += rubygem-protocol SUBDIR += rubygem-pry SUBDIR += rubygem-pry-byebug SUBDIR += rubygem-pry-rails SUBDIR += rubygem-pry-remote SUBDIR += rubygem-pry-remote-em SUBDIR += rubygem-pstore SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-puppet-resource_api SUBDIR += rubygem-pygments.rb SUBDIR += rubygem-que SUBDIR += rubygem-que-scheduler SUBDIR += rubygem-r18n-core SUBDIR += rubygem-r18n-desktop SUBDIR += rubygem-r18n-rails SUBDIR += rubygem-r18n-rails-api SUBDIR += rubygem-rabl SUBDIR += rubygem-rabl-rails50 SUBDIR += rubygem-racc SUBDIR += rubygem-rack-mini-profiler SUBDIR += rubygem-rack-raw-upload SUBDIR += rubygem-rails-deprecated_sanitizer SUBDIR += rubygem-rails-deprecated_sanitizer-rails5 SUBDIR += rubygem-rails-deprecated_sanitizer-rails50 SUBDIR += rubygem-rails-i18n-rails5 SUBDIR += rubygem-rails-i18n-rails50 SUBDIR += rubygem-rails-i18n-rails52 SUBDIR += rubygem-rails-i18n-rails60 SUBDIR += rubygem-rails-i18n-rails61 SUBDIR += rubygem-rails-i18n-rails70 SUBDIR += rubygem-rails-observers SUBDIR += rubygem-rainbow SUBDIR += rubygem-rake SUBDIR += rubygem-rake-compiler SUBDIR += rubygem-rake-compiler-dock SUBDIR += rubygem-rake-contrib SUBDIR += rubygem-ransack SUBDIR += rubygem-rapt SUBDIR += rubygem-rash SUBDIR += rubygem-rash_alt SUBDIR += rubygem-rb-fsevent SUBDIR += rubygem-rb-inotify SUBDIR += rubygem-rb-kqueue SUBDIR += rubygem-rblineprof SUBDIR += rubygem-rbs SUBDIR += rubygem-rbs_json_schema SUBDIR += rubygem-rbtrace SUBDIR += rubygem-rbtree SUBDIR += rubygem-rdoc SUBDIR += rubygem-rdoc63 SUBDIR += rubygem-re2 SUBDIR += rubygem-react-rails SUBDIR += rubygem-react-rails-rails5 SUBDIR += rubygem-readline SUBDIR += rubygem-readline-ext SUBDIR += rubygem-readwritesettings SUBDIR += rubygem-recaptcha SUBDIR += rubygem-recursive-open-struct SUBDIR += rubygem-red-datasets SUBDIR += rubygem-redis-activesupport SUBDIR += rubygem-redis-activesupport-rails5 SUBDIR += rubygem-redis-activesupport-rails50 SUBDIR += rubygem-redis-activesupport-rails52 SUBDIR += rubygem-redis-activesupport-rails60 SUBDIR += rubygem-redis-activesupport-rails61 SUBDIR += rubygem-redis-store SUBDIR += rubygem-redmine_plugin_support SUBDIR += rubygem-reentrant_flock SUBDIR += rubygem-ref SUBDIR += rubygem-reline SUBDIR += rubygem-request_store SUBDIR += rubygem-request_store14 SUBDIR += rubygem-require_all SUBDIR += rubygem-resque SUBDIR += rubygem-resque-scheduler SUBDIR += rubygem-retriable SUBDIR += rubygem-retryable SUBDIR += rubygem-rgen SUBDIR += rubygem-rgl SUBDIR += rubygem-rice SUBDIR += rubygem-rinda SUBDIR += rubygem-rodzilla SUBDIR += rubygem-rotp SUBDIR += rubygem-rr SUBDIR += rubygem-rrd-ffi SUBDIR += rubygem-rscm SUBDIR += rubygem-rsec SUBDIR += rubygem-rspec SUBDIR += rubygem-rspec-core SUBDIR += rubygem-rspec-expectations SUBDIR += rubygem-rspec-its SUBDIR += rubygem-rspec-logsplit SUBDIR += rubygem-rspec-mocks SUBDIR += rubygem-rspec-rails SUBDIR += rubygem-rspec-support SUBDIR += rubygem-rspec_junit_formatter SUBDIR += rubygem-rubocop SUBDIR += rubygem-rubocop-ast SUBDIR += rubygem-rubocop-performance SUBDIR += rubygem-rubocop-rake SUBDIR += rubygem-rubocop-rspec SUBDIR += rubygem-ruby-atmos-pure SUBDIR += rubygem-ruby-bugzilla SUBDIR += rubygem-ruby-enum SUBDIR += rubygem-ruby-filemagic SUBDIR += rubygem-ruby-fogbugz SUBDIR += rubygem-ruby-fogbugz021 SUBDIR += rubygem-ruby-libvirt SUBDIR += rubygem-ruby-macho SUBDIR += rubygem-ruby-magic SUBDIR += rubygem-ruby-ole SUBDIR += rubygem-ruby-prof SUBDIR += rubygem-ruby-progressbar SUBDIR += rubygem-ruby-statistics SUBDIR += rubygem-ruby2_keywords SUBDIR += rubygem-ruby2ruby SUBDIR += rubygem-ruby_dep SUBDIR += rubygem-ruby_parser SUBDIR += rubygem-rubygems-mirror SUBDIR += rubygem-rubygems-tasks SUBDIR += rubygem-rubygems-test SUBDIR += rubygem-rubyinline SUBDIR += rubygem-rubyinlineaccel SUBDIR += rubygem-rubytree SUBDIR += rubygem-rufus-scheduler SUBDIR += rubygem-rugged SUBDIR += rubygem-runt SUBDIR += rubygem-ruport SUBDIR += rubygem-safe_yaml SUBDIR += rubygem-scanf SUBDIR += rubygem-schash SUBDIR += rubygem-scientist SUBDIR += rubygem-sd_notify SUBDIR += rubygem-sdoc SUBDIR += rubygem-semantic_puppet SUBDIR += rubygem-semantic_range SUBDIR += rubygem-semi_semantic SUBDIR += rubygem-semver2 SUBDIR += rubygem-semverse SUBDIR += rubygem-sentry-rails SUBDIR += rubygem-sentry-raven SUBDIR += rubygem-sentry-ruby SUBDIR += rubygem-sentry-ruby-core SUBDIR += rubygem-sentry-sidekiq SUBDIR += rubygem-sequel SUBDIR += rubygem-server_sent_events SUBDIR += rubygem-set SUBDIR += rubygem-settingslogic SUBDIR += rubygem-sexp_processor SUBDIR += rubygem-shell SUBDIR += rubygem-shoulda SUBDIR += rubygem-shoulda-context SUBDIR += rubygem-shoulda-matchers SUBDIR += rubygem-sidekiq SUBDIR += rubygem-sidekiq-bulk SUBDIR += rubygem-sidekiq-cron SUBDIR += rubygem-sidekiq-cron-sidekiq64 SUBDIR += rubygem-sidekiq-scheduler SUBDIR += rubygem-sidekiq-unique-jobs SUBDIR += rubygem-sidekiq64 SUBDIR += rubygem-sidetiq SUBDIR += rubygem-sigdump SUBDIR += rubygem-simple-navigation SUBDIR += rubygem-simple-navigation-rails50 SUBDIR += rubygem-simple_form SUBDIR += rubygem-simple_form-rails5 SUBDIR += rubygem-simple_form-rails50 SUBDIR += rubygem-simplecov SUBDIR += rubygem-simplecov_json_formatter SUBDIR += rubygem-singleton SUBDIR += rubygem-skiptrace SUBDIR += rubygem-slack-messenger SUBDIR += rubygem-slack-notifier SUBDIR += rubygem-slim SUBDIR += rubygem-slop SUBDIR += rubygem-slop3 SUBDIR += rubygem-slow_enumerator_tools SUBDIR += rubygem-snowplow-tracker SUBDIR += rubygem-soap4r SUBDIR += rubygem-solve SUBDIR += rubygem-sorted_set SUBDIR += rubygem-spring SUBDIR += rubygem-spring-watcher-listen SUBDIR += rubygem-sprockets SUBDIR += rubygem-sprockets-es6 SUBDIR += rubygem-sprockets-helpers SUBDIR += rubygem-sprockets-rails-rails4 SUBDIR += rubygem-sprockets-rails-rails5 SUBDIR += rubygem-sprockets-rails-rails50 SUBDIR += rubygem-sprockets-rails-rails52 SUBDIR += rubygem-sprockets-rails-rails60 SUBDIR += rubygem-sprockets-rails-rails61 SUBDIR += rubygem-sprockets-rails-rails70 SUBDIR += rubygem-sprockets-sass SUBDIR += rubygem-sprockets2 SUBDIR += rubygem-sprockets3 SUBDIR += rubygem-spruz SUBDIR += rubygem-stackprof SUBDIR += rubygem-state_machine SUBDIR += rubygem-state_machines SUBDIR += rubygem-statsd SUBDIR += rubygem-statsd-instrument SUBDIR += rubygem-statsd-ruby SUBDIR += rubygem-stella SUBDIR += rubygem-stemmer SUBDIR += rubygem-stomp SUBDIR += rubygem-stoplight SUBDIR += rubygem-storable SUBDIR += rubygem-stream SUBDIR += rubygem-streetaddress SUBDIR += rubygem-stringex SUBDIR += rubygem-stringio SUBDIR += rubygem-strings SUBDIR += rubygem-strings-ansi SUBDIR += rubygem-strong_migrations SUBDIR += rubygem-strptime SUBDIR += rubygem-strscan SUBDIR += rubygem-structured_warnings SUBDIR += rubygem-stud SUBDIR += rubygem-subexec SUBDIR += rubygem-sucker_punch SUBDIR += rubygem-sugar-high SUBDIR += rubygem-sumbur SUBDIR += rubygem-sundawg_country_codes SUBDIR += rubygem-svn2git SUBDIR += rubygem-swagger-blocks SUBDIR += rubygem-sync SUBDIR += rubygem-sysinfo SUBDIR += rubygem-syslog SUBDIR += rubygem-systemu SUBDIR += rubygem-table_print SUBDIR += rubygem-tdiff SUBDIR += rubygem-tempfile SUBDIR += rubygem-templater SUBDIR += rubygem-temple SUBDIR += rubygem-term-ansicolor SUBDIR += rubygem-terrapin SUBDIR += rubygem-test-unit SUBDIR += rubygem-thor SUBDIR += rubygem-thor0 SUBDIR += rubygem-thor10 SUBDIR += rubygem-thread_safe SUBDIR += rubygem-thrift SUBDIR += rubygem-thwait SUBDIR += rubygem-tilt SUBDIR += rubygem-tilt1 SUBDIR += rubygem-time SUBDIR += rubygem-timeliness SUBDIR += rubygem-timeout SUBDIR += rubygem-timers SUBDIR += rubygem-tins SUBDIR += rubygem-titlecase SUBDIR += rubygem-tmpdir SUBDIR += rubygem-to_regexp SUBDIR += rubygem-tool SUBDIR += rubygem-tracer SUBDIR += rubygem-traces SUBDIR += rubygem-trailblazer-option SUBDIR += rubygem-transaction-simple SUBDIR += rubygem-travis SUBDIR += rubygem-treetop SUBDIR += rubygem-trollop SUBDIR += rubygem-trollop1 SUBDIR += rubygem-tsort SUBDIR += rubygem-tty SUBDIR += rubygem-tty-box SUBDIR += rubygem-tty-color SUBDIR += rubygem-tty-command SUBDIR += rubygem-tty-config SUBDIR += rubygem-tty-cursor SUBDIR += rubygem-tty-editor SUBDIR += rubygem-tty-file SUBDIR += rubygem-tty-font SUBDIR += rubygem-tty-logger SUBDIR += rubygem-tty-markdown SUBDIR += rubygem-tty-pager SUBDIR += rubygem-tty-pie SUBDIR += rubygem-tty-platform SUBDIR += rubygem-tty-progressbar SUBDIR += rubygem-tty-prompt SUBDIR += rubygem-tty-reader SUBDIR += rubygem-tty-screen SUBDIR += rubygem-tty-spinner SUBDIR += rubygem-tty-table SUBDIR += rubygem-tty-tree SUBDIR += rubygem-tty-which SUBDIR += rubygem-turn SUBDIR += rubygem-typed-array SUBDIR += rubygem-typeprof SUBDIR += rubygem-tzinfo SUBDIR += rubygem-tzinfo-data SUBDIR += rubygem-tzinfo1 SUBDIR += rubygem-uber SUBDIR += rubygem-un SUBDIR += rubygem-unicode SUBDIR += rubygem-unicode-display_width SUBDIR += rubygem-unicode_utils SUBDIR += rubygem-unleash SUBDIR += rubygem-useragent SUBDIR += rubygem-uuid SUBDIR += rubygem-uuidtools SUBDIR += rubygem-valid SUBDIR += rubygem-validatable SUBDIR += rubygem-validate_email SUBDIR += rubygem-validate_url SUBDIR += rubygem-validates_timeliness SUBDIR += rubygem-version_gem SUBDIR += rubygem-versionomy SUBDIR += rubygem-view_component-rails61 SUBDIR += rubygem-virtus SUBDIR += rubygem-warbler SUBDIR += rubygem-warden SUBDIR += rubygem-warning SUBDIR += rubygem-wdm SUBDIR += rubygem-weakref SUBDIR += rubygem-web-console-rails60 SUBDIR += rubygem-web-console-rails61 SUBDIR += rubygem-web-console2 SUBDIR += rubygem-web-console3-rails5 SUBDIR += rubygem-web-console3-rails50 SUBDIR += rubygem-web-console3-rails52 SUBDIR += rubygem-webby SUBDIR += rubygem-webfinger SUBDIR += rubygem-webpacker-rails60 SUBDIR += rubygem-webpacker-rails61 SUBDIR += rubygem-webpacker4-rails60 SUBDIR += rubygem-will_paginate SUBDIR += rubygem-windows_error SUBDIR += rubygem-wisper SUBDIR += rubygem-with_env SUBDIR += rubygem-wmi-lite SUBDIR += rubygem-xdg SUBDIR += rubygem-xdg2 SUBDIR += rubygem-xdg3 SUBDIR += rubygem-xdg4 SUBDIR += rubygem-xdg5 SUBDIR += rubygem-xpath SUBDIR += rubygem-yajl-ruby SUBDIR += rubygem-yui-compressor SUBDIR += rubygem-zeitwerk SUBDIR += rubygem-zentest SUBDIR += rubygem-zhexdump SUBDIR += rubygem-zlib SUBDIR += rubygem-zstd-ruby SUBDIR += rubymine SUBDIR += rudeconfig SUBDIR += rudiments SUBDIR += rust-analyzer SUBDIR += rust-bindgen SUBDIR += rust-cbindgen SUBDIR += rvi SUBDIR += rvm SUBDIR += sabre SUBDIR += safe-iop SUBDIR += samurai SUBDIR += sasm SUBDIR += sbt SUBDIR += scalatest SUBDIR += scandoc SUBDIR += sccache SUBDIR += sccs SUBDIR += schilybase SUBDIR += scons SUBDIR += sd-mux-ctrl SUBDIR += sdbus-cpp SUBDIR += sdl12 SUBDIR += sdl12-compat SUBDIR += sdl20 SUBDIR += sdl2pp SUBDIR += sdl_console SUBDIR += sdlmm SUBDIR += sdlskk SUBDIR += sdts++ SUBDIR += sedsed SUBDIR += sentry-cli SUBDIR += serd SUBDIR += serdisplib SUBDIR += sfml SUBDIR += sfml1 SUBDIR += sfsexp SUBDIR += sgb SUBDIR += shapelib SUBDIR += shards SUBDIR += shell-toolbox SUBDIR += shflags SUBDIR += shfmt SUBDIR += shiboken2 SUBDIR += shmap SUBDIR += shtk SUBDIR += shtool SUBDIR += sigar SUBDIR += sigslot SUBDIR += silc-toolkit SUBDIR += silentbob SUBDIR += simavr SUBDIR += simde SUBDIR += simdjson SUBDIR += simgear SUBDIR += simian SUBDIR += simpleini SUBDIR += sjasmplus SUBDIR += skalibs SUBDIR += skypat SUBDIR += slf4j SUBDIR += slibtool SUBDIR += smake SUBDIR += smc SUBDIR += smooth SUBDIR += smv SUBDIR += soapui SUBDIR += sobjectizer SUBDIR += socket_wrapper SUBDIR += soft-serve SUBDIR += sol2 SUBDIR += sonar-scanner-cli SUBDIR += sonarqube-ant-task SUBDIR += sonarqube-community SUBDIR += sope SUBDIR += sope2 SUBDIR += sord SUBDIR += sparsebitset SUBDIR += sparsehash SUBDIR += spatialindex SUBDIR += spdlog SUBDIR += spice-protocol SUBDIR += spin SUBDIR += spirv-llvm-translator SUBDIR += splint SUBDIR += spread-sheet-widget SUBDIR += srecord SUBDIR += st SUBDIR += stack SUBDIR += staf SUBDIR += statcvs SUBDIR += statik SUBDIR += statsvn SUBDIR += stb SUBDIR += stdx-allocator SUBDIR += stfl SUBDIR += stlfilt SUBDIR += stlink SUBDIR += str SUBDIR += strace SUBDIR += string_theory SUBDIR += stringencoders SUBDIR += stuffbin SUBDIR += stxxl SUBDIR += stylua SUBDIR += subversion SUBDIR += subversion-book SUBDIR += subversion-lts SUBDIR += subversive SUBDIR += sunpromake SUBDIR += svk SUBDIR += svn2git SUBDIR += svn_load_dirs SUBDIR += svntrac SUBDIR += swank-clojure SUBDIR += swig SUBDIR += sysconftool SUBDIR += sysfsutils SUBDIR += systemc SUBDIR += t1lib SUBDIR += ta-lib SUBDIR += tablist SUBDIR += tabulate SUBDIR += tailor SUBDIR += talloc SUBDIR += taskctl SUBDIR += taskflow SUBDIR += tass64 SUBDIR += tbb SUBDIR += tcl-memchan SUBDIR += tcl-mmap SUBDIR += tcl-signal SUBDIR += tcl-trf SUBDIR += tclap SUBDIR += tclbsd SUBDIR += tclcheck SUBDIR += tcllauncher SUBDIR += tcllib SUBDIR += tcllibc SUBDIR += tclreadline SUBDIR += tclthread SUBDIR += tcltls SUBDIR += tclvfs SUBDIR += tclxml SUBDIR += tdl SUBDIR += template-glib SUBDIR += termbox SUBDIR += termcolor SUBDIR += terminality SUBDIR += tevent SUBDIR += tex-kpathsea SUBDIR += tex-libtexlua SUBDIR += tex-libtexluajit SUBDIR += tex-synctex SUBDIR += tex-web2c SUBDIR += texlab SUBDIR += thonny SUBDIR += thrift SUBDIR += thrift-c_glib SUBDIR += thrift-cpp SUBDIR += thrust SUBDIR += thunar-vcs-plugin SUBDIR += ticcutils SUBDIR += tig SUBDIR += tigcc SUBDIR += tijmp SUBDIR += tinycbor SUBDIR += tinygo SUBDIR += tinylaf SUBDIR += tkcon SUBDIR += tkcvs SUBDIR += tkp4 SUBDIR += tl-expected SUBDIR += tla SUBDIR += tllist SUBDIR += tlsh SUBDIR += tlx SUBDIR += tmake SUBDIR += tnt SUBDIR += tokamak SUBDIR += tokei SUBDIR += toml11 SUBDIR += tortoisehg SUBDIR += tpasm SUBDIR += tradcpp SUBDIR += transient SUBDIR += transient-devel SUBDIR += transwarp SUBDIR += tree-sitter SUBDIR += treepy.el SUBDIR += trellis SUBDIR += trio SUBDIR += truc SUBDIR += tup SUBDIR += ua_parser-core SUBDIR += uclcmd SUBDIR += ucommon SUBDIR += ucpp SUBDIR += udis86 SUBDIR += uid_wrapper SUBDIR += ultragetopt SUBDIR += umbrello SUBDIR += umlgraph SUBDIR += unibilium SUBDIR += unittest-cpp SUBDIR += universal-ctags SUBDIR += upnp SUBDIR += upp SUBDIR += upslug SUBDIR += urjtag SUBDIR += utf8cpp SUBDIR += uthash SUBDIR += util-linux SUBDIR += valgrind SUBDIR += valgrind-devel SUBDIR += varconf SUBDIR += vasm SUBDIR += vc SUBDIR += vc-intrinsics SUBDIR += vcglib SUBDIR += vera++ SUBDIR += vexcl SUBDIR += viewvc-devel SUBDIR += violet SUBDIR += vipack SUBDIR += vitables SUBDIR += volk SUBDIR += vstr SUBDIR += vxlog SUBDIR += wand-libconfig SUBDIR += wandio SUBDIR += wasi-compiler-rt11 SUBDIR += wasi-compiler-rt13 SUBDIR += wasi-libc SUBDIR += wasi-libcxx SUBDIR += wasm3 SUBDIR += websocketpp SUBDIR += websvn SUBDIR += wf-config SUBDIR += wininfo SUBDIR += wizardkit SUBDIR += woff2 SUBDIR += wrangler SUBDIR += wxformbuilder SUBDIR += xa65 SUBDIR += xbyak SUBDIR += xc3sprog SUBDIR += xcscope.el SUBDIR += xdg-user-dirs SUBDIR += xdg-utils SUBDIR += xdgpaths SUBDIR += xelfviewer SUBDIR += xeus SUBDIR += xeus-cling SUBDIR += xfce4-dev-tools SUBDIR += xmake SUBDIR += xmltooling SUBDIR += xopcodecalc SUBDIR += xorg-macros SUBDIR += xparam SUBDIR += xpeviewer SUBDIR += xsd SUBDIR += xsimd SUBDIR += xtensa-esp32-elf SUBDIR += xtl SUBDIR += xtl-quant-stack SUBDIR += xtoolchain-llvm-devel SUBDIR += xtoolchain-llvm80 SUBDIR += xtoolchain-llvm90 SUBDIR += xwpe SUBDIR += xxgdb SUBDIR += xxhash SUBDIR += xxl SUBDIR += yaegi SUBDIR += yaggo SUBDIR += yajl SUBDIR += yajl-tcl SUBDIR += yaml-cpp SUBDIR += yaml-cpp03 SUBDIR += yaml2argdata SUBDIR += yasm SUBDIR += yder SUBDIR += youcompleteme SUBDIR += yuck SUBDIR += z80-asm SUBDIR += z80asm SUBDIR += z80ex SUBDIR += z88dk SUBDIR += zanata-cli SUBDIR += zanata-platform SUBDIR += zapcc SUBDIR += zeal SUBDIR += zfp SUBDIR += zls SUBDIR += zookeeper SUBDIR += zpu-binutils SUBDIR += zpu-gcc SUBDIR += zthread SUBDIR += zydis SUBDIR += zziplib .include diff --git a/devel/qt6-5compat/Makefile b/devel/qt6-5compat/Makefile new file mode 100644 index 000000000000..738de343914f --- /dev/null +++ b/devel/qt6-5compat/Makefile @@ -0,0 +1,21 @@ +PORTNAME= 5compat +DISTVERSION= ${QT6_VERSION} +CATEGORIES= devel +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt 6 module that contains unsupported Qt 5 APIs + +LIB_DEPENDS= libicuuc.so:devel/icu \ + libdouble-conversion.so:devel/double-conversion \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gnome \ + qt-dist:6 +USE_GNOME= glib20 +USE_QT= base +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/devel/qt6-5compat/distinfo b/devel/qt6-5compat/distinfo new file mode 100644 index 000000000000..1c392c597d97 --- /dev/null +++ b/devel/qt6-5compat/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482594 +SHA256 (KDE/Qt/6.3.1/qt5compat-everywhere-src-6.3.1.tar.xz) = a43ec62bd778eaecf88ad7847118d1c2a471b0fcb820f93beb311d7ab9566cfd +SIZE (KDE/Qt/6.3.1/qt5compat-everywhere-src-6.3.1.tar.xz) = 8195804 diff --git a/devel/qt6-5compat/pkg-descr b/devel/qt6-5compat/pkg-descr new file mode 100644 index 000000000000..a525c54b94b8 --- /dev/null +++ b/devel/qt6-5compat/pkg-descr @@ -0,0 +1,8 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +The Qt 5 Core Compat module contains the Qt Core APIs which will be no longer +supported in Qt 6 and therefore were removed from Qt 6. The module is provided +to facilitate the transition to Qt 6. + +WWW: http://qt-project.org diff --git a/devel/qt6-5compat/pkg-plist b/devel/qt6-5compat/pkg-plist new file mode 100644 index 000000000000..37836dea775f --- /dev/null +++ b/devel/qt6-5compat/pkg-plist @@ -0,0 +1,85 @@ +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/cp949codetbl_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qbig5codec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qbinaryjson_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qbinaryjsonarray_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qbinaryjsonobject_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qbinaryjsonvalue_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qeucjpcodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qeuckrcodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qgb18030codec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qiconvcodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qicucodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qisciicodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qjiscodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qjpunicode_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qlatincodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qsimplecodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qsjiscodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qtcore5compat-config_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qtextcodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qtsciicodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qutfcodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qwindowscodec_p.h +%%QT_INCDIR%%/QtCore5Compat/%%FULLVER%%/QtCore5Compat/private/qxml_p.h +%%QT_INCDIR%%/QtCore5Compat/QBinaryJson +%%QT_INCDIR%%/QtCore5Compat/QConcatenable +%%QT_INCDIR%%/QtCore5Compat/QLinkedList +%%QT_INCDIR%%/QtCore5Compat/QLinkedListData +%%QT_INCDIR%%/QtCore5Compat/QLinkedListIterator +%%QT_INCDIR%%/QtCore5Compat/QLinkedListNode +%%QT_INCDIR%%/QtCore5Compat/QMutableLinkedListIterator +%%QT_INCDIR%%/QtCore5Compat/QRegExp +%%QT_INCDIR%%/QtCore5Compat/QStringRef +%%QT_INCDIR%%/QtCore5Compat/QTextCodec +%%QT_INCDIR%%/QtCore5Compat/QTextDecoder +%%QT_INCDIR%%/QtCore5Compat/QTextEncoder +%%QT_INCDIR%%/QtCore5Compat/QXmlAttributes +%%QT_INCDIR%%/QtCore5Compat/QXmlContentHandler +%%QT_INCDIR%%/QtCore5Compat/QXmlDTDHandler +%%QT_INCDIR%%/QtCore5Compat/QXmlDeclHandler +%%QT_INCDIR%%/QtCore5Compat/QXmlDefaultHandler +%%QT_INCDIR%%/QtCore5Compat/QXmlEntityResolver +%%QT_INCDIR%%/QtCore5Compat/QXmlErrorHandler +%%QT_INCDIR%%/QtCore5Compat/QXmlInputSource +%%QT_INCDIR%%/QtCore5Compat/QXmlLexicalHandler +%%QT_INCDIR%%/QtCore5Compat/QXmlLocator +%%QT_INCDIR%%/QtCore5Compat/QXmlNamespaceSupport +%%QT_INCDIR%%/QtCore5Compat/QXmlParseException +%%QT_INCDIR%%/QtCore5Compat/QXmlReader +%%QT_INCDIR%%/QtCore5Compat/QXmlSimpleReader +%%QT_INCDIR%%/QtCore5Compat/QtCore5Compat +%%QT_INCDIR%%/QtCore5Compat/QtCore5CompatDepends +%%QT_INCDIR%%/QtCore5Compat/QtCore5CompatVersion +%%QT_INCDIR%%/QtCore5Compat/qbinaryjson.h +%%QT_INCDIR%%/QtCore5Compat/qcore5global.h +%%QT_INCDIR%%/QtCore5Compat/qlinkedlist.h +%%QT_INCDIR%%/QtCore5Compat/qregexp.h +%%QT_INCDIR%%/QtCore5Compat/qstringref.h +%%QT_INCDIR%%/QtCore5Compat/qtcore5compat-config.h +%%QT_INCDIR%%/QtCore5Compat/qtcore5compatversion.h +%%QT_INCDIR%%/QtCore5Compat/qtextcodec.h +%%QT_INCDIR%%/QtCore5Compat/qxml.h +lib/cmake/Qt6/FindWrapIconv.cmake +lib/cmake/Qt6BuildInternals/StandaloneTests/Qt5CompatTestsConfig.cmake +lib/cmake/Qt6Core5Compat/Qt6Core5CompatAdditionalTargetInfo.cmake +lib/cmake/Qt6Core5Compat/Qt6Core5CompatConfig.cmake +lib/cmake/Qt6Core5Compat/Qt6Core5CompatConfigVersion.cmake +lib/cmake/Qt6Core5Compat/Qt6Core5CompatConfigVersionImpl.cmake +lib/cmake/Qt6Core5Compat/Qt6Core5CompatDependencies.cmake +lib/cmake/Qt6Core5Compat/Qt6Core5CompatTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Core5Compat/Qt6Core5CompatTargets.cmake +lib/cmake/Qt6Core5Compat/Qt6Core5CompatVersionlessTargets.cmake +%%QT_LIBDIR%%/libQt6Core5Compat.prl +%%QT_LIBDIR%%/libQt6Core5Compat.so +%%QT_LIBDIR%%/libQt6Core5Compat.so.6 +%%QT_LIBDIR%%/libQt6Core5Compat.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6core5compat_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_core5compat.pri +%%QT_MKSPECDIR%%/modules/qt_lib_core5compat_private.pri +libdata/pkgconfig/Qt6Core5Compat.pc +%%QT_DATADIR%%/modules/Core5Compat.json +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6Core5Compat +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6Core5Compat +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/devel/qt6-base/Makefile b/devel/qt6-base/Makefile new file mode 100644 index 000000000000..c9d8465d21a5 --- /dev/null +++ b/devel/qt6-base/Makefile @@ -0,0 +1,125 @@ +PORTNAME= base +DISTVERSION= ${QT6_VERSION} +CATEGORIES= devel +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt base (core, gui, widgets, network,...) + +BUILD_DEPENDS= xml:textproc/xmlstarlet \ + ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers \ + ${LOCALBASE}/include/linux/input.h:devel/evdev-proto +LIB_DEPENDS= \ + libatk-1.0.so:accessibility/atk \ + libatk-bridge-2.0.so:accessibility/at-spi2-atk \ + libatspi.so:accessibility/at-spi2-core \ + libavahi-client.so:net/avahi-app \ + libbrotlidec.so:archivers/brotli \ + libcups.so:print/cups \ + libdbus-1.so:devel/dbus \ + libdouble-conversion.so:devel/double-conversion \ + libdrm.so:graphics/libdrm \ + libepoll-shim.so:devel/libepoll-shim \ + libepoxy.so:graphics/libepoxy \ + libevdev.so:devel/libevdev \ + libexpat.so:textproc/expat2 \ + libffi.so:devel/libffi \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libfribidi.so:converters/fribidi \ + libgmp.so:math/gmp \ + libgnutls.so:security/gnutls \ + libgraphite2.so:graphics/graphite2 \ + libgudev-1.0.so:devel/libgudev \ + libharfbuzz.so:print/harfbuzz \ + libicui18n.so:devel/icu \ + libidn2.so:dns/libidn2 \ + libinput.so:x11/libinput \ + libintl.so:devel/gettext-runtime \ + libjpeg.so:graphics/jpeg-turbo \ + libmtdev.so:devel/libmtdev \ + libnettle.so:security/nettle \ + libp11-kit.so:security/p11-kit \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libtasn1.so:security/libtasn1 \ + libudev.so:devel/libudev-devd \ + libunistring.so:devel/libunistring \ + libvulkan.so:graphics/vulkan-loader \ + libwacom.so:x11/libwacom \ + libwayland-client.so:graphics/wayland \ + libxcb-cursor.so:x11/xcb-util-cursor \ + libxcb-ewmh.so:x11/xcb-util-wm \ + libxcb-image.so:x11/xcb-util-image \ + libxcb-keysyms.so:x11/xcb-util-keysyms \ + libxcb-render-util.so:x11/xcb-util-renderutil \ + libxcb-util.so:x11/xcb-util \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gl gnome jpeg perl5 pkgconfig python \ + qt-dist:6 shebangfix xorg +USE_GL= egl gl +USE_GNOME= cairo gdkpixbuf2 glib20 gtk30 pango +USE_XORG= ice pixman sm x11 xau xcb xcomposite xcursor xdamage xdmcp \ + xext xfixes xi xinerama xrandr xrender +CMAKE_ON= QT_AVOID_CMAKE_ARCHIVING_API \ + QT_FIND_ALL_PACKAGES_ALWAYS +CMAKE_OFF= QT_FEATURE_eglfs \ + QT_FEATURE_gssapi +SHEBANG_FILES= ${WRKSRC}/mkspecs/features/uikit/device_destinations.sh \ + ${WRKSRC}/mkspecs/features/uikit/devices.py \ + ${WRKSRC}/mkspecs/features/data/mac/objc_namespace.sh \ + ${WRKSRC}/util/android/android_emulator_launcher.sh \ + ${WRKSRC}/util/testrunner/qt-testrunner.py +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +# zstd from base fails to compress files during the build (error 11: unsupported argument) +BINARY_ALIAS= zstd=${LOCALBASE}/bin/zstd + +#== Option handling +OPTIONS_GROUP= SQL +OPTIONS_GROUP_SQL= IBASE MYSQL ODBC PSQL SQLITE +OPTIONS_DEFAULT= SQLITE +OPTIONS_SUB= yes + +IBASE_DESC= InterBase database support +IBASE_CMAKE_ON= -DFEATURE_sql_ibase=ON +IBASE_CMAKE_OFF= -DFEATURE_sql_ibase=OFF +IBASE_USES= firebird:4.0 +IBASE_BROKEN= IBASE: fatal error: 'gen/iberror.h' file not found + +MYSQL_DESC= MySQL database support +MYSQL_CMAKE_ON= -DFEATURE_sql_mysql=ON +MYSQL_CMAKE_OFF= -DFEATURE_sql_mysql=OFF +MYSQL_USES= mysql + +ODBC_DESC= ODBC database support +ODBC_CMAKE_ON= -DFEATURE_sql_odbc=ON +ODBC_CMAKE_OFF= -DFEATURE_sql_odbc=OFF +ODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC + +PSQL_DESC= PostgreSQL database support +PSQL_CMAKE_ON= -DFEATURE_sql_psql=ON +PSQL_CMAKE_OFF= -DFEATURE_sql_psql=OFF +PSQL_USES= pgsql + +SQLITE_DESC= Sqlite database support +SQLITE_CMAKE_ON= -DFEATURE_sql_sqlite=ON \ + -DQT_FEATURE_system_sqlite=ON +SQLITE_CMAKE_OFF= -DFEATURE_sql_sqlite=OFF +SQLITE_USES= sqlite:3 + +# TODO: do this cleaner -- somewhere cmake/qmake still creates empty directories +# for the cmake files in INSTALL_PREFIX/lib/cmake +post-install: + ${RM} -vr ${STAGEDIR}${PREFIX}/${QT_LIBDIR_REL}/cmake + # Install symlinks for user-facing tools + ${REINPLACE_CMD} -e "s#^#${STAGEDIR}#" -e "s# # ${STAGEDIR}#" \ + ${WRKDIR}/.build/user_facing_tool_links.txt + while read t; do \ + ${RLN} $$t; \ + done <${WRKDIR}/.build/user_facing_tool_links.txt + +.include diff --git a/devel/qt6-base/distinfo b/devel/qt6-base/distinfo new file mode 100644 index 000000000000..3e8a1c398cca --- /dev/null +++ b/devel/qt6-base/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482596 +SHA256 (KDE/Qt/6.3.1/qtbase-everywhere-src-6.3.1.tar.xz) = 0a64421d9c2469c2c48490a032ab91d547017c9cc171f3f8070bc31888f24e03 +SIZE (KDE/Qt/6.3.1/qtbase-everywhere-src-6.3.1.tar.xz) = 47118260 diff --git a/devel/qt6-base/files/patch-cmake_FindMySQL.cmake b/devel/qt6-base/files/patch-cmake_FindMySQL.cmake new file mode 100644 index 000000000000..512ac3cb969a --- /dev/null +++ b/devel/qt6-base/files/patch-cmake_FindMySQL.cmake @@ -0,0 +1,13 @@ +Help cmake figure out the locations of the headers when mariadb is used. + +--- cmake/FindMySQL.cmake.orig 2021-10-20 11:54:23 UTC ++++ cmake/FindMySQL.cmake +@@ -19,7 +19,7 @@ + # The mysql client library + + find_package(PkgConfig QUIET) +-pkg_check_modules(PC_MySQL QUIET mysqlclient) ++pkg_search_module(PC_MySQL QUIET mysqlclient mariadb) + + find_path(MySQL_INCLUDE_DIR + NAMES mysql.h diff --git a/devel/qt6-base/files/patch-cmake_QtBuild.cmake b/devel/qt6-base/files/patch-cmake_QtBuild.cmake new file mode 100644 index 000000000000..ffc68f2e1314 --- /dev/null +++ b/devel/qt6-base/files/patch-cmake_QtBuild.cmake @@ -0,0 +1,11 @@ +--- cmake/QtBuild.cmake.orig 2022-05-25 08:58:52 UTC ++++ cmake/QtBuild.cmake +@@ -198,7 +198,7 @@ function(qt_internal_set_up_global_paths) + if(QT_CONFIG_INSTALL_DIR) + string(APPEND QT_CONFIG_INSTALL_DIR "/") + endif() +- string(APPEND QT_CONFIG_INSTALL_DIR ${__config_path_part}) ++ string(APPEND QT_CONFIG_INSTALL_DIR "lib/cmake") + + set(QT_BUILD_DIR "${QT_BUILD_DIR}" PARENT_SCOPE) + set(QT_INSTALL_DIR "${QT_INSTALL_DIR}" PARENT_SCOPE) diff --git a/devel/qt6-base/files/patch-cmake_QtFlagHandlingHelpers.cmake b/devel/qt6-base/files/patch-cmake_QtFlagHandlingHelpers.cmake new file mode 100644 index 000000000000..bdde060014ad --- /dev/null +++ b/devel/qt6-base/files/patch-cmake_QtFlagHandlingHelpers.cmake @@ -0,0 +1,13 @@ +--- cmake/QtFlagHandlingHelpers.cmake.orig 2022-05-25 08:58:52 UTC ++++ cmake/QtFlagHandlingHelpers.cmake +@@ -64,6 +64,10 @@ function(qt_internal_add_link_flags_no_undefined targe + set(no_undefined_flag "-Wl,--no-undefined") + endif() + ++ if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD") ++ set(no_undefined_flag "") ++ endif() ++ + set(CMAKE_REQUIRED_LINK_OPTIONS ${previous_CMAKE_REQUIRED_LINK_OPTIONS}) + + if (NOT HAVE_DASH_UNDEFINED_SYMBOLS AND NOT HAVE_DASH_DASH_NO_UNDEFINED) diff --git a/devel/qt6-base/files/patch-cmake_QtPkgConfigHelpers.cmake b/devel/qt6-base/files/patch-cmake_QtPkgConfigHelpers.cmake new file mode 100644 index 000000000000..2c03e159894c --- /dev/null +++ b/devel/qt6-base/files/patch-cmake_QtPkgConfigHelpers.cmake @@ -0,0 +1,10 @@ +--- cmake/QtPkgConfigHelpers.cmake.orig 2022-08-07 11:26:08 UTC ++++ cmake/QtPkgConfigHelpers.cmake +@@ -144,6 +144,6 @@ function(qt_internal_generate_pkg_config_file module) + # This is inspired by https://gitlab.kitware.com/cmake/cmake/-/issues/20842 + target_sources(${module} PRIVATE "${final_pc_path}") + +- qt_install(FILES "${final_pc_path}" DESTINATION "${install_dir}") ++ qt_install(FILES "${final_pc_path}" DESTINATION "${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig") + endforeach() + endfunction() diff --git a/devel/qt6-base/files/patch-cmake_QtRpathHelpers.cmake b/devel/qt6-base/files/patch-cmake_QtRpathHelpers.cmake new file mode 100644 index 000000000000..4cb568c0c01f --- /dev/null +++ b/devel/qt6-base/files/patch-cmake_QtRpathHelpers.cmake @@ -0,0 +1,11 @@ +--- cmake/QtRpathHelpers.cmake.orig 2022-05-25 08:58:52 UTC ++++ cmake/QtRpathHelpers.cmake +@@ -29,6 +29,8 @@ function(qt_compute_relative_rpath_base rpath install_ + set(rpath_rel_base "@loader_path") + elseif(LINUX OR SOLARIS OR FREEBSD) + set(rpath_rel_base "$ORIGIN") ++ elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD") ++ set(rpath_rel_base "$ORIGIN") + else() + message(WARNING "No known RPATH_REL_BASE for target platform.") + set(rpath_rel_base "NO_KNOWN_RPATH_REL_BASE") diff --git a/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__static.cpp b/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__static.cpp new file mode 100644 index 000000000000..6ebffd0f4c5a --- /dev/null +++ b/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__static.cpp @@ -0,0 +1,14 @@ +--- src/platformsupport/devicediscovery/qdevicediscovery_static.cpp.orig 2020-07-03 14:25:13 UTC ++++ src/platformsupport/devicediscovery/qdevicediscovery_static.cpp +@@ -47,11 +47,7 @@ + #include + #include + +-#ifdef Q_OS_FREEBSD +-#include +-#else + #include +-#endif + #include + + /* android (and perhaps some other linux-derived stuff) don't define everything diff --git a/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__udev.cpp b/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__udev.cpp new file mode 100644 index 000000000000..205ff82ee4d5 --- /dev/null +++ b/devel/qt6-base/files/patch-src_platformsupport_devicediscovery_qdevicediscovery__udev.cpp @@ -0,0 +1,14 @@ +--- src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp.orig 2020-07-03 14:25:13 UTC ++++ src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp +@@ -46,11 +46,7 @@ + #include + #include + +-#ifdef Q_OS_FREEBSD +-#include +-#else + #include +-#endif + + QT_BEGIN_NAMESPACE + diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboard__defaultmap__p.h b/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboard__defaultmap__p.h new file mode 100644 index 000000000000..c5e925a03f38 --- /dev/null +++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboard__defaultmap__p.h @@ -0,0 +1,14 @@ +--- src/platformsupport/input/evdevkeyboard/qevdevkeyboard_defaultmap_p.h.orig 2020-07-03 14:25:13 UTC ++++ src/platformsupport/input/evdevkeyboard/qevdevkeyboard_defaultmap_p.h +@@ -52,11 +52,7 @@ + // + + #include "qnamespace.h" +-#ifdef Q_OS_FREEBSD +-#include +-#else + #include "linux/input.h" +-#endif + + // no QT_BEGIN_NAMESPACE, since we include it internally... + diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboardhandler.cpp b/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboardhandler.cpp new file mode 100644 index 000000000000..95ad75033670 --- /dev/null +++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevkeyboard_qevdevkeyboardhandler.cpp @@ -0,0 +1,14 @@ +--- src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp.orig 2020-12-04 10:14:27 UTC ++++ src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp +@@ -53,11 +53,7 @@ + #include + #include + +-#ifdef Q_OS_FREEBSD +-#include +-#else + #include +-#endif + + #ifndef input_event_sec + #define input_event_sec time.tv_sec diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevmouse_qevdevmousehandler.cpp b/devel/qt6-base/files/patch-src_platformsupport_input_evdevmouse_qevdevmousehandler.cpp new file mode 100644 index 000000000000..4e4b6053d6d7 --- /dev/null +++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevmouse_qevdevmousehandler.cpp @@ -0,0 +1,15 @@ +--- src/platformsupport/input/evdevmouse/qevdevmousehandler.cpp.orig 2020-07-03 14:25:13 UTC ++++ src/platformsupport/input/evdevmouse/qevdevmousehandler.cpp +@@ -53,12 +53,7 @@ + + #include + +-#ifdef Q_OS_FREEBSD +-#include +-#else +-#include + #include +-#endif + + #define TEST_BIT(array, bit) (array[bit/8] & (1<<(bit%8))) + diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevtablet_qevdevtablethandler.cpp b/devel/qt6-base/files/patch-src_platformsupport_input_evdevtablet_qevdevtablethandler.cpp new file mode 100644 index 000000000000..fa1194a91f71 --- /dev/null +++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevtablet_qevdevtablethandler.cpp @@ -0,0 +1,14 @@ +--- src/platformsupport/input/evdevtablet/qevdevtablethandler.cpp.orig 2020-07-03 14:25:13 UTC ++++ src/platformsupport/input/evdevtablet/qevdevtablethandler.cpp +@@ -46,11 +46,7 @@ + #include + #include + #include +-#ifdef Q_OS_FREEBSD +-#include +-#else + #include +-#endif + + QT_BEGIN_NAMESPACE + diff --git a/devel/qt6-base/files/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp b/devel/qt6-base/files/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp new file mode 100644 index 000000000000..d4f725ce6e87 --- /dev/null +++ b/devel/qt6-base/files/patch-src_platformsupport_input_evdevtouch_qevdevtouchhandler.cpp @@ -0,0 +1,14 @@ +--- src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp.orig 2022-05-25 08:58:52 UTC ++++ src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp +@@ -53,11 +53,7 @@ + + #include + +-#ifdef Q_OS_FREEBSD +-#include +-#else + #include +-#endif + + #ifndef input_event_sec + #define input_event_sec time.tv_sec diff --git a/devel/qt6-base/pkg-descr b/devel/qt6-base/pkg-descr new file mode 100644 index 000000000000..cc23400cc6b0 --- /dev/null +++ b/devel/qt6-base/pkg-descr @@ -0,0 +1,3 @@ +Qt Base + +WWW: https://www.qt.io/ diff --git a/devel/qt6-base/pkg-plist b/devel/qt6-base/pkg-plist new file mode 100644 index 000000000000..60595f5486d9 --- /dev/null +++ b/devel/qt6-base/pkg-plist @@ -0,0 +1,3746 @@ +bin/qmake6 +%%QT_INCDIR%%/QtConcurrent/QtConcurrent +%%QT_INCDIR%%/QtConcurrent/QtConcurrentDepends +%%QT_INCDIR%%/QtConcurrent/QtConcurrentFilter +%%QT_INCDIR%%/QtConcurrent/QtConcurrentMap +%%QT_INCDIR%%/QtConcurrent/QtConcurrentRun +%%QT_INCDIR%%/QtConcurrent/QtConcurrentVersion +%%QT_INCDIR%%/QtConcurrent/qtaskbuilder.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrent_global.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentcompilertest.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentexports.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentfilter.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentfilterkernel.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentfunctionwrappers.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentiteratekernel.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentmap.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentmapkernel.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentmedian.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentreducekernel.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentrun.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentrunbase.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentstoredfunctioncall.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrenttask.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentthreadengine.h +%%QT_INCDIR%%/QtConcurrent/qtconcurrentversion.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/minimum-linux_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractanimation_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstracteventdispatcher_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractfileengine_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractitemmodel_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractproxymodel_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qandroidextras_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qanimationgroup_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbytearray_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbytedata_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcalendarbackend_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcalendarmath_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcborcommon_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcborvalue_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcfsocketnotifier_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoffpeparser_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcollator_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qconfig_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_mac_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_unix_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoreapplication_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcorecmdlineargs_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoreglobaldata_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatastream_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdataurl_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatetime_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatetimeparser_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdeadlinetimer_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdebug_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdir_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdoublescanprint_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qduplicatetracker_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qelfparser_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qendian_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_cf_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_glib_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_unix_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_wasm_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_win_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventloop_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfactoryloader_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfile_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfiledevice_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfileinfo_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfileselector_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemengine_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystementry_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemiterator_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemmetadata_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_fsevents_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_inotify_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_kqueue_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_polling_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_win_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qflatmap_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfreelist_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfsfileengine_iterator_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfsfileengine_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfunctions_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfunctions_winrt_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfutex_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfutureinterface_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfuturewatcher_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qglobal_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qgregoriancalendar_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhijricalendar_data_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhijricalendar_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhooks_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qidentityproxymodel_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qiodevice_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qipaddress_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qislamiccivilcalendar_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qitemselectionmodel_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qiterable_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjalalicalendar_data_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjalalicalendar_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjnihelpers_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjson_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjsonparser_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjsonwriter_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjuliancalendar_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlibrary_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlibraryinfo_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_data_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_tools_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlockfile_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocking_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlogging_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qloggingregistry_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmachparser_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmakearray_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobject_moc_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobject_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobjectbuilder_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetatype_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmilankoviccalendar_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimedatabase_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimeglobpattern_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimemagicrule_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimemagicrulematcher_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimeprovider_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimetype_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimetypeparser_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmutex_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qnativeinterface_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qnoncontiguousbytedevice_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qntdll_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qnumeric_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qobject_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qoffsetstringarray_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qoperatingsystemversion_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qoperatingsystemversion_win_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qorderedmutexlocker_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qparallelanimationgroup_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qplugin_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qpoll_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qprocess_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qproperty_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qpropertyanimation_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qrandom_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qreadwritelock_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qresource_iterator_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qresource_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qringbuffer_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qromancalendar_data_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qromancalendar_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsavefile_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsequentialanimationgroup_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsettings_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsharedmemory_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsimd_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsimd_x86_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstdweb_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstorageinfo_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringalgorithms_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringconverter_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringiterator_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemerror_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemlibrary_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemsemaphore_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qt_pch.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtcore-config_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtemporaryfile_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtextstream_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthread_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthreadpool_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimerinfo_unix_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezoneprivate_data_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezoneprivate_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtools_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtrace_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtranslator_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtransposeproxymodel_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qunicodetables_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qunicodetools_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qurl_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariant_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariantanimation_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvolatile_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwaitcondition_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowspipereader_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowspipewriter_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwineventnotifier_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwinregistry_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlstream_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlstreamgrammar_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlstreamparser_p.h +%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlutils_p.h +%%QT_INCDIR%%/QtCore/QAbstractAnimation +%%QT_INCDIR%%/QtCore/QAbstractEventDispatcher +%%QT_INCDIR%%/QtCore/QAbstractItemModel +%%QT_INCDIR%%/QtCore/QAbstractListModel +%%QT_INCDIR%%/QtCore/QAbstractNativeEventFilter +%%QT_INCDIR%%/QtCore/QAbstractProxyModel +%%QT_INCDIR%%/QtCore/QAbstractTableModel +%%QT_INCDIR%%/QtCore/QAdoptSharedDataTag +%%QT_INCDIR%%/QtCore/QAnimationDriver +%%QT_INCDIR%%/QtCore/QAnimationGroup +%%QT_INCDIR%%/QtCore/QAnyStringView +%%QT_INCDIR%%/QtCore/QArgument +%%QT_INCDIR%%/QtCore/QArrayData +%%QT_INCDIR%%/QtCore/QArrayDataPointer +%%QT_INCDIR%%/QtCore/QAssociativeConstIterator +%%QT_INCDIR%%/QtCore/QAssociativeIterable +%%QT_INCDIR%%/QtCore/QAssociativeIterator +%%QT_INCDIR%%/QtCore/QAtomicInt +%%QT_INCDIR%%/QtCore/QAtomicInteger +%%QT_INCDIR%%/QtCore/QAtomicPointer +%%QT_INCDIR%%/QtCore/QBEInteger +%%QT_INCDIR%%/QtCore/QBaseIterator +%%QT_INCDIR%%/QtCore/QBasicMutex +%%QT_INCDIR%%/QtCore/QBasicTimer +%%QT_INCDIR%%/QtCore/QBasicUtf8StringView +%%QT_INCDIR%%/QtCore/QBigEndianStorageType +%%QT_INCDIR%%/QtCore/QBindable +%%QT_INCDIR%%/QtCore/QBindingStatus +%%QT_INCDIR%%/QtCore/QBindingStorage +%%QT_INCDIR%%/QtCore/QBitArray +%%QT_INCDIR%%/QtCore/QBitRef +%%QT_INCDIR%%/QtCore/QBuffer +%%QT_INCDIR%%/QtCore/QByteArray +%%QT_INCDIR%%/QtCore/QByteArrayAlgorithms +%%QT_INCDIR%%/QtCore/QByteArrayList +%%QT_INCDIR%%/QtCore/QByteArrayListIterator +%%QT_INCDIR%%/QtCore/QByteArrayMatcher +%%QT_INCDIR%%/QtCore/QByteArrayView +%%QT_INCDIR%%/QtCore/QCache +%%QT_INCDIR%%/QtCore/QCalendar +%%QT_INCDIR%%/QtCore/QCborArray +%%QT_INCDIR%%/QtCore/QCborError +%%QT_INCDIR%%/QtCore/QCborMap +%%QT_INCDIR%%/QtCore/QCborParserError +%%QT_INCDIR%%/QtCore/QCborStreamReader +%%QT_INCDIR%%/QtCore/QCborStreamWriter +%%QT_INCDIR%%/QtCore/QCborValue +%%QT_INCDIR%%/QtCore/QCborValueRef +%%QT_INCDIR%%/QtCore/QChar +%%QT_INCDIR%%/QtCore/QChildEvent +%%QT_INCDIR%%/QtCore/QCollator +%%QT_INCDIR%%/QtCore/QCollatorSortKey +%%QT_INCDIR%%/QtCore/QCommandLineOption +%%QT_INCDIR%%/QtCore/QCommandLineParser +%%QT_INCDIR%%/QtCore/QConcatenateTablesProxyModel +%%QT_INCDIR%%/QtCore/QConstIterator +%%QT_INCDIR%%/QtCore/QConstOverload +%%QT_INCDIR%%/QtCore/QContiguousCache +%%QT_INCDIR%%/QtCore/QContiguousCacheData +%%QT_INCDIR%%/QtCore/QContiguousCacheTypedData +%%QT_INCDIR%%/QtCore/QCoreApplication +%%QT_INCDIR%%/QtCore/QCryptographicHash +%%QT_INCDIR%%/QtCore/QDataStream +%%QT_INCDIR%%/QtCore/QDate +%%QT_INCDIR%%/QtCore/QDateTime +%%QT_INCDIR%%/QtCore/QDeadlineTimer +%%QT_INCDIR%%/QtCore/QDebug +%%QT_INCDIR%%/QtCore/QDebugStateSaver +%%QT_INCDIR%%/QtCore/QDeferredDeleteEvent +%%QT_INCDIR%%/QtCore/QDir +%%QT_INCDIR%%/QtCore/QDirIterator +%%QT_INCDIR%%/QtCore/QDynamicPropertyChangeEvent +%%QT_INCDIR%%/QtCore/QEasingCurve +%%QT_INCDIR%%/QtCore/QElapsedTimer +%%QT_INCDIR%%/QtCore/QEnableSharedFromThis +%%QT_INCDIR%%/QtCore/QEvent +%%QT_INCDIR%%/QtCore/QEventLoop +%%QT_INCDIR%%/QtCore/QEventLoopLocker +%%QT_INCDIR%%/QtCore/QException +%%QT_INCDIR%%/QtCore/QExplicitlySharedDataPointer +%%QT_INCDIR%%/QtCore/QFactoryInterface +%%QT_INCDIR%%/QtCore/QFile +%%QT_INCDIR%%/QtCore/QFileDevice +%%QT_INCDIR%%/QtCore/QFileInfo +%%QT_INCDIR%%/QtCore/QFileInfoList +%%QT_INCDIR%%/QtCore/QFileSelector +%%QT_INCDIR%%/QtCore/QFileSystemWatcher +%%QT_INCDIR%%/QtCore/QFlag +%%QT_INCDIR%%/QtCore/QFlags +%%QT_INCDIR%%/QtCore/QFloat16 +%%QT_INCDIR%%/QtCore/QFunctionPointer +%%QT_INCDIR%%/QtCore/QFuture +%%QT_INCDIR%%/QtCore/QFutureInterface +%%QT_INCDIR%%/QtCore/QFutureInterfaceBase +%%QT_INCDIR%%/QtCore/QFutureIterator +%%QT_INCDIR%%/QtCore/QFutureSynchronizer +%%QT_INCDIR%%/QtCore/QFutureWatcher +%%QT_INCDIR%%/QtCore/QFutureWatcherBase +%%QT_INCDIR%%/QtCore/QGenericArgument +%%QT_INCDIR%%/QtCore/QGenericReturnArgument +%%QT_INCDIR%%/QtCore/QGlobalStatic +%%QT_INCDIR%%/QtCore/QHash +%%QT_INCDIR%%/QtCore/QHashDummyValue +%%QT_INCDIR%%/QtCore/QHashFunctions +%%QT_INCDIR%%/QtCore/QHashIterator +%%QT_INCDIR%%/QtCore/QHashSeed +%%QT_INCDIR%%/QtCore/QIODevice +%%QT_INCDIR%%/QtCore/QIODeviceBase +%%QT_INCDIR%%/QtCore/QIdentityProxyModel +%%QT_INCDIR%%/QtCore/QIncompatibleFlag +%%QT_INCDIR%%/QtCore/QIntegerForSize +%%QT_INCDIR%%/QtCore/QInternal +%%QT_INCDIR%%/QtCore/QItemSelection +%%QT_INCDIR%%/QtCore/QItemSelectionModel +%%QT_INCDIR%%/QtCore/QItemSelectionRange +%%QT_INCDIR%%/QtCore/QIterable +%%QT_INCDIR%%/QtCore/QIterator +%%QT_INCDIR%%/QtCore/QJniEnvironment +%%QT_INCDIR%%/QtCore/QJniObject +%%QT_INCDIR%%/QtCore/QJsonArray +%%QT_INCDIR%%/QtCore/QJsonDocument +%%QT_INCDIR%%/QtCore/QJsonObject +%%QT_INCDIR%%/QtCore/QJsonParseError +%%QT_INCDIR%%/QtCore/QJsonValue +%%QT_INCDIR%%/QtCore/QJsonValueRef +%%QT_INCDIR%%/QtCore/QKeyCombination +%%QT_INCDIR%%/QtCore/QKeyValueIterator +%%QT_INCDIR%%/QtCore/QLEInteger +%%QT_INCDIR%%/QtCore/QLatin1Char +%%QT_INCDIR%%/QtCore/QLatin1String +%%QT_INCDIR%%/QtCore/QLibrary +%%QT_INCDIR%%/QtCore/QLibraryInfo +%%QT_INCDIR%%/QtCore/QLine +%%QT_INCDIR%%/QtCore/QLineF +%%QT_INCDIR%%/QtCore/QList +%%QT_INCDIR%%/QtCore/QListIterator +%%QT_INCDIR%%/QtCore/QListSpecialMethodsBase +%%QT_INCDIR%%/QtCore/QLittleEndianStorageType +%%QT_INCDIR%%/QtCore/QLocale +%%QT_INCDIR%%/QtCore/QLockFile +%%QT_INCDIR%%/QtCore/QLoggingCategory +%%QT_INCDIR%%/QtCore/QMap +%%QT_INCDIR%%/QtCore/QMapData +%%QT_INCDIR%%/QtCore/QMapIterator +%%QT_INCDIR%%/QtCore/QMargins +%%QT_INCDIR%%/QtCore/QMarginsF +%%QT_INCDIR%%/QtCore/QMessageAuthenticationCode +%%QT_INCDIR%%/QtCore/QMessageLogContext +%%QT_INCDIR%%/QtCore/QMessageLogger +%%QT_INCDIR%%/QtCore/QMetaAssociation +%%QT_INCDIR%%/QtCore/QMetaClassInfo +%%QT_INCDIR%%/QtCore/QMetaContainer +%%QT_INCDIR%%/QtCore/QMetaEnum +%%QT_INCDIR%%/QtCore/QMetaMethod +%%QT_INCDIR%%/QtCore/QMetaObject +%%QT_INCDIR%%/QtCore/QMetaProperty +%%QT_INCDIR%%/QtCore/QMetaSequence +%%QT_INCDIR%%/QtCore/QMetaType +%%QT_INCDIR%%/QtCore/QMethodRawArguments +%%QT_INCDIR%%/QtCore/QMimeData +%%QT_INCDIR%%/QtCore/QMimeDatabase +%%QT_INCDIR%%/QtCore/QMimeType +%%QT_INCDIR%%/QtCore/QModelIndex +%%QT_INCDIR%%/QtCore/QModelIndexList +%%QT_INCDIR%%/QtCore/QModelRoleData +%%QT_INCDIR%%/QtCore/QModelRoleDataSpan +%%QT_INCDIR%%/QtCore/QMultiHash +%%QT_INCDIR%%/QtCore/QMultiHashIterator +%%QT_INCDIR%%/QtCore/QMultiMap +%%QT_INCDIR%%/QtCore/QMultiMapIterator +%%QT_INCDIR%%/QtCore/QMutableByteArrayListIterator +%%QT_INCDIR%%/QtCore/QMutableFutureIterator +%%QT_INCDIR%%/QtCore/QMutableHashIterator +%%QT_INCDIR%%/QtCore/QMutableListIterator +%%QT_INCDIR%%/QtCore/QMutableMapIterator +%%QT_INCDIR%%/QtCore/QMutableMultiHashIterator +%%QT_INCDIR%%/QtCore/QMutableMultiMapIterator +%%QT_INCDIR%%/QtCore/QMutableSetIterator +%%QT_INCDIR%%/QtCore/QMutableVectorIterator +%%QT_INCDIR%%/QtCore/QMutex +%%QT_INCDIR%%/QtCore/QMutexLocker +%%QT_INCDIR%%/QtCore/QNoDebug +%%QT_INCDIR%%/QtCore/QNonConstOverload +%%QT_INCDIR%%/QtCore/QObject +%%QT_INCDIR%%/QtCore/QObjectBindableProperty +%%QT_INCDIR%%/QtCore/QObjectCleanupHandler +%%QT_INCDIR%%/QtCore/QObjectData +%%QT_INCDIR%%/QtCore/QObjectList +%%QT_INCDIR%%/QtCore/QOperatingSystemVersion +%%QT_INCDIR%%/QtCore/QOperatingSystemVersionBase +%%QT_INCDIR%%/QtCore/QPair +%%QT_INCDIR%%/QtCore/QParallelAnimationGroup +%%QT_INCDIR%%/QtCore/QPartialOrdering +%%QT_INCDIR%%/QtCore/QPauseAnimation +%%QT_INCDIR%%/QtCore/QPersistentModelIndex +%%QT_INCDIR%%/QtCore/QPluginLoader +%%QT_INCDIR%%/QtCore/QPluginMetaData +%%QT_INCDIR%%/QtCore/QPoint +%%QT_INCDIR%%/QtCore/QPointF +%%QT_INCDIR%%/QtCore/QPointer +%%QT_INCDIR%%/QtCore/QProcess +%%QT_INCDIR%%/QtCore/QProcessEnvironment +%%QT_INCDIR%%/QtCore/QPromise +%%QT_INCDIR%%/QtCore/QProperty +%%QT_INCDIR%%/QtCore/QPropertyAlias +%%QT_INCDIR%%/QtCore/QPropertyAnimation +%%QT_INCDIR%%/QtCore/QPropertyBinding +%%QT_INCDIR%%/QtCore/QPropertyBindingError +%%QT_INCDIR%%/QtCore/QPropertyBindingPrivatePtr +%%QT_INCDIR%%/QtCore/QPropertyBindingSourceLocation +%%QT_INCDIR%%/QtCore/QPropertyChangeHandler +%%QT_INCDIR%%/QtCore/QPropertyData +%%QT_INCDIR%%/QtCore/QPropertyNotifier +%%QT_INCDIR%%/QtCore/QPropertyObserver +%%QT_INCDIR%%/QtCore/QPropertyObserverBase +%%QT_INCDIR%%/QtCore/QPropertyProxyBindingData +%%QT_INCDIR%%/QtCore/QQueue +%%QT_INCDIR%%/QtCore/QRandomGenerator +%%QT_INCDIR%%/QtCore/QRandomGenerator64 +%%QT_INCDIR%%/QtCore/QReadLocker +%%QT_INCDIR%%/QtCore/QReadWriteLock +%%QT_INCDIR%%/QtCore/QRect +%%QT_INCDIR%%/QtCore/QRectF +%%QT_INCDIR%%/QtCore/QRecursiveMutex +%%QT_INCDIR%%/QtCore/QRegularExpression +%%QT_INCDIR%%/QtCore/QRegularExpressionMatch +%%QT_INCDIR%%/QtCore/QRegularExpressionMatchIterator +%%QT_INCDIR%%/QtCore/QResource +%%QT_INCDIR%%/QtCore/QReturnArgument +%%QT_INCDIR%%/QtCore/QRunnable +%%QT_INCDIR%%/QtCore/QSaveFile +%%QT_INCDIR%%/QtCore/QScopeGuard +%%QT_INCDIR%%/QtCore/QScopedArrayPointer +%%QT_INCDIR%%/QtCore/QScopedPointer +%%QT_INCDIR%%/QtCore/QScopedPointerArrayDeleter +%%QT_INCDIR%%/QtCore/QScopedPointerDeleteLater +%%QT_INCDIR%%/QtCore/QScopedPointerDeleter +%%QT_INCDIR%%/QtCore/QScopedPointerObjectDeleteLater +%%QT_INCDIR%%/QtCore/QScopedPointerPodDeleter +%%QT_INCDIR%%/QtCore/QScopedValueRollback +%%QT_INCDIR%%/QtCore/QSemaphore +%%QT_INCDIR%%/QtCore/QSemaphoreReleaser +%%QT_INCDIR%%/QtCore/QSequentialAnimationGroup +%%QT_INCDIR%%/QtCore/QSequentialConstIterator +%%QT_INCDIR%%/QtCore/QSequentialIterable +%%QT_INCDIR%%/QtCore/QSequentialIterator +%%QT_INCDIR%%/QtCore/QSet +%%QT_INCDIR%%/QtCore/QSetIterator +%%QT_INCDIR%%/QtCore/QSettings +%%QT_INCDIR%%/QtCore/QSharedData +%%QT_INCDIR%%/QtCore/QSharedDataPointer +%%QT_INCDIR%%/QtCore/QSharedMemory +%%QT_INCDIR%%/QtCore/QSharedPointer +%%QT_INCDIR%%/QtCore/QSignalBlocker +%%QT_INCDIR%%/QtCore/QSignalMapper +%%QT_INCDIR%%/QtCore/QSize +%%QT_INCDIR%%/QtCore/QSizeF +%%QT_INCDIR%%/QtCore/QSocketDescriptor +%%QT_INCDIR%%/QtCore/QSocketNotifier +%%QT_INCDIR%%/QtCore/QSortFilterProxyModel +%%QT_INCDIR%%/QtCore/QSpecialInteger +%%QT_INCDIR%%/QtCore/QStack +%%QT_INCDIR%%/QtCore/QStandardPaths +%%QT_INCDIR%%/QtCore/QStaticByteArrayMatcherBase +%%QT_INCDIR%%/QtCore/QStaticPlugin +%%QT_INCDIR%%/QtCore/QStorageInfo +%%QT_INCDIR%%/QtCore/QString +%%QT_INCDIR%%/QtCore/QStringAlgorithms +%%QT_INCDIR%%/QtCore/QStringBuilder +%%QT_INCDIR%%/QtCore/QStringConverter +%%QT_INCDIR%%/QtCore/QStringConverterBase +%%QT_INCDIR%%/QtCore/QStringDecoder +%%QT_INCDIR%%/QtCore/QStringEncoder +%%QT_INCDIR%%/QtCore/QStringList +%%QT_INCDIR%%/QtCore/QStringListModel +%%QT_INCDIR%%/QtCore/QStringLiteral +%%QT_INCDIR%%/QtCore/QStringMatcher +%%QT_INCDIR%%/QtCore/QStringTokenizer +%%QT_INCDIR%%/QtCore/QStringTokenizerBase +%%QT_INCDIR%%/QtCore/QStringTokenizerBaseBase +%%QT_INCDIR%%/QtCore/QStringView +%%QT_INCDIR%%/QtCore/QSysInfo +%%QT_INCDIR%%/QtCore/QSystemSemaphore +%%QT_INCDIR%%/QtCore/QTaggedIterator +%%QT_INCDIR%%/QtCore/QTaggedPointer +%%QT_INCDIR%%/QtCore/QTemporaryDir +%%QT_INCDIR%%/QtCore/QTemporaryFile +%%QT_INCDIR%%/QtCore/QTextBoundaryFinder +%%QT_INCDIR%%/QtCore/QTextStream +%%QT_INCDIR%%/QtCore/QTextStreamFunction +%%QT_INCDIR%%/QtCore/QTextStreamManipulator +%%QT_INCDIR%%/QtCore/QThread +%%QT_INCDIR%%/QtCore/QThreadPool +%%QT_INCDIR%%/QtCore/QThreadStorage +%%QT_INCDIR%%/QtCore/QThreadStorageData +%%QT_INCDIR%%/QtCore/QTime +%%QT_INCDIR%%/QtCore/QTimeLine +%%QT_INCDIR%%/QtCore/QTimeZone +%%QT_INCDIR%%/QtCore/QTimer +%%QT_INCDIR%%/QtCore/QTimerEvent +%%QT_INCDIR%%/QtCore/QTranslator +%%QT_INCDIR%%/QtCore/QTransposeProxyModel +%%QT_INCDIR%%/QtCore/QTypeInfo +%%QT_INCDIR%%/QtCore/QTypeInfoMerger +%%QT_INCDIR%%/QtCore/QTypeRevision +%%QT_INCDIR%%/QtCore/QUnhandledException +%%QT_INCDIR%%/QtCore/QUntypedBindable +%%QT_INCDIR%%/QtCore/QUntypedPropertyBinding +%%QT_INCDIR%%/QtCore/QUntypedPropertyData +%%QT_INCDIR%%/QtCore/QUrl +%%QT_INCDIR%%/QtCore/QUrlQuery +%%QT_INCDIR%%/QtCore/QUrlTwoFlags +%%QT_INCDIR%%/QtCore/QUtf8StringView +%%QT_INCDIR%%/QtCore/QUuid +%%QT_INCDIR%%/QtCore/QVarLengthArray +%%QT_INCDIR%%/QtCore/QVariant +%%QT_INCDIR%%/QtCore/QVariantAnimation +%%QT_INCDIR%%/QtCore/QVariantConstPointer +%%QT_INCDIR%%/QtCore/QVariantHash +%%QT_INCDIR%%/QtCore/QVariantList +%%QT_INCDIR%%/QtCore/QVariantMap +%%QT_INCDIR%%/QtCore/QVariantPointer +%%QT_INCDIR%%/QtCore/QVariantRef +%%QT_INCDIR%%/QtCore/QVector +%%QT_INCDIR%%/QtCore/QVectorIterator +%%QT_INCDIR%%/QtCore/QVersionNumber +%%QT_INCDIR%%/QtCore/QWaitCondition +%%QT_INCDIR%%/QtCore/QWeakPointer +%%QT_INCDIR%%/QtCore/QWinEventNotifier +%%QT_INCDIR%%/QtCore/QWriteLocker +%%QT_INCDIR%%/QtCore/QXmlStreamAttribute +%%QT_INCDIR%%/QtCore/QXmlStreamAttributes +%%QT_INCDIR%%/QtCore/QXmlStreamEntityDeclaration +%%QT_INCDIR%%/QtCore/QXmlStreamEntityDeclarations +%%QT_INCDIR%%/QtCore/QXmlStreamEntityResolver +%%QT_INCDIR%%/QtCore/QXmlStreamNamespaceDeclaration +%%QT_INCDIR%%/QtCore/QXmlStreamNamespaceDeclarations +%%QT_INCDIR%%/QtCore/QXmlStreamNotationDeclaration +%%QT_INCDIR%%/QtCore/QXmlStreamNotationDeclarations +%%QT_INCDIR%%/QtCore/QXmlStreamReader +%%QT_INCDIR%%/QtCore/QXmlStreamWriter +%%QT_INCDIR%%/QtCore/Qt +%%QT_INCDIR%%/QtCore/QtAlgorithms +%%QT_INCDIR%%/QtCore/QtCborCommon +%%QT_INCDIR%%/QtCore/QtCleanUpFunction +%%QT_INCDIR%%/QtCore/QtCompare +%%QT_INCDIR%%/QtCore/QtConfig +%%QT_INCDIR%%/QtCore/QtContainerFwd +%%QT_INCDIR%%/QtCore/QtCore +%%QT_INCDIR%%/QtCore/QtCoreDepends +%%QT_INCDIR%%/QtCore/QtCoreVersion +%%QT_INCDIR%%/QtCore/QtDebug +%%QT_INCDIR%%/QtCore/QtEndian +%%QT_INCDIR%%/QtCore/QtGlobal +%%QT_INCDIR%%/QtCore/QtMath +%%QT_INCDIR%%/QtCore/QtMessageHandler +%%QT_INCDIR%%/QtCore/QtNumeric +%%QT_INCDIR%%/QtCore/QtPlugin +%%QT_INCDIR%%/QtCore/QtPluginInstanceFunction +%%QT_INCDIR%%/QtCore/QtPluginMetaDataFunction +%%QT_INCDIR%%/QtCore/q20algorithm.h +%%QT_INCDIR%%/QtCore/q20functional.h +%%QT_INCDIR%%/QtCore/q20iterator.h +%%QT_INCDIR%%/QtCore/qabstractanimation.h +%%QT_INCDIR%%/QtCore/qabstracteventdispatcher.h +%%QT_INCDIR%%/QtCore/qabstractitemmodel.h +%%QT_INCDIR%%/QtCore/qabstractnativeeventfilter.h +%%QT_INCDIR%%/QtCore/qabstractproxymodel.h +%%QT_INCDIR%%/QtCore/qalgorithms.h +%%QT_INCDIR%%/QtCore/qanimationgroup.h +%%QT_INCDIR%%/QtCore/qanystringview.h +%%QT_INCDIR%%/QtCore/qapplicationstatic.h +%%QT_INCDIR%%/QtCore/qarraydata.h +%%QT_INCDIR%%/QtCore/qarraydataops.h +%%QT_INCDIR%%/QtCore/qarraydatapointer.h +%%QT_INCDIR%%/QtCore/qassociativeiterable.h +%%QT_INCDIR%%/QtCore/qatomic.h +%%QT_INCDIR%%/QtCore/qatomic_bootstrap.h +%%QT_INCDIR%%/QtCore/qatomic_cxx11.h +%%QT_INCDIR%%/QtCore/qbasicatomic.h +%%QT_INCDIR%%/QtCore/qbasictimer.h +%%QT_INCDIR%%/QtCore/qbindingstorage.h +%%QT_INCDIR%%/QtCore/qbitarray.h +%%QT_INCDIR%%/QtCore/qbuffer.h +%%QT_INCDIR%%/QtCore/qbytearray.h +%%QT_INCDIR%%/QtCore/qbytearrayalgorithms.h +%%QT_INCDIR%%/QtCore/qbytearraylist.h +%%QT_INCDIR%%/QtCore/qbytearraymatcher.h +%%QT_INCDIR%%/QtCore/qbytearrayview.h +%%QT_INCDIR%%/QtCore/qcache.h +%%QT_INCDIR%%/QtCore/qcalendar.h +%%QT_INCDIR%%/QtCore/qcborarray.h +%%QT_INCDIR%%/QtCore/qcborcommon.h +%%QT_INCDIR%%/QtCore/qcbormap.h +%%QT_INCDIR%%/QtCore/qcborstream.h +%%QT_INCDIR%%/QtCore/qcborstreamreader.h +%%QT_INCDIR%%/QtCore/qcborstreamwriter.h +%%QT_INCDIR%%/QtCore/qcborvalue.h +%%QT_INCDIR%%/QtCore/qchar.h +%%QT_INCDIR%%/QtCore/qcollator.h +%%QT_INCDIR%%/QtCore/qcommandlineoption.h +%%QT_INCDIR%%/QtCore/qcommandlineparser.h +%%QT_INCDIR%%/QtCore/qcompare.h +%%QT_INCDIR%%/QtCore/qcompare_impl.h +%%QT_INCDIR%%/QtCore/qcompilerdetection.h +%%QT_INCDIR%%/QtCore/qconcatenatetablesproxymodel.h +%%QT_INCDIR%%/QtCore/qconfig-bootstrapped.h +%%QT_INCDIR%%/QtCore/qconfig.h +%%QT_INCDIR%%/QtCore/qcontainerfwd.h +%%QT_INCDIR%%/QtCore/qcontainerinfo.h +%%QT_INCDIR%%/QtCore/qcontainertools_impl.h +%%QT_INCDIR%%/QtCore/qcontiguouscache.h +%%QT_INCDIR%%/QtCore/qcoreapplication.h +%%QT_INCDIR%%/QtCore/qcoreapplication_platform.h +%%QT_INCDIR%%/QtCore/qcoreevent.h +%%QT_INCDIR%%/QtCore/qcryptographichash.h +%%QT_INCDIR%%/QtCore/qdatastream.h +%%QT_INCDIR%%/QtCore/qdatetime.h +%%QT_INCDIR%%/QtCore/qdeadlinetimer.h +%%QT_INCDIR%%/QtCore/qdebug.h +%%QT_INCDIR%%/QtCore/qdir.h +%%QT_INCDIR%%/QtCore/qdiriterator.h +%%QT_INCDIR%%/QtCore/qeasingcurve.h +%%QT_INCDIR%%/QtCore/qelapsedtimer.h +%%QT_INCDIR%%/QtCore/qendian.h +%%QT_INCDIR%%/QtCore/qeventloop.h +%%QT_INCDIR%%/QtCore/qexception.h +%%QT_INCDIR%%/QtCore/qfactoryinterface.h +%%QT_INCDIR%%/QtCore/qfile.h +%%QT_INCDIR%%/QtCore/qfiledevice.h +%%QT_INCDIR%%/QtCore/qfileinfo.h +%%QT_INCDIR%%/QtCore/qfileselector.h +%%QT_INCDIR%%/QtCore/qfilesystemwatcher.h +%%QT_INCDIR%%/QtCore/qflags.h +%%QT_INCDIR%%/QtCore/qfloat16.h +%%QT_INCDIR%%/QtCore/qfunctions_vxworks.h +%%QT_INCDIR%%/QtCore/qfuture.h +%%QT_INCDIR%%/QtCore/qfuture_impl.h +%%QT_INCDIR%%/QtCore/qfutureinterface.h +%%QT_INCDIR%%/QtCore/qfuturesynchronizer.h +%%QT_INCDIR%%/QtCore/qfuturewatcher.h +%%QT_INCDIR%%/QtCore/qgenericatomic.h +%%QT_INCDIR%%/QtCore/qglobal.h +%%QT_INCDIR%%/QtCore/qglobalstatic.h +%%QT_INCDIR%%/QtCore/qhash.h +%%QT_INCDIR%%/QtCore/qhashfunctions.h +%%QT_INCDIR%%/QtCore/qidentityproxymodel.h +%%QT_INCDIR%%/QtCore/qiodevice.h +%%QT_INCDIR%%/QtCore/qiodevicebase.h +%%QT_INCDIR%%/QtCore/qitemselectionmodel.h +%%QT_INCDIR%%/QtCore/qiterable.h +%%QT_INCDIR%%/QtCore/qiterator.h +%%QT_INCDIR%%/QtCore/qjnienvironment.h +%%QT_INCDIR%%/QtCore/qjniobject.h +%%QT_INCDIR%%/QtCore/qjsonarray.h +%%QT_INCDIR%%/QtCore/qjsondocument.h +%%QT_INCDIR%%/QtCore/qjsonobject.h +%%QT_INCDIR%%/QtCore/qjsonvalue.h +%%QT_INCDIR%%/QtCore/qlibrary.h +%%QT_INCDIR%%/QtCore/qlibraryinfo.h +%%QT_INCDIR%%/QtCore/qline.h +%%QT_INCDIR%%/QtCore/qlist.h +%%QT_INCDIR%%/QtCore/qlocale.h +%%QT_INCDIR%%/QtCore/qlockfile.h +%%QT_INCDIR%%/QtCore/qlogging.h +%%QT_INCDIR%%/QtCore/qloggingcategory.h +%%QT_INCDIR%%/QtCore/qmap.h +%%QT_INCDIR%%/QtCore/qmargins.h +%%QT_INCDIR%%/QtCore/qmath.h +%%QT_INCDIR%%/QtCore/qmessageauthenticationcode.h +%%QT_INCDIR%%/QtCore/qmetacontainer.h +%%QT_INCDIR%%/QtCore/qmetaobject.h +%%QT_INCDIR%%/QtCore/qmetatype.h +%%QT_INCDIR%%/QtCore/qmimedata.h +%%QT_INCDIR%%/QtCore/qmimedatabase.h +%%QT_INCDIR%%/QtCore/qmimetype.h +%%QT_INCDIR%%/QtCore/qmutex.h +%%QT_INCDIR%%/QtCore/qnamespace.h +%%QT_INCDIR%%/QtCore/qnativeinterface.h +%%QT_INCDIR%%/QtCore/qnumeric.h +%%QT_INCDIR%%/QtCore/qobject.h +%%QT_INCDIR%%/QtCore/qobject_impl.h +%%QT_INCDIR%%/QtCore/qobjectcleanuphandler.h +%%QT_INCDIR%%/QtCore/qobjectdefs.h +%%QT_INCDIR%%/QtCore/qobjectdefs_impl.h +%%QT_INCDIR%%/QtCore/qoperatingsystemversion.h +%%QT_INCDIR%%/QtCore/qpair.h +%%QT_INCDIR%%/QtCore/qparallelanimationgroup.h +%%QT_INCDIR%%/QtCore/qpauseanimation.h +%%QT_INCDIR%%/QtCore/qplugin.h +%%QT_INCDIR%%/QtCore/qpluginloader.h +%%QT_INCDIR%%/QtCore/qpoint.h +%%QT_INCDIR%%/QtCore/qpointer.h +%%QT_INCDIR%%/QtCore/qprocess.h +%%QT_INCDIR%%/QtCore/qprocessordetection.h +%%QT_INCDIR%%/QtCore/qpromise.h +%%QT_INCDIR%%/QtCore/qproperty.h +%%QT_INCDIR%%/QtCore/qpropertyanimation.h +%%QT_INCDIR%%/QtCore/qpropertyprivate.h +%%QT_INCDIR%%/QtCore/qqueue.h +%%QT_INCDIR%%/QtCore/qrandom.h +%%QT_INCDIR%%/QtCore/qreadwritelock.h +%%QT_INCDIR%%/QtCore/qrect.h +%%QT_INCDIR%%/QtCore/qrefcount.h +%%QT_INCDIR%%/QtCore/qregularexpression.h +%%QT_INCDIR%%/QtCore/qresource.h +%%QT_INCDIR%%/QtCore/qresultstore.h +%%QT_INCDIR%%/QtCore/qrunnable.h +%%QT_INCDIR%%/QtCore/qsavefile.h +%%QT_INCDIR%%/QtCore/qscopedpointer.h +%%QT_INCDIR%%/QtCore/qscopedvaluerollback.h +%%QT_INCDIR%%/QtCore/qscopeguard.h +%%QT_INCDIR%%/QtCore/qsemaphore.h +%%QT_INCDIR%%/QtCore/qsequentialanimationgroup.h +%%QT_INCDIR%%/QtCore/qsequentialiterable.h +%%QT_INCDIR%%/QtCore/qset.h +%%QT_INCDIR%%/QtCore/qsettings.h +%%QT_INCDIR%%/QtCore/qshareddata.h +%%QT_INCDIR%%/QtCore/qshareddata_impl.h +%%QT_INCDIR%%/QtCore/qsharedmemory.h +%%QT_INCDIR%%/QtCore/qsharedpointer.h +%%QT_INCDIR%%/QtCore/qsharedpointer_impl.h +%%QT_INCDIR%%/QtCore/qsignalmapper.h +%%QT_INCDIR%%/QtCore/qsimd.h +%%QT_INCDIR%%/QtCore/qsize.h +%%QT_INCDIR%%/QtCore/qsocketnotifier.h +%%QT_INCDIR%%/QtCore/qsortfilterproxymodel.h +%%QT_INCDIR%%/QtCore/qstack.h +%%QT_INCDIR%%/QtCore/qstandardpaths.h +%%QT_INCDIR%%/QtCore/qstorageinfo.h +%%QT_INCDIR%%/QtCore/qstring.h +%%QT_INCDIR%%/QtCore/qstringalgorithms.h +%%QT_INCDIR%%/QtCore/qstringbuilder.h +%%QT_INCDIR%%/QtCore/qstringconverter.h +%%QT_INCDIR%%/QtCore/qstringlist.h +%%QT_INCDIR%%/QtCore/qstringlistmodel.h +%%QT_INCDIR%%/QtCore/qstringliteral.h +%%QT_INCDIR%%/QtCore/qstringmatcher.h +%%QT_INCDIR%%/QtCore/qstringtokenizer.h +%%QT_INCDIR%%/QtCore/qstringview.h +%%QT_INCDIR%%/QtCore/qsysinfo.h +%%QT_INCDIR%%/QtCore/qsystemdetection.h +%%QT_INCDIR%%/QtCore/qsystemsemaphore.h +%%QT_INCDIR%%/QtCore/qt_windows.h +%%QT_INCDIR%%/QtCore/qtaggedpointer.h +%%QT_INCDIR%%/QtCore/qtcore-config.h +%%QT_INCDIR%%/QtCore/qtcoreexports.h +%%QT_INCDIR%%/QtCore/qtcoreversion.h +%%QT_INCDIR%%/QtCore/qtemporarydir.h +%%QT_INCDIR%%/QtCore/qtemporaryfile.h +%%QT_INCDIR%%/QtCore/qtestsupport_core.h +%%QT_INCDIR%%/QtCore/qtextboundaryfinder.h +%%QT_INCDIR%%/QtCore/qtextstream.h +%%QT_INCDIR%%/QtCore/qthread.h +%%QT_INCDIR%%/QtCore/qthreadpool.h +%%QT_INCDIR%%/QtCore/qthreadstorage.h +%%QT_INCDIR%%/QtCore/qtimeline.h +%%QT_INCDIR%%/QtCore/qtimer.h +%%QT_INCDIR%%/QtCore/qtimezone.h +%%QT_INCDIR%%/QtCore/qtmetamacros.h +%%QT_INCDIR%%/QtCore/qtranslator.h +%%QT_INCDIR%%/QtCore/qtransposeproxymodel.h +%%QT_INCDIR%%/QtCore/qtypeinfo.h +%%QT_INCDIR%%/QtCore/qurl.h +%%QT_INCDIR%%/QtCore/qurlquery.h +%%QT_INCDIR%%/QtCore/qutf8stringview.h +%%QT_INCDIR%%/QtCore/quuid.h +%%QT_INCDIR%%/QtCore/qvariant.h +%%QT_INCDIR%%/QtCore/qvariantanimation.h +%%QT_INCDIR%%/QtCore/qvarlengtharray.h +%%QT_INCDIR%%/QtCore/qvector.h +%%QT_INCDIR%%/QtCore/qversionnumber.h +%%QT_INCDIR%%/QtCore/qversiontagging.h +%%QT_INCDIR%%/QtCore/qwaitcondition.h +%%QT_INCDIR%%/QtCore/qwineventnotifier.h +%%QT_INCDIR%%/QtCore/qxmlstream.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/dbus_minimal_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbus_symbols_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusabstractadaptor_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusabstractinterface_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusargument_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusconnection_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusconnectionmanager_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbuscontext_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusintegrator_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusinterface_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusintrospection_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmessage_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmetaobject_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusmetatype_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbuspendingcall_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusthreaddebug_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusutil_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qdbusxmlparser_p.h +%%QT_INCDIR%%/QtDBus/%%FULLVER%%/QtDBus/private/qtdbusglobal_p.h +%%QT_INCDIR%%/QtDBus/QDBusAbstractAdaptor +%%QT_INCDIR%%/QtDBus/QDBusAbstractInterface +%%QT_INCDIR%%/QtDBus/QDBusAbstractInterfaceBase +%%QT_INCDIR%%/QtDBus/QDBusArgument +%%QT_INCDIR%%/QtDBus/QDBusConnection +%%QT_INCDIR%%/QtDBus/QDBusConnectionInterface +%%QT_INCDIR%%/QtDBus/QDBusContext +%%QT_INCDIR%%/QtDBus/QDBusError +%%QT_INCDIR%%/QtDBus/QDBusInterface +%%QT_INCDIR%%/QtDBus/QDBusMessage +%%QT_INCDIR%%/QtDBus/QDBusMetaType +%%QT_INCDIR%%/QtDBus/QDBusObjectPath +%%QT_INCDIR%%/QtDBus/QDBusPendingCall +%%QT_INCDIR%%/QtDBus/QDBusPendingCallWatcher +%%QT_INCDIR%%/QtDBus/QDBusPendingReply +%%QT_INCDIR%%/QtDBus/QDBusPendingReplyBase +%%QT_INCDIR%%/QtDBus/QDBusReply +%%QT_INCDIR%%/QtDBus/QDBusServer +%%QT_INCDIR%%/QtDBus/QDBusServiceWatcher +%%QT_INCDIR%%/QtDBus/QDBusSignature +%%QT_INCDIR%%/QtDBus/QDBusUnixFileDescriptor +%%QT_INCDIR%%/QtDBus/QDBusVariant +%%QT_INCDIR%%/QtDBus/QDBusVirtualObject +%%QT_INCDIR%%/QtDBus/QtDBus +%%QT_INCDIR%%/QtDBus/QtDBusDepends +%%QT_INCDIR%%/QtDBus/QtDBusVersion +%%QT_INCDIR%%/QtDBus/qdbusabstractadaptor.h +%%QT_INCDIR%%/QtDBus/qdbusabstractinterface.h +%%QT_INCDIR%%/QtDBus/qdbusargument.h +%%QT_INCDIR%%/QtDBus/qdbusconnection.h +%%QT_INCDIR%%/QtDBus/qdbusconnectioninterface.h +%%QT_INCDIR%%/QtDBus/qdbuscontext.h +%%QT_INCDIR%%/QtDBus/qdbuserror.h +%%QT_INCDIR%%/QtDBus/qdbusextratypes.h +%%QT_INCDIR%%/QtDBus/qdbusinterface.h +%%QT_INCDIR%%/QtDBus/qdbusmacros.h +%%QT_INCDIR%%/QtDBus/qdbusmessage.h +%%QT_INCDIR%%/QtDBus/qdbusmetatype.h +%%QT_INCDIR%%/QtDBus/qdbuspendingcall.h +%%QT_INCDIR%%/QtDBus/qdbuspendingreply.h +%%QT_INCDIR%%/QtDBus/qdbusreply.h +%%QT_INCDIR%%/QtDBus/qdbusserver.h +%%QT_INCDIR%%/QtDBus/qdbusservicewatcher.h +%%QT_INCDIR%%/QtDBus/qdbusunixfiledescriptor.h +%%QT_INCDIR%%/QtDBus/qdbusvirtualobject.h +%%QT_INCDIR%%/QtDBus/qtdbusexports.h +%%QT_INCDIR%%/QtDBus/qtdbusglobal.h +%%QT_INCDIR%%/QtDBus/qtdbusversion.h +%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_dummy_p.h +%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_p.h +%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_static_p.h +%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_udev_p.h +%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupport +%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportDepends +%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportVersion +%%QT_INCDIR%%/QtDeviceDiscoverySupport/qtdevicediscoverysupportversion.h +%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbbackingstore_p.h +%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbcursor_p.h +%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbscreen_p.h +%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbvthandler_p.h +%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbwindow_p.h +%%QT_INCDIR%%/QtFbSupport/QtFbSupport +%%QT_INCDIR%%/QtFbSupport/QtFbSupportDepends +%%QT_INCDIR%%/QtFbSupport/QtFbSupportVersion +%%QT_INCDIR%%/QtFbSupport/qtfbsupportversion.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/atspiadaptor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/cs_tdr_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/dbusconnection_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractfileiconengine_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractfileiconprovider_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractlayoutstyleinfo_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstracttextdocumentlayout_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaccessiblebridgeutils_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaccessiblecache_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qaction_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qactiongroup_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qapplekeymapper_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qastchandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qbasicvulkanplatforminstance_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qbezier_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qblendfunctions_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qblittable_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qbmphandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolormatrix_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolorspace_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolortransferfunction_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolortransfertable_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolortransform_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolortrc_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcolortrclut_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcoregraphics_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcoretextfontdatabase_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcosmeticstroker_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssparser_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcssutil_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qcursor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdatabuffer_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenuadaptor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenubar_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenuconnection_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenuregistrarproxy_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusmenutypes_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbusplatformmenu_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbustrayicon_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdbustraytypes_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdistancefield_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdnd_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_mips_dsp_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_neon_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawhelper_x86_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qdrawingprimitive_sse2_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qedidparser_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qedidvendortable_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qeglconvenience_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qeglpbuffer_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qeglplatformcontext_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qeglstreamconvenience_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qemulationpaintengine_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qevent_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qeventdispatcher_glib_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qeventpoint_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfileinfogatherer_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfilesystemmodel_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfixed_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfont_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontconfigdatabase_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontdatabase_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_coretext_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_ft_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengine_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontengineglyphcache_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontenginemultifontconfig_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfontsubset_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfragmentmap_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qfreetypefontdatabase_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixeventdispatcher_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixfontdatabase_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixservices_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgenericunixthemes_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qglxconvenience_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qglyphrun_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgrayraster_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qgridlayoutengine_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qguiapplication_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qharfbuzzng_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qhexstring_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qhighdpiscaling_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qicc_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qicon_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qiconloader_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimage_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimagepixmapcleanuphooks_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimagereaderwriterhelpers_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qimagescale_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputcontrol_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputdevice_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputdevicemanager_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputdevicemanager_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinputmethod_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qinternalmimedata_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkeymapper_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qkeysequence_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qktxhandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qlayoutpolicy_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qmacmime_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qmath_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qmemrotate_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qoffscreensurface_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopengl_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglcontext_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglextensions_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qopenglprogrambinarycache_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qoutlinemapper_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpagedpaintdevice_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpageranges_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintdevicewindow_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_blitter_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_pic_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengine_raster_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpaintengineex_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpainter_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpainterpath_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpathclipper_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpathsimplifier_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpdf_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpen_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpicture_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixellayout_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmap_blitter_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmap_raster_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpixmapcache_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpkmhandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpnghandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qpointingdevice_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qppmhandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrasterbackingstore_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrasterdefs_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrasterizer_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrawfont_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrbtree_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrgba64_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhi_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhi_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhid3d11_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhid3d11_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhigles2_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhigles2_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhimetal_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhimetal_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhinull_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhinull_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhiprofiler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhiprofiler_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhivulkan_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhivulkan_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qrhivulkanext_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qscreen_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qsessionmanager_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshader_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshader_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshaderdescription_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshaderdescription_p_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshapedpixmapdndwindow_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshortcut_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshortcutmap_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qsimpledrag_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspi_constant_mappings_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspi_struct_marshallers_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspiaccessiblebridge_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspiapplicationadaptor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspidbuscache_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstandarditemmodel_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstatictext_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstatusnotifieritemadaptor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstroker_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qt_egl_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qt_gui_pch.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qt_mips_asm_dsp_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextcursor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocument_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocumentfragment_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextdocumentlayout_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextengine_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextformat_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexthtmlparser_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextimagehandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextmarkdownimporter_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextmarkdownwriter_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextobject_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextodfwriter_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexttable_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexturefiledata_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexturefilehandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtexturefilereader_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtextureglyphcache_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtgui-config_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtguiglobal_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtriangulatingstroker_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtriangulator_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qtx11extras_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qundostack_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qunixeventdispatcher_qpa_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qvectorpath_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qvulkanfunctions_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qvulkanwindow_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwasmlocalfileaccess_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindow_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsdirectwritefontdatabase_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsfontdatabase_ft_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsfontdatabase_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsfontdatabasebase_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsfontengine_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsfontenginedirectwrite_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsguieventdispatcher_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsmime_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsnativeimage_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qwindowsuiawrapper_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxbmhandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxdgnotificationproxy_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxkbcommon_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxlibeglintegration_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qxpmhandler_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qzipreader_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qzipwriter_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiaattributeids_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiaclientinterfaces_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiacontroltypeids_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiaerrorids_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiaeventids_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiageneralids_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiapatternids_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiapropertyids_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiaserverinterfaces_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/uiatypes_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformaccessibility.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformbackingstore.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformclipboard.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformcursor.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformdialoghelper.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformdrag.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformfontdatabase.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformgraphicsbuffer.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformgraphicsbufferhelper.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontext.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontext_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontextfactory_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatforminputcontextplugin_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegration.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegrationfactory_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformintegrationplugin.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformmenu.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformmenu_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformnativeinterface.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformoffscreensurface.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformopenglcontext.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformpixmap.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformscreen.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformscreen_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformservices.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsessionmanager.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsharedgraphicscache.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsurface.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformsystemtrayicon.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformtheme.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformtheme_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformthemefactory_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformthemeplugin.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformvulkaninstance.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformwindow.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qplatformwindow_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qwindowsysteminterface.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/qpa/qwindowsysteminterface_p.h +%%QT_INCDIR%%/QtGui/QAbstractFileIconProvider +%%QT_INCDIR%%/QtGui/QAbstractTextDocumentLayout +%%QT_INCDIR%%/QtGui/QAbstractUndoItem +%%QT_INCDIR%%/QtGui/QAccessible +%%QT_INCDIR%%/QtGui/QAccessibleActionInterface +%%QT_INCDIR%%/QtGui/QAccessibleApplication +%%QT_INCDIR%%/QtGui/QAccessibleBridge +%%QT_INCDIR%%/QtGui/QAccessibleBridgePlugin +%%QT_INCDIR%%/QtGui/QAccessibleEditableTextInterface +%%QT_INCDIR%%/QtGui/QAccessibleEvent +%%QT_INCDIR%%/QtGui/QAccessibleHyperlinkInterface +%%QT_INCDIR%%/QtGui/QAccessibleImageInterface +%%QT_INCDIR%%/QtGui/QAccessibleInterface +%%QT_INCDIR%%/QtGui/QAccessibleObject +%%QT_INCDIR%%/QtGui/QAccessiblePlugin +%%QT_INCDIR%%/QtGui/QAccessibleStateChangeEvent +%%QT_INCDIR%%/QtGui/QAccessibleTableCellInterface +%%QT_INCDIR%%/QtGui/QAccessibleTableInterface +%%QT_INCDIR%%/QtGui/QAccessibleTableModelChangeEvent +%%QT_INCDIR%%/QtGui/QAccessibleTextCursorEvent +%%QT_INCDIR%%/QtGui/QAccessibleTextInsertEvent +%%QT_INCDIR%%/QtGui/QAccessibleTextInterface +%%QT_INCDIR%%/QtGui/QAccessibleTextRemoveEvent +%%QT_INCDIR%%/QtGui/QAccessibleTextSelectionEvent +%%QT_INCDIR%%/QtGui/QAccessibleTextUpdateEvent +%%QT_INCDIR%%/QtGui/QAccessibleValueChangeEvent +%%QT_INCDIR%%/QtGui/QAccessibleValueInterface +%%QT_INCDIR%%/QtGui/QAction +%%QT_INCDIR%%/QtGui/QActionEvent +%%QT_INCDIR%%/QtGui/QActionGroup +%%QT_INCDIR%%/QtGui/QApplicationStateChangeEvent +%%QT_INCDIR%%/QtGui/QBackingStore +%%QT_INCDIR%%/QtGui/QBitmap +%%QT_INCDIR%%/QtGui/QBrush +%%QT_INCDIR%%/QtGui/QBrushData +%%QT_INCDIR%%/QtGui/QBrushDataPointerDeleter +%%QT_INCDIR%%/QtGui/QClipboard +%%QT_INCDIR%%/QtGui/QCloseEvent +%%QT_INCDIR%%/QtGui/QColor +%%QT_INCDIR%%/QtGui/QColorSpace +%%QT_INCDIR%%/QtGui/QColorTransform +%%QT_INCDIR%%/QtGui/QConicalGradient +%%QT_INCDIR%%/QtGui/QContextMenuEvent +%%QT_INCDIR%%/QtGui/QCursor +%%QT_INCDIR%%/QtGui/QDesktopServices +%%QT_INCDIR%%/QtGui/QDoubleValidator +%%QT_INCDIR%%/QtGui/QDrag +%%QT_INCDIR%%/QtGui/QDragEnterEvent +%%QT_INCDIR%%/QtGui/QDragLeaveEvent +%%QT_INCDIR%%/QtGui/QDragMoveEvent +%%QT_INCDIR%%/QtGui/QDropEvent +%%QT_INCDIR%%/QtGui/QEnterEvent +%%QT_INCDIR%%/QtGui/QEventPoint +%%QT_INCDIR%%/QtGui/QExposeEvent +%%QT_INCDIR%%/QtGui/QFileOpenEvent +%%QT_INCDIR%%/QtGui/QFileSystemModel +%%QT_INCDIR%%/QtGui/QFocusEvent +%%QT_INCDIR%%/QtGui/QFont +%%QT_INCDIR%%/QtGui/QFontDatabase +%%QT_INCDIR%%/QtGui/QFontInfo +%%QT_INCDIR%%/QtGui/QFontMetrics +%%QT_INCDIR%%/QtGui/QFontMetricsF +%%QT_INCDIR%%/QtGui/QGenericMatrix +%%QT_INCDIR%%/QtGui/QGenericPlugin +%%QT_INCDIR%%/QtGui/QGenericPluginFactory +%%QT_INCDIR%%/QtGui/QGlyphRun +%%QT_INCDIR%%/QtGui/QGradient +%%QT_INCDIR%%/QtGui/QGradientStop +%%QT_INCDIR%%/QtGui/QGradientStops +%%QT_INCDIR%%/QtGui/QGuiApplication +%%QT_INCDIR%%/QtGui/QHelpEvent +%%QT_INCDIR%%/QtGui/QHideEvent +%%QT_INCDIR%%/QtGui/QHoverEvent +%%QT_INCDIR%%/QtGui/QIcon +%%QT_INCDIR%%/QtGui/QIconDragEvent +%%QT_INCDIR%%/QtGui/QIconEngine +%%QT_INCDIR%%/QtGui/QIconEnginePlugin +%%QT_INCDIR%%/QtGui/QImage +%%QT_INCDIR%%/QtGui/QImageCleanupFunction +%%QT_INCDIR%%/QtGui/QImageIOHandler +%%QT_INCDIR%%/QtGui/QImageIOPlugin +%%QT_INCDIR%%/QtGui/QImageReader +%%QT_INCDIR%%/QtGui/QImageWriter +%%QT_INCDIR%%/QtGui/QInputDevice +%%QT_INCDIR%%/QtGui/QInputEvent +%%QT_INCDIR%%/QtGui/QInputMethod +%%QT_INCDIR%%/QtGui/QInputMethodEvent +%%QT_INCDIR%%/QtGui/QInputMethodQueryEvent +%%QT_INCDIR%%/QtGui/QIntValidator +%%QT_INCDIR%%/QtGui/QKeyEvent +%%QT_INCDIR%%/QtGui/QKeySequence +%%QT_INCDIR%%/QtGui/QLinearGradient +%%QT_INCDIR%%/QtGui/QMatrix2x2 +%%QT_INCDIR%%/QtGui/QMatrix2x3 +%%QT_INCDIR%%/QtGui/QMatrix2x4 +%%QT_INCDIR%%/QtGui/QMatrix3x2 +%%QT_INCDIR%%/QtGui/QMatrix3x3 +%%QT_INCDIR%%/QtGui/QMatrix3x4 +%%QT_INCDIR%%/QtGui/QMatrix4x2 +%%QT_INCDIR%%/QtGui/QMatrix4x3 +%%QT_INCDIR%%/QtGui/QMatrix4x4 +%%QT_INCDIR%%/QtGui/QMouseEvent +%%QT_INCDIR%%/QtGui/QMoveEvent +%%QT_INCDIR%%/QtGui/QMovie +%%QT_INCDIR%%/QtGui/QNativeGestureEvent +%%QT_INCDIR%%/QtGui/QOffscreenSurface +%%QT_INCDIR%%/QtGui/QOpenGLContext +%%QT_INCDIR%%/QtGui/QOpenGLContextGroup +%%QT_INCDIR%%/QtGui/QOpenGLExtraFunctions +%%QT_INCDIR%%/QtGui/QOpenGLExtraFunctionsPrivate +%%QT_INCDIR%%/QtGui/QOpenGLFunctions +%%QT_INCDIR%%/QtGui/QOpenGLFunctionsPrivate +%%QT_INCDIR%%/QtGui/QPageLayout +%%QT_INCDIR%%/QtGui/QPageRanges +%%QT_INCDIR%%/QtGui/QPageSize +%%QT_INCDIR%%/QtGui/QPagedPaintDevice +%%QT_INCDIR%%/QtGui/QPaintDevice +%%QT_INCDIR%%/QtGui/QPaintDeviceWindow +%%QT_INCDIR%%/QtGui/QPaintEngine +%%QT_INCDIR%%/QtGui/QPaintEngineState +%%QT_INCDIR%%/QtGui/QPaintEvent +%%QT_INCDIR%%/QtGui/QPainter +%%QT_INCDIR%%/QtGui/QPainterPath +%%QT_INCDIR%%/QtGui/QPainterPathStroker +%%QT_INCDIR%%/QtGui/QPalette +%%QT_INCDIR%%/QtGui/QPdfWriter +%%QT_INCDIR%%/QtGui/QPen +%%QT_INCDIR%%/QtGui/QPicture +%%QT_INCDIR%%/QtGui/QPixelFormat +%%QT_INCDIR%%/QtGui/QPixmap +%%QT_INCDIR%%/QtGui/QPixmapCache +%%QT_INCDIR%%/QtGui/QPlatformSurfaceEvent +%%QT_INCDIR%%/QtGui/QPointerEvent +%%QT_INCDIR%%/QtGui/QPointingDevice +%%QT_INCDIR%%/QtGui/QPointingDeviceUniqueId +%%QT_INCDIR%%/QtGui/QPolygon +%%QT_INCDIR%%/QtGui/QPolygonF +%%QT_INCDIR%%/QtGui/QQuaternion +%%QT_INCDIR%%/QtGui/QRadialGradient +%%QT_INCDIR%%/QtGui/QRasterWindow +%%QT_INCDIR%%/QtGui/QRawFont +%%QT_INCDIR%%/QtGui/QRegion +%%QT_INCDIR%%/QtGui/QRegularExpressionValidator +%%QT_INCDIR%%/QtGui/QResizeEvent +%%QT_INCDIR%%/QtGui/QRgb +%%QT_INCDIR%%/QtGui/QRgba64 +%%QT_INCDIR%%/QtGui/QRgbaFloat16 +%%QT_INCDIR%%/QtGui/QRgbaFloat32 +%%QT_INCDIR%%/QtGui/QScreen +%%QT_INCDIR%%/QtGui/QScreenOrientationChangeEvent +%%QT_INCDIR%%/QtGui/QScrollEvent +%%QT_INCDIR%%/QtGui/QScrollPrepareEvent +%%QT_INCDIR%%/QtGui/QSessionManager +%%QT_INCDIR%%/QtGui/QShortcut +%%QT_INCDIR%%/QtGui/QShortcutEvent +%%QT_INCDIR%%/QtGui/QShowEvent +%%QT_INCDIR%%/QtGui/QSinglePointEvent +%%QT_INCDIR%%/QtGui/QStandardItem +%%QT_INCDIR%%/QtGui/QStandardItemModel +%%QT_INCDIR%%/QtGui/QStaticText +%%QT_INCDIR%%/QtGui/QStatusTipEvent +%%QT_INCDIR%%/QtGui/QStyleHints +%%QT_INCDIR%%/QtGui/QSurface +%%QT_INCDIR%%/QtGui/QSurfaceFormat +%%QT_INCDIR%%/QtGui/QSyntaxHighlighter +%%QT_INCDIR%%/QtGui/QTabletEvent +%%QT_INCDIR%%/QtGui/QTextBlock +%%QT_INCDIR%%/QtGui/QTextBlockFormat +%%QT_INCDIR%%/QtGui/QTextBlockGroup +%%QT_INCDIR%%/QtGui/QTextBlockUserData +%%QT_INCDIR%%/QtGui/QTextCharFormat +%%QT_INCDIR%%/QtGui/QTextCursor +%%QT_INCDIR%%/QtGui/QTextDocument +%%QT_INCDIR%%/QtGui/QTextDocumentFragment +%%QT_INCDIR%%/QtGui/QTextDocumentWriter +%%QT_INCDIR%%/QtGui/QTextFormat +%%QT_INCDIR%%/QtGui/QTextFragment +%%QT_INCDIR%%/QtGui/QTextFrame +%%QT_INCDIR%%/QtGui/QTextFrameFormat +%%QT_INCDIR%%/QtGui/QTextFrameLayoutData +%%QT_INCDIR%%/QtGui/QTextImageFormat +%%QT_INCDIR%%/QtGui/QTextInlineObject +%%QT_INCDIR%%/QtGui/QTextItem +%%QT_INCDIR%%/QtGui/QTextLayout +%%QT_INCDIR%%/QtGui/QTextLength +%%QT_INCDIR%%/QtGui/QTextLine +%%QT_INCDIR%%/QtGui/QTextList +%%QT_INCDIR%%/QtGui/QTextListFormat +%%QT_INCDIR%%/QtGui/QTextObject +%%QT_INCDIR%%/QtGui/QTextObjectInterface +%%QT_INCDIR%%/QtGui/QTextOption +%%QT_INCDIR%%/QtGui/QTextTable +%%QT_INCDIR%%/QtGui/QTextTableCell +%%QT_INCDIR%%/QtGui/QTextTableCellFormat +%%QT_INCDIR%%/QtGui/QTextTableFormat +%%QT_INCDIR%%/QtGui/QToolBarChangeEvent +%%QT_INCDIR%%/QtGui/QTouchEvent +%%QT_INCDIR%%/QtGui/QTransform +%%QT_INCDIR%%/QtGui/QUndoCommand +%%QT_INCDIR%%/QtGui/QUndoGroup +%%QT_INCDIR%%/QtGui/QUndoStack +%%QT_INCDIR%%/QtGui/QValidator +%%QT_INCDIR%%/QtGui/QVector2D +%%QT_INCDIR%%/QtGui/QVector3D +%%QT_INCDIR%%/QtGui/QVector4D +%%QT_INCDIR%%/QtGui/QVulkanDeviceFunctions +%%QT_INCDIR%%/QtGui/QVulkanExtension +%%QT_INCDIR%%/QtGui/QVulkanFunctions +%%QT_INCDIR%%/QtGui/QVulkanInfoVector +%%QT_INCDIR%%/QtGui/QVulkanInstance +%%QT_INCDIR%%/QtGui/QVulkanLayer +%%QT_INCDIR%%/QtGui/QVulkanWindow +%%QT_INCDIR%%/QtGui/QVulkanWindowRenderer +%%QT_INCDIR%%/QtGui/QWhatsThisClickedEvent +%%QT_INCDIR%%/QtGui/QWheelEvent +%%QT_INCDIR%%/QtGui/QWidgetList +%%QT_INCDIR%%/QtGui/QWidgetMapper +%%QT_INCDIR%%/QtGui/QWidgetSet +%%QT_INCDIR%%/QtGui/QWindow +%%QT_INCDIR%%/QtGui/QWindowList +%%QT_INCDIR%%/QtGui/QWindowStateChangeEvent +%%QT_INCDIR%%/QtGui/QtEvents +%%QT_INCDIR%%/QtGui/QtGui +%%QT_INCDIR%%/QtGui/QtGuiDepends +%%QT_INCDIR%%/QtGui/QtGuiVersion +%%QT_INCDIR%%/QtGui/qabstractfileiconprovider.h +%%QT_INCDIR%%/QtGui/qabstracttextdocumentlayout.h +%%QT_INCDIR%%/QtGui/qaccessible.h +%%QT_INCDIR%%/QtGui/qaccessiblebridge.h +%%QT_INCDIR%%/QtGui/qaccessibleobject.h +%%QT_INCDIR%%/QtGui/qaccessibleplugin.h +%%QT_INCDIR%%/QtGui/qaction.h +%%QT_INCDIR%%/QtGui/qactiongroup.h +%%QT_INCDIR%%/QtGui/qbackingstore.h +%%QT_INCDIR%%/QtGui/qbitmap.h +%%QT_INCDIR%%/QtGui/qbrush.h +%%QT_INCDIR%%/QtGui/qclipboard.h +%%QT_INCDIR%%/QtGui/qcolor.h +%%QT_INCDIR%%/QtGui/qcolorspace.h +%%QT_INCDIR%%/QtGui/qcolortransform.h +%%QT_INCDIR%%/QtGui/qcursor.h +%%QT_INCDIR%%/QtGui/qdesktopservices.h +%%QT_INCDIR%%/QtGui/qdrag.h +%%QT_INCDIR%%/QtGui/qevent.h +%%QT_INCDIR%%/QtGui/qeventpoint.h +%%QT_INCDIR%%/QtGui/qfilesystemmodel.h +%%QT_INCDIR%%/QtGui/qfont.h +%%QT_INCDIR%%/QtGui/qfontdatabase.h +%%QT_INCDIR%%/QtGui/qfontinfo.h +%%QT_INCDIR%%/QtGui/qfontmetrics.h +%%QT_INCDIR%%/QtGui/qgenericmatrix.h +%%QT_INCDIR%%/QtGui/qgenericplugin.h +%%QT_INCDIR%%/QtGui/qgenericpluginfactory.h +%%QT_INCDIR%%/QtGui/qglyphrun.h +%%QT_INCDIR%%/QtGui/qguiapplication.h +%%QT_INCDIR%%/QtGui/qguiapplication_platform.h +%%QT_INCDIR%%/QtGui/qicon.h +%%QT_INCDIR%%/QtGui/qiconengine.h +%%QT_INCDIR%%/QtGui/qiconengineplugin.h +%%QT_INCDIR%%/QtGui/qimage.h +%%QT_INCDIR%%/QtGui/qimageiohandler.h +%%QT_INCDIR%%/QtGui/qimagereader.h +%%QT_INCDIR%%/QtGui/qimagewriter.h +%%QT_INCDIR%%/QtGui/qinputdevice.h +%%QT_INCDIR%%/QtGui/qinputmethod.h +%%QT_INCDIR%%/QtGui/qkeysequence.h +%%QT_INCDIR%%/QtGui/qmatrix4x4.h +%%QT_INCDIR%%/QtGui/qmovie.h +%%QT_INCDIR%%/QtGui/qoffscreensurface.h +%%QT_INCDIR%%/QtGui/qoffscreensurface_platform.h +%%QT_INCDIR%%/QtGui/qopengl.h +%%QT_INCDIR%%/QtGui/qopenglcontext.h +%%QT_INCDIR%%/QtGui/qopenglcontext_platform.h +%%QT_INCDIR%%/QtGui/qopengles2ext.h +%%QT_INCDIR%%/QtGui/qopenglext.h +%%QT_INCDIR%%/QtGui/qopenglextrafunctions.h +%%QT_INCDIR%%/QtGui/qopenglfunctions.h +%%QT_INCDIR%%/QtGui/qpagedpaintdevice.h +%%QT_INCDIR%%/QtGui/qpagelayout.h +%%QT_INCDIR%%/QtGui/qpageranges.h +%%QT_INCDIR%%/QtGui/qpagesize.h +%%QT_INCDIR%%/QtGui/qpaintdevice.h +%%QT_INCDIR%%/QtGui/qpaintdevicewindow.h +%%QT_INCDIR%%/QtGui/qpaintengine.h +%%QT_INCDIR%%/QtGui/qpainter.h +%%QT_INCDIR%%/QtGui/qpainterpath.h +%%QT_INCDIR%%/QtGui/qpalette.h +%%QT_INCDIR%%/QtGui/qpdfwriter.h +%%QT_INCDIR%%/QtGui/qpen.h +%%QT_INCDIR%%/QtGui/qpicture.h +%%QT_INCDIR%%/QtGui/qpixelformat.h +%%QT_INCDIR%%/QtGui/qpixmap.h +%%QT_INCDIR%%/QtGui/qpixmapcache.h +%%QT_INCDIR%%/QtGui/qpointingdevice.h +%%QT_INCDIR%%/QtGui/qpolygon.h +%%QT_INCDIR%%/QtGui/qquaternion.h +%%QT_INCDIR%%/QtGui/qrasterwindow.h +%%QT_INCDIR%%/QtGui/qrawfont.h +%%QT_INCDIR%%/QtGui/qregion.h +%%QT_INCDIR%%/QtGui/qrgb.h +%%QT_INCDIR%%/QtGui/qrgba64.h +%%QT_INCDIR%%/QtGui/qrgbafloat.h +%%QT_INCDIR%%/QtGui/qscreen.h +%%QT_INCDIR%%/QtGui/qsessionmanager.h +%%QT_INCDIR%%/QtGui/qshortcut.h +%%QT_INCDIR%%/QtGui/qstandarditemmodel.h +%%QT_INCDIR%%/QtGui/qstatictext.h +%%QT_INCDIR%%/QtGui/qstylehints.h +%%QT_INCDIR%%/QtGui/qsurface.h +%%QT_INCDIR%%/QtGui/qsurfaceformat.h +%%QT_INCDIR%%/QtGui/qsyntaxhighlighter.h +%%QT_INCDIR%%/QtGui/qtestsupport_gui.h +%%QT_INCDIR%%/QtGui/qtextcursor.h +%%QT_INCDIR%%/QtGui/qtextdocument.h +%%QT_INCDIR%%/QtGui/qtextdocumentfragment.h +%%QT_INCDIR%%/QtGui/qtextdocumentwriter.h +%%QT_INCDIR%%/QtGui/qtextformat.h +%%QT_INCDIR%%/QtGui/qtextlayout.h +%%QT_INCDIR%%/QtGui/qtextlist.h +%%QT_INCDIR%%/QtGui/qtextobject.h +%%QT_INCDIR%%/QtGui/qtextoption.h +%%QT_INCDIR%%/QtGui/qtexttable.h +%%QT_INCDIR%%/QtGui/qtgui-config.h +%%QT_INCDIR%%/QtGui/qtguiexports.h +%%QT_INCDIR%%/QtGui/qtguiglobal.h +%%QT_INCDIR%%/QtGui/qtguiversion.h +%%QT_INCDIR%%/QtGui/qtransform.h +%%QT_INCDIR%%/QtGui/qundogroup.h +%%QT_INCDIR%%/QtGui/qundostack.h +%%QT_INCDIR%%/QtGui/qvalidator.h +%%QT_INCDIR%%/QtGui/qvector2d.h +%%QT_INCDIR%%/QtGui/qvector3d.h +%%QT_INCDIR%%/QtGui/qvector4d.h +%%QT_INCDIR%%/QtGui/qvectornd.h +%%QT_INCDIR%%/QtGui/qvulkanfunctions.h +%%QT_INCDIR%%/QtGui/qvulkaninstance.h +%%QT_INCDIR%%/QtGui/qvulkanwindow.h +%%QT_INCDIR%%/QtGui/qwindow.h +%%QT_INCDIR%%/QtGui/qwindowdefs.h +%%QT_INCDIR%%/QtGui/qwindowdefs_win.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/devicehandlerlist_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboard_defaultmap_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardhandler_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardmanager_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousehandler_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousemanager_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtablethandler_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtabletmanager_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchfilter_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchhandler_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchmanager_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevutil_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputhandler_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputkeyboard_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputpointer_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputtouch_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qoutputmapping_p.h +%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qtslib_p.h +%%QT_INCDIR%%/QtInputSupport/QIntegrityHIDManager +%%QT_INCDIR%%/QtInputSupport/QtInputSupport +%%QT_INCDIR%%/QtInputSupport/QtInputSupportDepends +%%QT_INCDIR%%/QtInputSupport/QtInputSupportVersion +%%QT_INCDIR%%/QtInputSupport/qintegrityhidmanager.h +%%QT_INCDIR%%/QtInputSupport/qtinputsupportversion.h +%%QT_INCDIR%%/QtKmsSupport/%%FULLVER%%/QtKmsSupport/private/qkmsdevice_p.h +%%QT_INCDIR%%/QtKmsSupport/QtKmsSupport +%%QT_INCDIR%%/QtKmsSupport/QtKmsSupportDepends +%%QT_INCDIR%%/QtKmsSupport/QtKmsSupportVersion +%%QT_INCDIR%%/QtKmsSupport/qtkmssupportversion.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/bitstreams_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/hpack_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/hpacktable_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/http2frames_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/http2protocol_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/http2streams_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/huffman_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractnetworkcache_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractprotocolhandler_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractsocket_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qabstractsocketengine_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qauthenticator_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qdecompresshelper_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qdnslookup_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qdtls_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhostaddress_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhostinfo_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhsts_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhstsstore_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttp2protocolhandler_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpheaderparser_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpmultipart_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkconnection_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkconnectionchannel_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkheader_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkreply_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpnetworkrequest_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpprotocolhandler_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpsocketengine_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qhttpthreaddelegate_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qlocalserver_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qlocalsocket_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnativesocketengine_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnet_unix_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetconmonitor_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessauthenticationmanager_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessbackend_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccesscache_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccesscachebackend_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessdebugpipebackend_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessfilebackend_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkaccessmanager_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkcookie_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkcookiejar_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkdatagram_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkdiskcache_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkfile_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkinformation_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkinterface_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkinterface_uikit_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkinterface_unix_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreply_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplydataimpl_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplyfileimpl_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplyhttpimpl_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplyimpl_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkreplywasmimpl_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qnetworkrequest_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qocsp_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qocspresponse_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsctpserver_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsctpsocket_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsocks5socketengine_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qssl_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslcertificate_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslcertificateextension_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslcipher_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslconfiguration_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qssldiffiehellmanparameters_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslkey_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslpresharedkeyauthenticator_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qsslsocket_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtcpserver_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtcpsocket_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtldurl_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtlsbackend_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtnetwork-config_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtnetworkexports_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qtnetworkglobal_p.h +%%QT_INCDIR%%/QtNetwork/%%FULLVER%%/QtNetwork/private/qurltlds_p.h +%%QT_INCDIR%%/QtNetwork/QAbstractNetworkCache +%%QT_INCDIR%%/QtNetwork/QAbstractSocket +%%QT_INCDIR%%/QtNetwork/QAuthenticator +%%QT_INCDIR%%/QtNetwork/QDnsDomainNameRecord +%%QT_INCDIR%%/QtNetwork/QDnsHostAddressRecord +%%QT_INCDIR%%/QtNetwork/QDnsLookup +%%QT_INCDIR%%/QtNetwork/QDnsMailExchangeRecord +%%QT_INCDIR%%/QtNetwork/QDnsServiceRecord +%%QT_INCDIR%%/QtNetwork/QDnsTextRecord +%%QT_INCDIR%%/QtNetwork/QDtls +%%QT_INCDIR%%/QtNetwork/QDtlsClientVerifier +%%QT_INCDIR%%/QtNetwork/QHostAddress +%%QT_INCDIR%%/QtNetwork/QHostInfo +%%QT_INCDIR%%/QtNetwork/QHstsPolicy +%%QT_INCDIR%%/QtNetwork/QHttp2Configuration +%%QT_INCDIR%%/QtNetwork/QHttpMultiPart +%%QT_INCDIR%%/QtNetwork/QHttpPart +%%QT_INCDIR%%/QtNetwork/QIPv6Address +%%QT_INCDIR%%/QtNetwork/QLocalServer +%%QT_INCDIR%%/QtNetwork/QLocalSocket +%%QT_INCDIR%%/QtNetwork/QNetworkAccessManager +%%QT_INCDIR%%/QtNetwork/QNetworkAddressEntry +%%QT_INCDIR%%/QtNetwork/QNetworkCacheMetaData +%%QT_INCDIR%%/QtNetwork/QNetworkCookie +%%QT_INCDIR%%/QtNetwork/QNetworkCookieJar +%%QT_INCDIR%%/QtNetwork/QNetworkDatagram +%%QT_INCDIR%%/QtNetwork/QNetworkDiskCache +%%QT_INCDIR%%/QtNetwork/QNetworkInformation +%%QT_INCDIR%%/QtNetwork/QNetworkInterface +%%QT_INCDIR%%/QtNetwork/QNetworkProxy +%%QT_INCDIR%%/QtNetwork/QNetworkProxyFactory +%%QT_INCDIR%%/QtNetwork/QNetworkProxyQuery +%%QT_INCDIR%%/QtNetwork/QNetworkReply +%%QT_INCDIR%%/QtNetwork/QNetworkRequest +%%QT_INCDIR%%/QtNetwork/QOcspResponse +%%QT_INCDIR%%/QtNetwork/QPasswordDigestor +%%QT_INCDIR%%/QtNetwork/QSctpServer +%%QT_INCDIR%%/QtNetwork/QSctpSocket +%%QT_INCDIR%%/QtNetwork/QSsl +%%QT_INCDIR%%/QtNetwork/QSslCertificate +%%QT_INCDIR%%/QtNetwork/QSslCertificateExtension +%%QT_INCDIR%%/QtNetwork/QSslCipher +%%QT_INCDIR%%/QtNetwork/QSslConfiguration +%%QT_INCDIR%%/QtNetwork/QSslDiffieHellmanParameters +%%QT_INCDIR%%/QtNetwork/QSslEllipticCurve +%%QT_INCDIR%%/QtNetwork/QSslError +%%QT_INCDIR%%/QtNetwork/QSslKey +%%QT_INCDIR%%/QtNetwork/QSslPreSharedKeyAuthenticator +%%QT_INCDIR%%/QtNetwork/QSslSocket +%%QT_INCDIR%%/QtNetwork/QTcpServer +%%QT_INCDIR%%/QtNetwork/QTcpSocket +%%QT_INCDIR%%/QtNetwork/QUdpSocket +%%QT_INCDIR%%/QtNetwork/Q_IPV6ADDR +%%QT_INCDIR%%/QtNetwork/QtNetwork +%%QT_INCDIR%%/QtNetwork/QtNetworkDepends +%%QT_INCDIR%%/QtNetwork/QtNetworkVersion +%%QT_INCDIR%%/QtNetwork/qabstractnetworkcache.h +%%QT_INCDIR%%/QtNetwork/qabstractsocket.h +%%QT_INCDIR%%/QtNetwork/qauthenticator.h +%%QT_INCDIR%%/QtNetwork/qdnslookup.h +%%QT_INCDIR%%/QtNetwork/qdtls.h +%%QT_INCDIR%%/QtNetwork/qhostaddress.h +%%QT_INCDIR%%/QtNetwork/qhostinfo.h +%%QT_INCDIR%%/QtNetwork/qhstspolicy.h +%%QT_INCDIR%%/QtNetwork/qhttp2configuration.h +%%QT_INCDIR%%/QtNetwork/qhttpmultipart.h +%%QT_INCDIR%%/QtNetwork/qlocalserver.h +%%QT_INCDIR%%/QtNetwork/qlocalsocket.h +%%QT_INCDIR%%/QtNetwork/qnetworkaccessmanager.h +%%QT_INCDIR%%/QtNetwork/qnetworkcookie.h +%%QT_INCDIR%%/QtNetwork/qnetworkcookiejar.h +%%QT_INCDIR%%/QtNetwork/qnetworkdatagram.h +%%QT_INCDIR%%/QtNetwork/qnetworkdiskcache.h +%%QT_INCDIR%%/QtNetwork/qnetworkinformation.h +%%QT_INCDIR%%/QtNetwork/qnetworkinterface.h +%%QT_INCDIR%%/QtNetwork/qnetworkproxy.h +%%QT_INCDIR%%/QtNetwork/qnetworkreply.h +%%QT_INCDIR%%/QtNetwork/qnetworkrequest.h +%%QT_INCDIR%%/QtNetwork/qocspresponse.h +%%QT_INCDIR%%/QtNetwork/qpassworddigestor.h +%%QT_INCDIR%%/QtNetwork/qsctpserver.h +%%QT_INCDIR%%/QtNetwork/qsctpsocket.h +%%QT_INCDIR%%/QtNetwork/qssl.h +%%QT_INCDIR%%/QtNetwork/qsslcertificate.h +%%QT_INCDIR%%/QtNetwork/qsslcertificateextension.h +%%QT_INCDIR%%/QtNetwork/qsslcipher.h +%%QT_INCDIR%%/QtNetwork/qsslconfiguration.h +%%QT_INCDIR%%/QtNetwork/qssldiffiehellmanparameters.h +%%QT_INCDIR%%/QtNetwork/qsslellipticcurve.h +%%QT_INCDIR%%/QtNetwork/qsslerror.h +%%QT_INCDIR%%/QtNetwork/qsslkey.h +%%QT_INCDIR%%/QtNetwork/qsslpresharedkeyauthenticator.h +%%QT_INCDIR%%/QtNetwork/qsslsocket.h +%%QT_INCDIR%%/QtNetwork/qtcpserver.h +%%QT_INCDIR%%/QtNetwork/qtcpsocket.h +%%QT_INCDIR%%/QtNetwork/qtnetwork-config.h +%%QT_INCDIR%%/QtNetwork/qtnetworkexports.h +%%QT_INCDIR%%/QtNetwork/qtnetworkglobal.h +%%QT_INCDIR%%/QtNetwork/qtnetworkversion.h +%%QT_INCDIR%%/QtNetwork/qudpsocket.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopengl2pexvertexarray_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglcompositor_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglcompositorbackingstore_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglcustomshaderstage_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglengineshadermanager_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglengineshadersource_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglframebufferobject_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglgradientcache_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglpaintdevice_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglpaintengine_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglqueryhelper_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglshadercache_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopengltexture_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopengltexturecache_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopengltextureglyphcache_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopengltexturehelper_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopengltextureuploader_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglversionfunctions_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qopenglvertexarrayobject_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/private/qvkconvenience_p.h +%%QT_INCDIR%%/QtOpenGL/%%FULLVER%%/QtOpenGL/qpa/qplatformbackingstoreopenglsupport.h +%%QT_INCDIR%%/QtOpenGL/QOpenGLBuffer +%%QT_INCDIR%%/QtOpenGL/QOpenGLDebugLogger +%%QT_INCDIR%%/QtOpenGL/QOpenGLDebugMessage +%%QT_INCDIR%%/QtOpenGL/QOpenGLFramebufferObject +%%QT_INCDIR%%/QtOpenGL/QOpenGLFramebufferObjectFormat +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_1_0 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_1_1 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_1_2 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_1_3 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_1_4 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_1_5 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_2_0 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_2_1 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_3_0 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_3_1 +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_3_2_Compatibility +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_3_2_Core +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_3_3_Compatibility +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_3_3_Core +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_0_Compatibility +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_0_Core +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_1_Compatibility +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_1_Core +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_2_Compatibility +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_2_Core +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_3_Compatibility +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_3_Core +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_4_Compatibility +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_4_Core +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_5_Compatibility +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_4_5_Core +%%QT_INCDIR%%/QtOpenGL/QOpenGLFunctions_ES2 +%%QT_INCDIR%%/QtOpenGL/QOpenGLPaintDevice +%%QT_INCDIR%%/QtOpenGL/QOpenGLPixelTransferOptions +%%QT_INCDIR%%/QtOpenGL/QOpenGLShader +%%QT_INCDIR%%/QtOpenGL/QOpenGLShaderProgram +%%QT_INCDIR%%/QtOpenGL/QOpenGLTexture +%%QT_INCDIR%%/QtOpenGL/QOpenGLTextureBlitter +%%QT_INCDIR%%/QtOpenGL/QOpenGLTimeMonitor +%%QT_INCDIR%%/QtOpenGL/QOpenGLTimerQuery +%%QT_INCDIR%%/QtOpenGL/QOpenGLVersionFunctions +%%QT_INCDIR%%/QtOpenGL/QOpenGLVersionFunctionsFactory +%%QT_INCDIR%%/QtOpenGL/QOpenGLVersionProfile +%%QT_INCDIR%%/QtOpenGL/QOpenGLVertexArrayObject +%%QT_INCDIR%%/QtOpenGL/QOpenGLWindow +%%QT_INCDIR%%/QtOpenGL/QtOpenGL +%%QT_INCDIR%%/QtOpenGL/QtOpenGLDepends +%%QT_INCDIR%%/QtOpenGL/QtOpenGLVersion +%%QT_INCDIR%%/QtOpenGL/qopenglbuffer.h +%%QT_INCDIR%%/QtOpenGL/qopengldebug.h +%%QT_INCDIR%%/QtOpenGL/qopenglframebufferobject.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_1_0.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_1_1.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_1_2.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_1_3.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_1_4.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_1_5.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_2_0.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_2_1.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_3_0.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_3_1.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_3_2_compatibility.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_3_2_core.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_3_3_compatibility.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_3_3_core.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_0_compatibility.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_0_core.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_1_compatibility.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_1_core.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_2_compatibility.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_2_core.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_3_compatibility.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_3_core.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_4_compatibility.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_4_core.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_5_compatibility.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_4_5_core.h +%%QT_INCDIR%%/QtOpenGL/qopenglfunctions_es2.h +%%QT_INCDIR%%/QtOpenGL/qopenglpaintdevice.h +%%QT_INCDIR%%/QtOpenGL/qopenglpixeltransferoptions.h +%%QT_INCDIR%%/QtOpenGL/qopenglshaderprogram.h +%%QT_INCDIR%%/QtOpenGL/qopengltexture.h +%%QT_INCDIR%%/QtOpenGL/qopengltextureblitter.h +%%QT_INCDIR%%/QtOpenGL/qopengltimerquery.h +%%QT_INCDIR%%/QtOpenGL/qopenglversionfunctions.h +%%QT_INCDIR%%/QtOpenGL/qopenglversionfunctionsfactory.h +%%QT_INCDIR%%/QtOpenGL/qopenglversionprofile.h +%%QT_INCDIR%%/QtOpenGL/qopenglvertexarrayobject.h +%%QT_INCDIR%%/QtOpenGL/qopenglwindow.h +%%QT_INCDIR%%/QtOpenGL/qtopenglexports.h +%%QT_INCDIR%%/QtOpenGL/qtopenglglobal.h +%%QT_INCDIR%%/QtOpenGL/qtopenglversion.h +%%QT_INCDIR%%/QtOpenGLWidgets/QOpenGLWidget +%%QT_INCDIR%%/QtOpenGLWidgets/QtOpenGLWidgets +%%QT_INCDIR%%/QtOpenGLWidgets/QtOpenGLWidgetsDepends +%%QT_INCDIR%%/QtOpenGLWidgets/QtOpenGLWidgetsVersion +%%QT_INCDIR%%/QtOpenGLWidgets/qopenglwidget.h +%%QT_INCDIR%%/QtOpenGLWidgets/qtopenglwidgetsexports.h +%%QT_INCDIR%%/QtOpenGLWidgets/qtopenglwidgetsglobal.h +%%QT_INCDIR%%/QtOpenGLWidgets/qtopenglwidgetsversion.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qabstractprintdialog_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qcocoaprintdevice_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qcocoaprintersupport_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qcups_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qcupsjobwidget_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpagesetupdialog_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpagesetupdialog_unix_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpaintengine_alpha_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpaintengine_mac_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qpaintengine_preview_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprint_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprintdevice_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprintengine_mac_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprintengine_pdf_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprintengine_win_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprinter_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qprinterinfo_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qtprintsupport-config_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qtprintsupportglobal_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qwindowsprintdevice_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/private/qwindowsprintersupport_p.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/qpa/qplatformprintdevice.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/qpa/qplatformprintersupport.h +%%QT_INCDIR%%/QtPrintSupport/%%FULLVER%%/QtPrintSupport/qpa/qplatformprintplugin.h +%%QT_INCDIR%%/QtPrintSupport/QAbstractPrintDialog +%%QT_INCDIR%%/QtPrintSupport/QPageSetupDialog +%%QT_INCDIR%%/QtPrintSupport/QPrintDialog +%%QT_INCDIR%%/QtPrintSupport/QPrintEngine +%%QT_INCDIR%%/QtPrintSupport/QPrintPreviewDialog +%%QT_INCDIR%%/QtPrintSupport/QPrintPreviewWidget +%%QT_INCDIR%%/QtPrintSupport/QPrinter +%%QT_INCDIR%%/QtPrintSupport/QPrinterInfo +%%QT_INCDIR%%/QtPrintSupport/QtPrintSupport +%%QT_INCDIR%%/QtPrintSupport/QtPrintSupportDepends +%%QT_INCDIR%%/QtPrintSupport/QtPrintSupportVersion +%%QT_INCDIR%%/QtPrintSupport/qabstractprintdialog.h +%%QT_INCDIR%%/QtPrintSupport/qpagesetupdialog.h +%%QT_INCDIR%%/QtPrintSupport/qprintdialog.h +%%QT_INCDIR%%/QtPrintSupport/qprintengine.h +%%QT_INCDIR%%/QtPrintSupport/qprinter.h +%%QT_INCDIR%%/QtPrintSupport/qprinterinfo.h +%%QT_INCDIR%%/QtPrintSupport/qprintpreviewdialog.h +%%QT_INCDIR%%/QtPrintSupport/qprintpreviewwidget.h +%%QT_INCDIR%%/QtPrintSupport/qtprintsupport-config.h +%%QT_INCDIR%%/QtPrintSupport/qtprintsupportexports.h +%%QT_INCDIR%%/QtPrintSupport/qtprintsupportglobal.h +%%QT_INCDIR%%/QtPrintSupport/qtprintsupportversion.h +%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlcachedresult_p.h +%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqldriver_p.h +%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlnulldriver_p.h +%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlquerymodel_p.h +%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqlresult_p.h +%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qsqltablemodel_p.h +%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qtsql-config_p.h +%%QT_INCDIR%%/QtSql/%%FULLVER%%/QtSql/private/qtsqlglobal_p.h +%%QT_INCDIR%%/QtSql/QSql +%%QT_INCDIR%%/QtSql/QSqlDatabase +%%QT_INCDIR%%/QtSql/QSqlDriver +%%QT_INCDIR%%/QtSql/QSqlDriverCreator +%%QT_INCDIR%%/QtSql/QSqlDriverCreatorBase +%%QT_INCDIR%%/QtSql/QSqlDriverPlugin +%%QT_INCDIR%%/QtSql/QSqlError +%%QT_INCDIR%%/QtSql/QSqlField +%%QT_INCDIR%%/QtSql/QSqlIndex +%%QT_INCDIR%%/QtSql/QSqlQuery +%%QT_INCDIR%%/QtSql/QSqlQueryModel +%%QT_INCDIR%%/QtSql/QSqlRecord +%%QT_INCDIR%%/QtSql/QSqlRelation +%%QT_INCDIR%%/QtSql/QSqlRelationalDelegate +%%QT_INCDIR%%/QtSql/QSqlRelationalTableModel +%%QT_INCDIR%%/QtSql/QSqlResult +%%QT_INCDIR%%/QtSql/QSqlTableModel +%%QT_INCDIR%%/QtSql/QtSql +%%QT_INCDIR%%/QtSql/QtSqlDepends +%%QT_INCDIR%%/QtSql/QtSqlVersion +%%QT_INCDIR%%/QtSql/qsql.h +%%QT_INCDIR%%/QtSql/qsqldatabase.h +%%QT_INCDIR%%/QtSql/qsqldriver.h +%%QT_INCDIR%%/QtSql/qsqldriverplugin.h +%%QT_INCDIR%%/QtSql/qsqlerror.h +%%QT_INCDIR%%/QtSql/qsqlfield.h +%%QT_INCDIR%%/QtSql/qsqlindex.h +%%QT_INCDIR%%/QtSql/qsqlquery.h +%%QT_INCDIR%%/QtSql/qsqlquerymodel.h +%%QT_INCDIR%%/QtSql/qsqlrecord.h +%%QT_INCDIR%%/QtSql/qsqlrelationaldelegate.h +%%QT_INCDIR%%/QtSql/qsqlrelationaltablemodel.h +%%QT_INCDIR%%/QtSql/qsqlresult.h +%%QT_INCDIR%%/QtSql/qsqltablemodel.h +%%QT_INCDIR%%/QtSql/qtsql-config.h +%%QT_INCDIR%%/QtSql/qtsqlexports.h +%%QT_INCDIR%%/QtSql/qtsqlglobal.h +%%QT_INCDIR%%/QtSql/qtsqlversion.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/callgrind_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/cycle_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/linux_perf_event_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qabstracttestlogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qappletestlogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmark_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkevent_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkmeasurement_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkmetric_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkperfevents_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarktimemeasurers_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qbenchmarkvalgrind_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qcsvbenchmarklogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qemulationdetector_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qjunittestlogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qplaintestlogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qpropertytesthelper_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qsignaldumper_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtaptestlogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qteamcitylogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestblacklist_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestcoreelement_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestelement_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestelementattribute_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtesthelpers_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestjunitstreamer_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestlog_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestresult_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtesttable_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qtestutil_macos_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qttestlib-config_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qxctestlogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/qxmltestlogger_p.h +%%QT_INCDIR%%/QtTest/%%FULLVER%%/QtTest/private/valgrind_p.h +%%QT_INCDIR%%/QtTest/QAbstractItemModelTester +%%QT_INCDIR%%/QtTest/QSignalSpy +%%QT_INCDIR%%/QtTest/QSpontaneKeyEvent +%%QT_INCDIR%%/QtTest/QTest +%%QT_INCDIR%%/QtTest/QTestAccessibility +%%QT_INCDIR%%/QtTest/QTestData +%%QT_INCDIR%%/QtTest/QTestDelayEvent +%%QT_INCDIR%%/QtTest/QTestEvent +%%QT_INCDIR%%/QtTest/QTestEventList +%%QT_INCDIR%%/QtTest/QTestEventLoop +%%QT_INCDIR%%/QtTest/QTestKeyClicksEvent +%%QT_INCDIR%%/QtTest/QTestKeyEvent +%%QT_INCDIR%%/QtTest/QTestMouseEvent +%%QT_INCDIR%%/QtTest/QtCoverageScanner +%%QT_INCDIR%%/QtTest/QtTest +%%QT_INCDIR%%/QtTest/QtTestDepends +%%QT_INCDIR%%/QtTest/QtTestGui +%%QT_INCDIR%%/QtTest/QtTestNetwork +%%QT_INCDIR%%/QtTest/QtTestVersion +%%QT_INCDIR%%/QtTest/QtTestWidgets +%%QT_INCDIR%%/QtTest/qabstractitemmodeltester.h +%%QT_INCDIR%%/QtTest/qbenchmark.h +%%QT_INCDIR%%/QtTest/qbenchmarkmetric.h +%%QT_INCDIR%%/QtTest/qsignalspy.h +%%QT_INCDIR%%/QtTest/qtest.h +%%QT_INCDIR%%/QtTest/qtest_global.h +%%QT_INCDIR%%/QtTest/qtest_gui.h +%%QT_INCDIR%%/QtTest/qtest_network.h +%%QT_INCDIR%%/QtTest/qtest_widgets.h +%%QT_INCDIR%%/QtTest/qtestaccessible.h +%%QT_INCDIR%%/QtTest/qtestassert.h +%%QT_INCDIR%%/QtTest/qtestcase.h +%%QT_INCDIR%%/QtTest/qtestdata.h +%%QT_INCDIR%%/QtTest/qtestevent.h +%%QT_INCDIR%%/QtTest/qtesteventloop.h +%%QT_INCDIR%%/QtTest/qtestkeyboard.h +%%QT_INCDIR%%/QtTest/qtestmouse.h +%%QT_INCDIR%%/QtTest/qtestspontaneevent.h +%%QT_INCDIR%%/QtTest/qtestsystem.h +%%QT_INCDIR%%/QtTest/qtesttouch.h +%%QT_INCDIR%%/QtTest/qttestexports.h +%%QT_INCDIR%%/QtTest/qttestglobal.h +%%QT_INCDIR%%/QtTest/qttestlib-config.h +%%QT_INCDIR%%/QtTest/qttestversion.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/complexwidgets_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/itemviews_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractbutton_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractitemdelegate_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractitemview_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractscrollarea_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractslider_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qabstractspinbox_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qaccessiblemenu_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qaccessiblewidgetfactory_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qaccessiblewidgets_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qaction_widgets_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qapplication_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qbsptree_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qbuttongroup_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcolumnview_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcolumnviewgrip_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcombobox_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcommonstyle_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcommonstylepixmaps_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qcompleter_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdatetimeedit_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdialog_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdockarealayout_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qdockwidget_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qeffects_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfiledialog_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfileiconprovider_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qflickgesture_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfontdialog_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qframe_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfscompleter_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfusionstyle_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qfusionstyle_p_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgesture_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgesturemanager_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraph_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsanchorlayout_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicseffect_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsgridlayoutengine_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsitem_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicslayout_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicslayoutitem_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicslayoutstyleinfo_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsproxywidget_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsscene_bsp_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsscene_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsscenebsptreeindex_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicssceneindex_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsscenelinearindex_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicstransform_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicsview_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qgraphicswidget_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qheaderview_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qitemeditorfactory_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qkeysequenceedit_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlabel_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlayout_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlayoutengine_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlineedit_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlistview_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qlistwidget_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmacgesturerecognizer_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmainwindowlayout_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmdiarea_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmdisubwindow_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmenu_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qmenubar_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qpixmapfilter_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qpixmapstyle_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qpixmapstyle_p_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qplaintextedit_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qproxystyle_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qpushbutton_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qscrollarea_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qscrollbar_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qscroller_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qscrollerproperties_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qsidebar_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qsimplex_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qsplitter_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstandardgestures_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstyle_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstyleanimation_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstylehelper_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qstylesheetstyle_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qsystemtrayicon_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qt_widgets_pch.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtabbar_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtableview_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtablewidget_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtextedit_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbar_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbararealayout_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbarextension_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbarlayout_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtoolbarseparator_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtreeview_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtreewidget_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtreewidgetitemiterator_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtwidgets-config_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qtwidgetsglobal_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidget_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetaction_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetanimator_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetitemdata_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetlinecontrol_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetrepaintmanager_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetresizehandler_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgettextcontrol_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgettextcontrol_p_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwidgetwindow_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowcontainer_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsstyle_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwindowsstyle_p_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/qwizard_win_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/rangecontrols_p.h +%%QT_INCDIR%%/QtWidgets/%%FULLVER%%/QtWidgets/private/simplewidgets_p.h +%%QT_INCDIR%%/QtWidgets/QAbstractButton +%%QT_INCDIR%%/QtWidgets/QAbstractGraphicsShapeItem +%%QT_INCDIR%%/QtWidgets/QAbstractItemDelegate +%%QT_INCDIR%%/QtWidgets/QAbstractItemView +%%QT_INCDIR%%/QtWidgets/QAbstractScrollArea +%%QT_INCDIR%%/QtWidgets/QAbstractSlider +%%QT_INCDIR%%/QtWidgets/QAbstractSpinBox +%%QT_INCDIR%%/QtWidgets/QAccessibleWidget +%%QT_INCDIR%%/QtWidgets/QApplication +%%QT_INCDIR%%/QtWidgets/QBoxLayout +%%QT_INCDIR%%/QtWidgets/QButtonGroup +%%QT_INCDIR%%/QtWidgets/QCalendarWidget +%%QT_INCDIR%%/QtWidgets/QCheckBox +%%QT_INCDIR%%/QtWidgets/QColorDialog +%%QT_INCDIR%%/QtWidgets/QColormap +%%QT_INCDIR%%/QtWidgets/QColumnView +%%QT_INCDIR%%/QtWidgets/QComboBox +%%QT_INCDIR%%/QtWidgets/QCommandLinkButton +%%QT_INCDIR%%/QtWidgets/QCommonStyle +%%QT_INCDIR%%/QtWidgets/QCompleter +%%QT_INCDIR%%/QtWidgets/QDataWidgetMapper +%%QT_INCDIR%%/QtWidgets/QDateEdit +%%QT_INCDIR%%/QtWidgets/QDateTimeEdit +%%QT_INCDIR%%/QtWidgets/QDial +%%QT_INCDIR%%/QtWidgets/QDialog +%%QT_INCDIR%%/QtWidgets/QDialogButtonBox +%%QT_INCDIR%%/QtWidgets/QDockWidget +%%QT_INCDIR%%/QtWidgets/QDoubleSpinBox +%%QT_INCDIR%%/QtWidgets/QErrorMessage +%%QT_INCDIR%%/QtWidgets/QFileDialog +%%QT_INCDIR%%/QtWidgets/QFileIconProvider +%%QT_INCDIR%%/QtWidgets/QFocusFrame +%%QT_INCDIR%%/QtWidgets/QFontComboBox +%%QT_INCDIR%%/QtWidgets/QFontDialog +%%QT_INCDIR%%/QtWidgets/QFormLayout +%%QT_INCDIR%%/QtWidgets/QFrame +%%QT_INCDIR%%/QtWidgets/QGesture +%%QT_INCDIR%%/QtWidgets/QGestureEvent +%%QT_INCDIR%%/QtWidgets/QGestureRecognizer +%%QT_INCDIR%%/QtWidgets/QGraphicsAnchor +%%QT_INCDIR%%/QtWidgets/QGraphicsAnchorLayout +%%QT_INCDIR%%/QtWidgets/QGraphicsBlurEffect +%%QT_INCDIR%%/QtWidgets/QGraphicsColorizeEffect +%%QT_INCDIR%%/QtWidgets/QGraphicsDropShadowEffect +%%QT_INCDIR%%/QtWidgets/QGraphicsEffect +%%QT_INCDIR%%/QtWidgets/QGraphicsEllipseItem +%%QT_INCDIR%%/QtWidgets/QGraphicsGridLayout +%%QT_INCDIR%%/QtWidgets/QGraphicsItem +%%QT_INCDIR%%/QtWidgets/QGraphicsItemAnimation +%%QT_INCDIR%%/QtWidgets/QGraphicsItemGroup +%%QT_INCDIR%%/QtWidgets/QGraphicsLayout +%%QT_INCDIR%%/QtWidgets/QGraphicsLayoutItem +%%QT_INCDIR%%/QtWidgets/QGraphicsLineItem +%%QT_INCDIR%%/QtWidgets/QGraphicsLinearLayout +%%QT_INCDIR%%/QtWidgets/QGraphicsObject +%%QT_INCDIR%%/QtWidgets/QGraphicsOpacityEffect +%%QT_INCDIR%%/QtWidgets/QGraphicsPathItem +%%QT_INCDIR%%/QtWidgets/QGraphicsPixmapItem +%%QT_INCDIR%%/QtWidgets/QGraphicsPolygonItem +%%QT_INCDIR%%/QtWidgets/QGraphicsProxyWidget +%%QT_INCDIR%%/QtWidgets/QGraphicsRectItem +%%QT_INCDIR%%/QtWidgets/QGraphicsRotation +%%QT_INCDIR%%/QtWidgets/QGraphicsScale +%%QT_INCDIR%%/QtWidgets/QGraphicsScene +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneContextMenuEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneDragDropEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneHelpEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneHoverEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneMouseEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneMoveEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneResizeEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSceneWheelEvent +%%QT_INCDIR%%/QtWidgets/QGraphicsSimpleTextItem +%%QT_INCDIR%%/QtWidgets/QGraphicsTextItem +%%QT_INCDIR%%/QtWidgets/QGraphicsTransform +%%QT_INCDIR%%/QtWidgets/QGraphicsView +%%QT_INCDIR%%/QtWidgets/QGraphicsWidget +%%QT_INCDIR%%/QtWidgets/QGridLayout +%%QT_INCDIR%%/QtWidgets/QGroupBox +%%QT_INCDIR%%/QtWidgets/QHBoxLayout +%%QT_INCDIR%%/QtWidgets/QHeaderView +%%QT_INCDIR%%/QtWidgets/QInputDialog +%%QT_INCDIR%%/QtWidgets/QItemDelegate +%%QT_INCDIR%%/QtWidgets/QItemEditorCreator +%%QT_INCDIR%%/QtWidgets/QItemEditorCreatorBase +%%QT_INCDIR%%/QtWidgets/QItemEditorFactory +%%QT_INCDIR%%/QtWidgets/QKeySequenceEdit +%%QT_INCDIR%%/QtWidgets/QLCDNumber +%%QT_INCDIR%%/QtWidgets/QLabel +%%QT_INCDIR%%/QtWidgets/QLayout +%%QT_INCDIR%%/QtWidgets/QLayoutItem +%%QT_INCDIR%%/QtWidgets/QLineEdit +%%QT_INCDIR%%/QtWidgets/QListView +%%QT_INCDIR%%/QtWidgets/QListWidget +%%QT_INCDIR%%/QtWidgets/QListWidgetItem +%%QT_INCDIR%%/QtWidgets/QMainWindow +%%QT_INCDIR%%/QtWidgets/QMdiArea +%%QT_INCDIR%%/QtWidgets/QMdiSubWindow +%%QT_INCDIR%%/QtWidgets/QMenu +%%QT_INCDIR%%/QtWidgets/QMenuBar +%%QT_INCDIR%%/QtWidgets/QMessageBox +%%QT_INCDIR%%/QtWidgets/QPanGesture +%%QT_INCDIR%%/QtWidgets/QPinchGesture +%%QT_INCDIR%%/QtWidgets/QPlainTextDocumentLayout +%%QT_INCDIR%%/QtWidgets/QPlainTextEdit +%%QT_INCDIR%%/QtWidgets/QProgressBar +%%QT_INCDIR%%/QtWidgets/QProgressDialog +%%QT_INCDIR%%/QtWidgets/QProxyStyle +%%QT_INCDIR%%/QtWidgets/QPushButton +%%QT_INCDIR%%/QtWidgets/QRadioButton +%%QT_INCDIR%%/QtWidgets/QRubberBand +%%QT_INCDIR%%/QtWidgets/QScrollArea +%%QT_INCDIR%%/QtWidgets/QScrollBar +%%QT_INCDIR%%/QtWidgets/QScroller +%%QT_INCDIR%%/QtWidgets/QScrollerProperties +%%QT_INCDIR%%/QtWidgets/QSizeGrip +%%QT_INCDIR%%/QtWidgets/QSizePolicy +%%QT_INCDIR%%/QtWidgets/QSlider +%%QT_INCDIR%%/QtWidgets/QSpacerItem +%%QT_INCDIR%%/QtWidgets/QSpinBox +%%QT_INCDIR%%/QtWidgets/QSplashScreen +%%QT_INCDIR%%/QtWidgets/QSplitter +%%QT_INCDIR%%/QtWidgets/QSplitterHandle +%%QT_INCDIR%%/QtWidgets/QStackedLayout +%%QT_INCDIR%%/QtWidgets/QStackedWidget +%%QT_INCDIR%%/QtWidgets/QStandardItemEditorCreator +%%QT_INCDIR%%/QtWidgets/QStatusBar +%%QT_INCDIR%%/QtWidgets/QStyle +%%QT_INCDIR%%/QtWidgets/QStyleFactory +%%QT_INCDIR%%/QtWidgets/QStyleHintReturn +%%QT_INCDIR%%/QtWidgets/QStyleHintReturnMask +%%QT_INCDIR%%/QtWidgets/QStyleHintReturnVariant +%%QT_INCDIR%%/QtWidgets/QStyleOption +%%QT_INCDIR%%/QtWidgets/QStyleOptionButton +%%QT_INCDIR%%/QtWidgets/QStyleOptionComboBox +%%QT_INCDIR%%/QtWidgets/QStyleOptionComplex +%%QT_INCDIR%%/QtWidgets/QStyleOptionDockWidget +%%QT_INCDIR%%/QtWidgets/QStyleOptionFocusRect +%%QT_INCDIR%%/QtWidgets/QStyleOptionFrame +%%QT_INCDIR%%/QtWidgets/QStyleOptionGraphicsItem +%%QT_INCDIR%%/QtWidgets/QStyleOptionGroupBox +%%QT_INCDIR%%/QtWidgets/QStyleOptionHeader +%%QT_INCDIR%%/QtWidgets/QStyleOptionHeaderV2 +%%QT_INCDIR%%/QtWidgets/QStyleOptionMenuItem +%%QT_INCDIR%%/QtWidgets/QStyleOptionProgressBar +%%QT_INCDIR%%/QtWidgets/QStyleOptionRubberBand +%%QT_INCDIR%%/QtWidgets/QStyleOptionSizeGrip +%%QT_INCDIR%%/QtWidgets/QStyleOptionSlider +%%QT_INCDIR%%/QtWidgets/QStyleOptionSpinBox +%%QT_INCDIR%%/QtWidgets/QStyleOptionTab +%%QT_INCDIR%%/QtWidgets/QStyleOptionTabBarBase +%%QT_INCDIR%%/QtWidgets/QStyleOptionTabWidgetFrame +%%QT_INCDIR%%/QtWidgets/QStyleOptionTitleBar +%%QT_INCDIR%%/QtWidgets/QStyleOptionToolBar +%%QT_INCDIR%%/QtWidgets/QStyleOptionToolBox +%%QT_INCDIR%%/QtWidgets/QStyleOptionToolButton +%%QT_INCDIR%%/QtWidgets/QStyleOptionViewItem +%%QT_INCDIR%%/QtWidgets/QStylePainter +%%QT_INCDIR%%/QtWidgets/QStylePlugin +%%QT_INCDIR%%/QtWidgets/QStyledItemDelegate +%%QT_INCDIR%%/QtWidgets/QSwipeGesture +%%QT_INCDIR%%/QtWidgets/QSystemTrayIcon +%%QT_INCDIR%%/QtWidgets/QTabBar +%%QT_INCDIR%%/QtWidgets/QTabWidget +%%QT_INCDIR%%/QtWidgets/QTableView +%%QT_INCDIR%%/QtWidgets/QTableWidget +%%QT_INCDIR%%/QtWidgets/QTableWidgetItem +%%QT_INCDIR%%/QtWidgets/QTableWidgetSelectionRange +%%QT_INCDIR%%/QtWidgets/QTapAndHoldGesture +%%QT_INCDIR%%/QtWidgets/QTapGesture +%%QT_INCDIR%%/QtWidgets/QTextBrowser +%%QT_INCDIR%%/QtWidgets/QTextEdit +%%QT_INCDIR%%/QtWidgets/QTileRules +%%QT_INCDIR%%/QtWidgets/QTimeEdit +%%QT_INCDIR%%/QtWidgets/QToolBar +%%QT_INCDIR%%/QtWidgets/QToolBox +%%QT_INCDIR%%/QtWidgets/QToolButton +%%QT_INCDIR%%/QtWidgets/QToolTip +%%QT_INCDIR%%/QtWidgets/QTreeView +%%QT_INCDIR%%/QtWidgets/QTreeWidget +%%QT_INCDIR%%/QtWidgets/QTreeWidgetItem +%%QT_INCDIR%%/QtWidgets/QTreeWidgetItemIterator +%%QT_INCDIR%%/QtWidgets/QUndoView +%%QT_INCDIR%%/QtWidgets/QVBoxLayout +%%QT_INCDIR%%/QtWidgets/QWhatsThis +%%QT_INCDIR%%/QtWidgets/QWidget +%%QT_INCDIR%%/QtWidgets/QWidgetAction +%%QT_INCDIR%%/QtWidgets/QWidgetData +%%QT_INCDIR%%/QtWidgets/QWidgetItem +%%QT_INCDIR%%/QtWidgets/QWidgetItemV2 +%%QT_INCDIR%%/QtWidgets/QWizard +%%QT_INCDIR%%/QtWidgets/QWizardPage +%%QT_INCDIR%%/QtWidgets/QtWidgets +%%QT_INCDIR%%/QtWidgets/QtWidgetsDepends +%%QT_INCDIR%%/QtWidgets/QtWidgetsVersion +%%QT_INCDIR%%/QtWidgets/qabstractbutton.h +%%QT_INCDIR%%/QtWidgets/qabstractitemdelegate.h +%%QT_INCDIR%%/QtWidgets/qabstractitemview.h +%%QT_INCDIR%%/QtWidgets/qabstractscrollarea.h +%%QT_INCDIR%%/QtWidgets/qabstractslider.h +%%QT_INCDIR%%/QtWidgets/qabstractspinbox.h +%%QT_INCDIR%%/QtWidgets/qaccessiblewidget.h +%%QT_INCDIR%%/QtWidgets/qaction.h +%%QT_INCDIR%%/QtWidgets/qactiongroup.h +%%QT_INCDIR%%/QtWidgets/qapplication.h +%%QT_INCDIR%%/QtWidgets/qboxlayout.h +%%QT_INCDIR%%/QtWidgets/qbuttongroup.h +%%QT_INCDIR%%/QtWidgets/qcalendarwidget.h +%%QT_INCDIR%%/QtWidgets/qcheckbox.h +%%QT_INCDIR%%/QtWidgets/qcolordialog.h +%%QT_INCDIR%%/QtWidgets/qcolormap.h +%%QT_INCDIR%%/QtWidgets/qcolumnview.h +%%QT_INCDIR%%/QtWidgets/qcombobox.h +%%QT_INCDIR%%/QtWidgets/qcommandlinkbutton.h +%%QT_INCDIR%%/QtWidgets/qcommonstyle.h +%%QT_INCDIR%%/QtWidgets/qcompleter.h +%%QT_INCDIR%%/QtWidgets/qdatawidgetmapper.h +%%QT_INCDIR%%/QtWidgets/qdatetimeedit.h +%%QT_INCDIR%%/QtWidgets/qdial.h +%%QT_INCDIR%%/QtWidgets/qdialog.h +%%QT_INCDIR%%/QtWidgets/qdialogbuttonbox.h +%%QT_INCDIR%%/QtWidgets/qdockwidget.h +%%QT_INCDIR%%/QtWidgets/qdrawutil.h +%%QT_INCDIR%%/QtWidgets/qerrormessage.h +%%QT_INCDIR%%/QtWidgets/qfiledialog.h +%%QT_INCDIR%%/QtWidgets/qfileiconprovider.h +%%QT_INCDIR%%/QtWidgets/qfilesystemmodel.h +%%QT_INCDIR%%/QtWidgets/qfocusframe.h +%%QT_INCDIR%%/QtWidgets/qfontcombobox.h +%%QT_INCDIR%%/QtWidgets/qfontdialog.h +%%QT_INCDIR%%/QtWidgets/qformlayout.h +%%QT_INCDIR%%/QtWidgets/qframe.h +%%QT_INCDIR%%/QtWidgets/qgesture.h +%%QT_INCDIR%%/QtWidgets/qgesturerecognizer.h +%%QT_INCDIR%%/QtWidgets/qgraphicsanchorlayout.h +%%QT_INCDIR%%/QtWidgets/qgraphicseffect.h +%%QT_INCDIR%%/QtWidgets/qgraphicsgridlayout.h +%%QT_INCDIR%%/QtWidgets/qgraphicsitem.h +%%QT_INCDIR%%/QtWidgets/qgraphicsitemanimation.h +%%QT_INCDIR%%/QtWidgets/qgraphicslayout.h +%%QT_INCDIR%%/QtWidgets/qgraphicslayoutitem.h +%%QT_INCDIR%%/QtWidgets/qgraphicslinearlayout.h +%%QT_INCDIR%%/QtWidgets/qgraphicsproxywidget.h +%%QT_INCDIR%%/QtWidgets/qgraphicsscene.h +%%QT_INCDIR%%/QtWidgets/qgraphicssceneevent.h +%%QT_INCDIR%%/QtWidgets/qgraphicstransform.h +%%QT_INCDIR%%/QtWidgets/qgraphicsview.h +%%QT_INCDIR%%/QtWidgets/qgraphicswidget.h +%%QT_INCDIR%%/QtWidgets/qgridlayout.h +%%QT_INCDIR%%/QtWidgets/qgroupbox.h +%%QT_INCDIR%%/QtWidgets/qheaderview.h +%%QT_INCDIR%%/QtWidgets/qinputdialog.h +%%QT_INCDIR%%/QtWidgets/qitemdelegate.h +%%QT_INCDIR%%/QtWidgets/qitemeditorfactory.h +%%QT_INCDIR%%/QtWidgets/qkeysequenceedit.h +%%QT_INCDIR%%/QtWidgets/qlabel.h +%%QT_INCDIR%%/QtWidgets/qlayout.h +%%QT_INCDIR%%/QtWidgets/qlayoutitem.h +%%QT_INCDIR%%/QtWidgets/qlcdnumber.h +%%QT_INCDIR%%/QtWidgets/qlineedit.h +%%QT_INCDIR%%/QtWidgets/qlistview.h +%%QT_INCDIR%%/QtWidgets/qlistwidget.h +%%QT_INCDIR%%/QtWidgets/qmainwindow.h +%%QT_INCDIR%%/QtWidgets/qmdiarea.h +%%QT_INCDIR%%/QtWidgets/qmdisubwindow.h +%%QT_INCDIR%%/QtWidgets/qmenu.h +%%QT_INCDIR%%/QtWidgets/qmenubar.h +%%QT_INCDIR%%/QtWidgets/qmessagebox.h +%%QT_INCDIR%%/QtWidgets/qplaintextedit.h +%%QT_INCDIR%%/QtWidgets/qprogressbar.h +%%QT_INCDIR%%/QtWidgets/qprogressdialog.h +%%QT_INCDIR%%/QtWidgets/qproxystyle.h +%%QT_INCDIR%%/QtWidgets/qpushbutton.h +%%QT_INCDIR%%/QtWidgets/qradiobutton.h +%%QT_INCDIR%%/QtWidgets/qrubberband.h +%%QT_INCDIR%%/QtWidgets/qscrollarea.h +%%QT_INCDIR%%/QtWidgets/qscrollbar.h +%%QT_INCDIR%%/QtWidgets/qscroller.h +%%QT_INCDIR%%/QtWidgets/qscrollerproperties.h +%%QT_INCDIR%%/QtWidgets/qshortcut.h +%%QT_INCDIR%%/QtWidgets/qsizegrip.h +%%QT_INCDIR%%/QtWidgets/qsizepolicy.h +%%QT_INCDIR%%/QtWidgets/qslider.h +%%QT_INCDIR%%/QtWidgets/qspinbox.h +%%QT_INCDIR%%/QtWidgets/qsplashscreen.h +%%QT_INCDIR%%/QtWidgets/qsplitter.h +%%QT_INCDIR%%/QtWidgets/qstackedlayout.h +%%QT_INCDIR%%/QtWidgets/qstackedwidget.h +%%QT_INCDIR%%/QtWidgets/qstatusbar.h +%%QT_INCDIR%%/QtWidgets/qstyle.h +%%QT_INCDIR%%/QtWidgets/qstyleditemdelegate.h +%%QT_INCDIR%%/QtWidgets/qstylefactory.h +%%QT_INCDIR%%/QtWidgets/qstyleoption.h +%%QT_INCDIR%%/QtWidgets/qstylepainter.h +%%QT_INCDIR%%/QtWidgets/qstyleplugin.h +%%QT_INCDIR%%/QtWidgets/qsystemtrayicon.h +%%QT_INCDIR%%/QtWidgets/qtabbar.h +%%QT_INCDIR%%/QtWidgets/qtableview.h +%%QT_INCDIR%%/QtWidgets/qtablewidget.h +%%QT_INCDIR%%/QtWidgets/qtabwidget.h +%%QT_INCDIR%%/QtWidgets/qtestsupport_widgets.h +%%QT_INCDIR%%/QtWidgets/qtextbrowser.h +%%QT_INCDIR%%/QtWidgets/qtextedit.h +%%QT_INCDIR%%/QtWidgets/qtoolbar.h +%%QT_INCDIR%%/QtWidgets/qtoolbox.h +%%QT_INCDIR%%/QtWidgets/qtoolbutton.h +%%QT_INCDIR%%/QtWidgets/qtooltip.h +%%QT_INCDIR%%/QtWidgets/qtreeview.h +%%QT_INCDIR%%/QtWidgets/qtreewidget.h +%%QT_INCDIR%%/QtWidgets/qtreewidgetitemiterator.h +%%QT_INCDIR%%/QtWidgets/qtwidgets-config.h +%%QT_INCDIR%%/QtWidgets/qtwidgetsexports.h +%%QT_INCDIR%%/QtWidgets/qtwidgetsglobal.h +%%QT_INCDIR%%/QtWidgets/qtwidgetsversion.h +%%QT_INCDIR%%/QtWidgets/qundogroup.h +%%QT_INCDIR%%/QtWidgets/qundostack.h +%%QT_INCDIR%%/QtWidgets/qundoview.h +%%QT_INCDIR%%/QtWidgets/qwhatsthis.h +%%QT_INCDIR%%/QtWidgets/qwidget.h +%%QT_INCDIR%%/QtWidgets/qwidgetaction.h +%%QT_INCDIR%%/QtWidgets/qwizard.h +%%QT_INCDIR%%/QtXml/%%FULLVER%%/QtXml/private/qdom_p.h +%%QT_INCDIR%%/QtXml/%%FULLVER%%/QtXml/private/qdomhelpers_p.h +%%QT_INCDIR%%/QtXml/%%FULLVER%%/QtXml/private/qtxml-config_p.h +%%QT_INCDIR%%/QtXml/QDomAttr +%%QT_INCDIR%%/QtXml/QDomCDATASection +%%QT_INCDIR%%/QtXml/QDomCharacterData +%%QT_INCDIR%%/QtXml/QDomComment +%%QT_INCDIR%%/QtXml/QDomDocument +%%QT_INCDIR%%/QtXml/QDomDocumentFragment +%%QT_INCDIR%%/QtXml/QDomDocumentType +%%QT_INCDIR%%/QtXml/QDomElement +%%QT_INCDIR%%/QtXml/QDomEntity +%%QT_INCDIR%%/QtXml/QDomEntityReference +%%QT_INCDIR%%/QtXml/QDomImplementation +%%QT_INCDIR%%/QtXml/QDomNamedNodeMap +%%QT_INCDIR%%/QtXml/QDomNode +%%QT_INCDIR%%/QtXml/QDomNodeList +%%QT_INCDIR%%/QtXml/QDomNotation +%%QT_INCDIR%%/QtXml/QDomProcessingInstruction +%%QT_INCDIR%%/QtXml/QDomText +%%QT_INCDIR%%/QtXml/QtXml +%%QT_INCDIR%%/QtXml/QtXmlDepends +%%QT_INCDIR%%/QtXml/QtXmlVersion +%%QT_INCDIR%%/QtXml/qdom.h +%%QT_INCDIR%%/QtXml/qtxml-config.h +%%QT_INCDIR%%/QtXml/qtxmlexports.h +%%QT_INCDIR%%/QtXml/qtxmlglobal.h +%%QT_INCDIR%%/QtXml/qtxmlversion.h +lib/cmake/Qt6/3rdparty/extra-cmake-modules/COPYING-CMAKE-SCRIPTS +lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/ECMFindModuleHelpersStub.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindEGL.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindGLIB2.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindWayland.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindWaylandScanner.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindX11_XCB.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindXCB.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/modules/ECMEnableSanitizers.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/modules/ECMFindModuleHelpers.cmake +lib/cmake/Qt6/3rdparty/extra-cmake-modules/qt_attribution.json +lib/cmake/Qt6/3rdparty/kwin/COPYING-CMAKE-SCRIPTS +lib/cmake/Qt6/3rdparty/kwin/FindLibdrm.cmake +lib/cmake/Qt6/3rdparty/kwin/FindLibinput.cmake +lib/cmake/Qt6/3rdparty/kwin/FindXKB.cmake +lib/cmake/Qt6/3rdparty/kwin/Findgbm.cmake +lib/cmake/Qt6/3rdparty/kwin/qt_attribution.json +lib/cmake/Qt6/FindATSPI2.cmake +lib/cmake/Qt6/FindCups.cmake +lib/cmake/Qt6/FindDB2.cmake +lib/cmake/Qt6/FindDirectFB.cmake +lib/cmake/Qt6/FindGLESv2.cmake +lib/cmake/Qt6/FindGSSAPI.cmake +lib/cmake/Qt6/FindGTK3.cmake +lib/cmake/Qt6/FindInterbase.cmake +lib/cmake/Qt6/FindLibb2.cmake +lib/cmake/Qt6/FindLibproxy.cmake +lib/cmake/Qt6/FindLibsystemd.cmake +lib/cmake/Qt6/FindLibudev.cmake +lib/cmake/Qt6/FindMtdev.cmake +%%MYSQL%%lib/cmake/Qt6/FindMySQL.cmake +lib/cmake/Qt6/FindOracle.cmake +lib/cmake/Qt6/FindPPS.cmake +%%PSQL%%lib/cmake/Qt6/FindPostgreSQL.cmake +lib/cmake/Qt6/FindSlog2.cmake +lib/cmake/Qt6/FindTslib.cmake +lib/cmake/Qt6/FindWrapAtomic.cmake +lib/cmake/Qt6/FindWrapBacktrace.cmake +lib/cmake/Qt6/FindWrapBrotli.cmake +lib/cmake/Qt6/FindWrapBundledFreetypeConfigExtra.cmake +lib/cmake/Qt6/FindWrapBundledHarfbuzzConfigExtra.cmake +lib/cmake/Qt6/FindWrapBundledLibjpegConfigExtra.cmake +lib/cmake/Qt6/FindWrapBundledLibpngConfigExtra.cmake +lib/cmake/Qt6/FindWrapBundledPcre2ConfigExtra.cmake +lib/cmake/Qt6/FindWrapBundledZLIBConfigExtra.cmake +lib/cmake/Qt6/FindWrapDBus1.cmake +lib/cmake/Qt6/FindWrapDoubleConversion.cmake +lib/cmake/Qt6/FindWrapFreetype.cmake +lib/cmake/Qt6/FindWrapHarfbuzz.cmake +lib/cmake/Qt6/FindWrapJpeg.cmake +lib/cmake/Qt6/FindWrapOpenGL.cmake +lib/cmake/Qt6/FindWrapOpenSSL.cmake +lib/cmake/Qt6/FindWrapOpenSSLHeaders.cmake +lib/cmake/Qt6/FindWrapPCRE2.cmake +lib/cmake/Qt6/FindWrapPNG.cmake +lib/cmake/Qt6/FindWrapRt.cmake +lib/cmake/Qt6/FindWrapSystemFreetype.cmake +lib/cmake/Qt6/FindWrapSystemHarfbuzz.cmake +lib/cmake/Qt6/FindWrapSystemJpeg.cmake +lib/cmake/Qt6/FindWrapSystemMd4c.cmake +lib/cmake/Qt6/FindWrapSystemPCRE2.cmake +lib/cmake/Qt6/FindWrapSystemPNG.cmake +lib/cmake/Qt6/FindWrapSystemZLIB.cmake +lib/cmake/Qt6/FindWrapVulkan.cmake +lib/cmake/Qt6/FindWrapVulkanHeaders.cmake +lib/cmake/Qt6/FindWrapZLIB.cmake +lib/cmake/Qt6/FindWrapZSTD.cmake +lib/cmake/Qt6/FindXKB_COMMON_X11.cmake +lib/cmake/Qt6/FindXRender.cmake +lib/cmake/Qt6/Finddouble-conversion.cmake +lib/cmake/Qt6/ModuleDescription.json.in +lib/cmake/Qt6/PkgConfigLibrary.pc.in +lib/cmake/Qt6/Qt3rdPartyLibraryConfig.cmake.in +lib/cmake/Qt6/Qt3rdPartyLibraryHelpers.cmake +lib/cmake/Qt6/Qt6Config.cmake +lib/cmake/Qt6/Qt6ConfigExtras.cmake +lib/cmake/Qt6/Qt6ConfigVersion.cmake +lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake +lib/cmake/Qt6/Qt6Dependencies.cmake +lib/cmake/Qt6/Qt6Targets.cmake +lib/cmake/Qt6/Qt6VersionlessTargets.cmake +lib/cmake/Qt6/QtAndroidHelpers.cmake +lib/cmake/Qt6/QtAppHelpers.cmake +lib/cmake/Qt6/QtAutogenHelpers.cmake +lib/cmake/Qt6/QtBuild.cmake +lib/cmake/Qt6/QtBuildInformation.cmake +lib/cmake/Qt6/QtCMakeHelpers.cmake +lib/cmake/Qt6/QtCMakePackageVersionFile.cmake.in +lib/cmake/Qt6/QtCMakeVersionHelpers.cmake +lib/cmake/Qt6/QtCompilerFlags.cmake +lib/cmake/Qt6/QtCompilerOptimization.cmake +lib/cmake/Qt6/QtConfigDependencies.cmake.in +lib/cmake/Qt6/QtCopyFileIfDifferent.cmake +lib/cmake/Qt6/QtDbusHelpers.cmake +lib/cmake/Qt6/QtDeferredDependenciesHelpers.cmake +lib/cmake/Qt6/QtDocsHelpers.cmake +lib/cmake/Qt6/QtExecutableHelpers.cmake +lib/cmake/Qt6/QtFeature.cmake +lib/cmake/Qt6/QtFeatureCommon.cmake +lib/cmake/Qt6/QtFileConfigure.txt.in +lib/cmake/Qt6/QtFindPackageHelpers.cmake +lib/cmake/Qt6/QtFindWrapConfigExtra.cmake.in +lib/cmake/Qt6/QtFindWrapHelper.cmake +lib/cmake/Qt6/QtFinishPkgConfigFile.cmake +lib/cmake/Qt6/QtFinishPrlFile.cmake +lib/cmake/Qt6/QtFlagHandlingHelpers.cmake +lib/cmake/Qt6/QtFrameworkHelpers.cmake +lib/cmake/Qt6/QtGenerateExtPri.cmake +lib/cmake/Qt6/QtGenerateLibHelpers.cmake +lib/cmake/Qt6/QtGenerateLibPri.cmake +lib/cmake/Qt6/QtGlobalStateHelpers.cmake +lib/cmake/Qt6/QtHeadersClean.cmake +lib/cmake/Qt6/QtInstallHelpers.cmake +lib/cmake/Qt6/QtJavaHelpers.cmake +lib/cmake/Qt6/QtLalrHelpers.cmake +lib/cmake/Qt6/QtModuleConfig.cmake.in +lib/cmake/Qt6/QtModuleDependencies.cmake.in +lib/cmake/Qt6/QtModuleHelpers.cmake +lib/cmake/Qt6/QtModuleToolsConfig.cmake.in +lib/cmake/Qt6/QtModuleToolsDependencies.cmake.in +lib/cmake/Qt6/QtModuleToolsVersionlessTargets.cmake.in +lib/cmake/Qt6/QtNoLinkTargetHelpers.cmake +lib/cmake/Qt6/QtPkgConfigHelpers.cmake +lib/cmake/Qt6/QtPlatformAndroid.cmake +lib/cmake/Qt6/QtPlatformSupport.cmake +lib/cmake/Qt6/QtPlatformTargetHelpers.cmake +lib/cmake/Qt6/QtPluginConfig.cmake.in +lib/cmake/Qt6/QtPluginDependencies.cmake.in +lib/cmake/Qt6/QtPluginHelpers.cmake +lib/cmake/Qt6/QtPlugins.cmake.in +lib/cmake/Qt6/QtPostProcess.cmake +lib/cmake/Qt6/QtPostProcessHelpers.cmake +lib/cmake/Qt6/QtPrecompiledHeadersHelpers.cmake +lib/cmake/Qt6/QtPriHelpers.cmake +lib/cmake/Qt6/QtPrlHelpers.cmake +lib/cmake/Qt6/QtProcessConfigureArgs.cmake +lib/cmake/Qt6/QtPublicCMakeHelpers.cmake +lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake +lib/cmake/Qt6/QtPublicDependencyHelpers.cmake +lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake +lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake +lib/cmake/Qt6/QtPublicPluginHelpers.cmake +lib/cmake/Qt6/QtPublicTargetHelpers.cmake +lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake +lib/cmake/Qt6/QtPublicWasmToolchainHelpers.cmake +lib/cmake/Qt6/QtQmakeHelpers.cmake +lib/cmake/Qt6/QtResourceHelpers.cmake +lib/cmake/Qt6/QtRpathHelpers.cmake +lib/cmake/Qt6/QtSanitizerHelpers.cmake +lib/cmake/Qt6/QtScopeFinalizerHelpers.cmake +lib/cmake/Qt6/QtSeparateDebugInfo.Info.plist.in +lib/cmake/Qt6/QtSeparateDebugInfo.cmake +lib/cmake/Qt6/QtSetup.cmake +lib/cmake/Qt6/QtSimdHelpers.cmake +lib/cmake/Qt6/QtSingleRepoTargetSetBuildHelpers.cmake +lib/cmake/Qt6/QtStandaloneTestsConfig.cmake.in +lib/cmake/Qt6/QtSyncQtHelpers.cmake +lib/cmake/Qt6/QtTargetHelpers.cmake +lib/cmake/Qt6/QtTestHelpers.cmake +lib/cmake/Qt6/QtToolHelpers.cmake +lib/cmake/Qt6/QtToolchainHelpers.cmake +lib/cmake/Qt6/QtWasmHelpers.cmake +lib/cmake/Qt6/QtWrapperScriptHelpers.cmake +lib/cmake/Qt6/QtWriteArgsFile.cmake +lib/cmake/Qt6/config.tests/binary_for_strip/CMakeLists.txt +lib/cmake/Qt6/config.tests/binary_for_strip/lib1.cpp +lib/cmake/Qt6/config.tests/static_link_order/CMakeLists.txt +lib/cmake/Qt6/config.tests/static_link_order/main.cpp +lib/cmake/Qt6/config.tests/static_link_order/objlib.cpp +lib/cmake/Qt6/config.tests/static_link_order/staticlib1.cpp +lib/cmake/Qt6/config.tests/static_link_order/staticlib2.cpp +lib/cmake/Qt6/libexec/qt-internal-ninja.bat.in +lib/cmake/Qt6/libexec/qt-internal-ninja.in +lib/cmake/Qt6/libexec/qt-internal-strip.bat.in +lib/cmake/Qt6/libexec/qt-internal-strip.in +lib/cmake/Qt6/modulecppexports.h.in +lib/cmake/Qt6/modulecppexports_p.h.in +lib/cmake/Qt6/platforms/FindIntegrityPlatformGraphics.cmake +lib/cmake/Qt6/platforms/Platform/Integrity.cmake +lib/cmake/Qt6/qt.toolchain.cmake +lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfig.cmake +lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersion.cmake +lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersionImpl.cmake +lib/cmake/Qt6BuildInternals/QtBuildInternalsExtra.cmake +lib/cmake/Qt6BuildInternals/QtStandaloneTestTemplateProject/CMakeLists.txt +lib/cmake/Qt6BuildInternals/QtStandaloneTestTemplateProject/Main.cmake +lib/cmake/Qt6BuildInternals/StandaloneTests/QtBaseTestsConfig.cmake +lib/cmake/Qt6Concurrent/Qt6ConcurrentAdditionalTargetInfo.cmake +lib/cmake/Qt6Concurrent/Qt6ConcurrentConfig.cmake +lib/cmake/Qt6Concurrent/Qt6ConcurrentConfigVersion.cmake +lib/cmake/Qt6Concurrent/Qt6ConcurrentConfigVersionImpl.cmake +lib/cmake/Qt6Concurrent/Qt6ConcurrentDependencies.cmake +lib/cmake/Qt6Concurrent/Qt6ConcurrentTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Concurrent/Qt6ConcurrentTargets.cmake +lib/cmake/Qt6Concurrent/Qt6ConcurrentVersionlessTargets.cmake +lib/cmake/Qt6Core/Qt6CTestMacros.cmake +lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake +lib/cmake/Qt6Core/Qt6CoreConfig.cmake +lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake +lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake +lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake +lib/cmake/Qt6Core/Qt6CoreConfigureFileTemplate.in +lib/cmake/Qt6Core/Qt6CoreDependencies.cmake +lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake +lib/cmake/Qt6Core/Qt6CoreMacros.cmake +lib/cmake/Qt6Core/Qt6CoreTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Core/Qt6CoreTargets.cmake +lib/cmake/Qt6Core/Qt6CoreVersionlessTargets.cmake +lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake +lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake +lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake +lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake +lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake +lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake +lib/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake +lib/cmake/Qt6DBus/Qt6DBusConfig.cmake +lib/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake +lib/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake +lib/cmake/Qt6DBus/Qt6DBusDependencies.cmake +lib/cmake/Qt6DBus/Qt6DBusMacros.cmake +lib/cmake/Qt6DBus/Qt6DBusTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6DBus/Qt6DBusTargets.cmake +lib/cmake/Qt6DBus/Qt6DBusVersionlessTargets.cmake +lib/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake +lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake +lib/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake +lib/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake +lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake +lib/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake +lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6DeviceDiscoverySupportPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6DeviceDiscoverySupportPrivateConfig.cmake +lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6DeviceDiscoverySupportPrivateConfigVersion.cmake +lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6DeviceDiscoverySupportPrivateConfigVersionImpl.cmake +lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6DeviceDiscoverySupportPrivateDependencies.cmake +lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6DeviceDiscoverySupportPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6DeviceDiscoverySupportPrivateTargets.cmake +lib/cmake/Qt6DeviceDiscoverySupportPrivate/Qt6DeviceDiscoverySupportPrivateVersionlessTargets.cmake +lib/cmake/Qt6FbSupportPrivate/Qt6FbSupportPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6FbSupportPrivate/Qt6FbSupportPrivateConfig.cmake +lib/cmake/Qt6FbSupportPrivate/Qt6FbSupportPrivateConfigVersion.cmake +lib/cmake/Qt6FbSupportPrivate/Qt6FbSupportPrivateConfigVersionImpl.cmake +lib/cmake/Qt6FbSupportPrivate/Qt6FbSupportPrivateDependencies.cmake +lib/cmake/Qt6FbSupportPrivate/Qt6FbSupportPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6FbSupportPrivate/Qt6FbSupportPrivateTargets.cmake +lib/cmake/Qt6FbSupportPrivate/Qt6FbSupportPrivateVersionlessTargets.cmake +lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6GuiConfig.cmake +lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake +lib/cmake/Qt6Gui/Qt6GuiTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6GuiTargets.cmake +lib/cmake/Qt6Gui/Qt6GuiVersionlessTargets.cmake +lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QEvdevMousePluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QGifPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QGifPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QGifPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QICOPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QICOPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QICOPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QJpegPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QJpegPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QLibInputPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QLibInputPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake +lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake +lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake +lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake +lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake +lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake +lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake +lib/cmake/Qt6HostInfo/Qt6HostInfoConfig.cmake +lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateConfig.cmake +lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateConfigVersion.cmake +lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateConfigVersionImpl.cmake +lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateDependencies.cmake +lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateTargets.cmake +lib/cmake/Qt6InputSupportPrivate/Qt6InputSupportPrivateVersionlessTargets.cmake +lib/cmake/Qt6KmsSupportPrivate/Qt6KmsSupportPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6KmsSupportPrivate/Qt6KmsSupportPrivateConfig.cmake +lib/cmake/Qt6KmsSupportPrivate/Qt6KmsSupportPrivateConfigVersion.cmake +lib/cmake/Qt6KmsSupportPrivate/Qt6KmsSupportPrivateConfigVersionImpl.cmake +lib/cmake/Qt6KmsSupportPrivate/Qt6KmsSupportPrivateDependencies.cmake +lib/cmake/Qt6KmsSupportPrivate/Qt6KmsSupportPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6KmsSupportPrivate/Qt6KmsSupportPrivateTargets.cmake +lib/cmake/Qt6KmsSupportPrivate/Qt6KmsSupportPrivateVersionlessTargets.cmake +lib/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake +lib/cmake/Qt6Network/Qt6NetworkConfig.cmake +lib/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake +lib/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake +lib/cmake/Qt6Network/Qt6NetworkDependencies.cmake +lib/cmake/Qt6Network/Qt6NetworkTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Network/Qt6NetworkTargets.cmake +lib/cmake/Qt6Network/Qt6NetworkVersionlessTargets.cmake +lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake +lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfigVersion.cmake +lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfigVersion.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfigVersionImpl.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfigVersion.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfigVersionImpl.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake +lib/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake +lib/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake +lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake +lib/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake +lib/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake +lib/cmake/Qt6OpenGL/Qt6OpenGLTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake +lib/cmake/Qt6OpenGL/Qt6OpenGLVersionlessTargets.cmake +lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsAdditionalTargetInfo.cmake +lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsConfig.cmake +lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsConfigVersion.cmake +lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsConfigVersionImpl.cmake +lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsDependencies.cmake +lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsTargets.cmake +lib/cmake/Qt6OpenGLWidgets/Qt6OpenGLWidgetsVersionlessTargets.cmake +lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake +lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake +lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake +lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake +lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake +lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake +lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessTargets.cmake +lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginConfig.cmake +lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginConfigVersion.cmake +lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginConfigVersionImpl.cmake +lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6PrintSupport/Qt6QCupsPrinterSupportPluginTargets.cmake +%%MYSQL%%lib/cmake/Qt6Sql/Qt6QMYSQLDriverPluginAdditionalTargetInfo.cmake +%%MYSQL%%lib/cmake/Qt6Sql/Qt6QMYSQLDriverPluginConfig.cmake +%%MYSQL%%lib/cmake/Qt6Sql/Qt6QMYSQLDriverPluginConfigVersion.cmake +%%MYSQL%%lib/cmake/Qt6Sql/Qt6QMYSQLDriverPluginConfigVersionImpl.cmake +%%MYSQL%%lib/cmake/Qt6Sql/Qt6QMYSQLDriverPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +%%MYSQL%%lib/cmake/Qt6Sql/Qt6QMYSQLDriverPluginTargets.cmake +%%ODBC%%lib/cmake/Qt6Sql/Qt6QODBCDriverPluginAdditionalTargetInfo.cmake +%%ODBC%%lib/cmake/Qt6Sql/Qt6QODBCDriverPluginConfig.cmake +%%ODBC%%lib/cmake/Qt6Sql/Qt6QODBCDriverPluginConfigVersion.cmake +%%ODBC%%lib/cmake/Qt6Sql/Qt6QODBCDriverPluginConfigVersionImpl.cmake +%%ODBC%%lib/cmake/Qt6Sql/Qt6QODBCDriverPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +%%ODBC%%lib/cmake/Qt6Sql/Qt6QODBCDriverPluginTargets.cmake +%%PSQL%%lib/cmake/Qt6Sql/Qt6QPSQLDriverPluginAdditionalTargetInfo.cmake +%%PSQL%%lib/cmake/Qt6Sql/Qt6QPSQLDriverPluginConfig.cmake +%%PSQL%%lib/cmake/Qt6Sql/Qt6QPSQLDriverPluginConfigVersion.cmake +%%PSQL%%lib/cmake/Qt6Sql/Qt6QPSQLDriverPluginConfigVersionImpl.cmake +%%PSQL%%lib/cmake/Qt6Sql/Qt6QPSQLDriverPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +%%PSQL%%lib/cmake/Qt6Sql/Qt6QPSQLDriverPluginTargets.cmake +%%SQLITE%%lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginAdditionalTargetInfo.cmake +%%SQLITE%%lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginConfig.cmake +%%SQLITE%%lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginConfigVersion.cmake +%%SQLITE%%lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginConfigVersionImpl.cmake +%%SQLITE%%lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +%%SQLITE%%lib/cmake/Qt6Sql/Qt6QSQLiteDriverPluginTargets.cmake +lib/cmake/Qt6Sql/Qt6SqlAdditionalTargetInfo.cmake +lib/cmake/Qt6Sql/Qt6SqlConfig.cmake +lib/cmake/Qt6Sql/Qt6SqlConfigVersion.cmake +lib/cmake/Qt6Sql/Qt6SqlConfigVersionImpl.cmake +lib/cmake/Qt6Sql/Qt6SqlDependencies.cmake +lib/cmake/Qt6Sql/Qt6SqlTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Sql/Qt6SqlTargets.cmake +lib/cmake/Qt6Sql/Qt6SqlVersionlessTargets.cmake +lib/cmake/Qt6Test/Qt6TestAdditionalTargetInfo.cmake +lib/cmake/Qt6Test/Qt6TestConfig.cmake +lib/cmake/Qt6Test/Qt6TestConfigVersion.cmake +lib/cmake/Qt6Test/Qt6TestConfigVersionImpl.cmake +lib/cmake/Qt6Test/Qt6TestDependencies.cmake +lib/cmake/Qt6Test/Qt6TestTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Test/Qt6TestTargets.cmake +lib/cmake/Qt6Test/Qt6TestVersionlessTargets.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake +lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessTargets.cmake +lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake +lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake +lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake +lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake +lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake +lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake +lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateConfig.cmake +lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateConfigVersion.cmake +lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateConfigVersionImpl.cmake +lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateDependencies.cmake +lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateTargets.cmake +lib/cmake/Qt6XcbQpaPrivate/Qt6XcbQpaPrivateVersionlessTargets.cmake +lib/cmake/Qt6Xml/Qt6XmlAdditionalTargetInfo.cmake +lib/cmake/Qt6Xml/Qt6XmlConfig.cmake +lib/cmake/Qt6Xml/Qt6XmlConfigVersion.cmake +lib/cmake/Qt6Xml/Qt6XmlConfigVersionImpl.cmake +lib/cmake/Qt6Xml/Qt6XmlDependencies.cmake +lib/cmake/Qt6Xml/Qt6XmlTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Xml/Qt6XmlTargets.cmake +lib/cmake/Qt6Xml/Qt6XmlVersionlessTargets.cmake +%%QT_BINDIR%%/androiddeployqt +%%QT_BINDIR%%/androidtestrunner +%%QT_BINDIR%%/qdbuscpp2xml +%%QT_BINDIR%%/qdbusxml2cpp +%%QT_BINDIR%%/qmake +%%QT_BINDIR%%/qmake6 +%%QT_BINDIR%%/qt-cmake +%%QT_BINDIR%%/qt-cmake-private +%%QT_BINDIR%%/qt-cmake-private-install.cmake +%%QT_BINDIR%%/qt-cmake-standalone-test +%%QT_BINDIR%%/qt-configure-module +%%QT_BINDIR%%/qtpaths +%%QT_BINDIR%%/qtpaths6 +%%QT_LIBDIR%%/libQt6Concurrent.prl +%%QT_LIBDIR%%/libQt6Concurrent.so +%%QT_LIBDIR%%/libQt6Concurrent.so.6 +%%QT_LIBDIR%%/libQt6Concurrent.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Core.prl +%%QT_LIBDIR%%/libQt6Core.so +%%QT_LIBDIR%%/libQt6Core.so.6 +%%QT_LIBDIR%%/libQt6Core.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6DBus.prl +%%QT_LIBDIR%%/libQt6DBus.so +%%QT_LIBDIR%%/libQt6DBus.so.6 +%%QT_LIBDIR%%/libQt6DBus.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6DeviceDiscoverySupport.a +%%QT_LIBDIR%%/libQt6DeviceDiscoverySupport.prl +%%QT_LIBDIR%%/libQt6FbSupport.a +%%QT_LIBDIR%%/libQt6FbSupport.prl +%%QT_LIBDIR%%/libQt6Gui.prl +%%QT_LIBDIR%%/libQt6Gui.so +%%QT_LIBDIR%%/libQt6Gui.so.6 +%%QT_LIBDIR%%/libQt6Gui.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6InputSupport.a +%%QT_LIBDIR%%/libQt6InputSupport.prl +%%QT_LIBDIR%%/libQt6KmsSupport.a +%%QT_LIBDIR%%/libQt6KmsSupport.prl +%%QT_LIBDIR%%/libQt6Network.prl +%%QT_LIBDIR%%/libQt6Network.so +%%QT_LIBDIR%%/libQt6Network.so.6 +%%QT_LIBDIR%%/libQt6Network.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6OpenGL.prl +%%QT_LIBDIR%%/libQt6OpenGL.so +%%QT_LIBDIR%%/libQt6OpenGL.so.6 +%%QT_LIBDIR%%/libQt6OpenGL.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6OpenGLWidgets.prl +%%QT_LIBDIR%%/libQt6OpenGLWidgets.so +%%QT_LIBDIR%%/libQt6OpenGLWidgets.so.6 +%%QT_LIBDIR%%/libQt6OpenGLWidgets.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6PrintSupport.prl +%%QT_LIBDIR%%/libQt6PrintSupport.so +%%QT_LIBDIR%%/libQt6PrintSupport.so.6 +%%QT_LIBDIR%%/libQt6PrintSupport.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Sql.prl +%%QT_LIBDIR%%/libQt6Sql.so +%%QT_LIBDIR%%/libQt6Sql.so.6 +%%QT_LIBDIR%%/libQt6Sql.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Test.prl +%%QT_LIBDIR%%/libQt6Test.so +%%QT_LIBDIR%%/libQt6Test.so.6 +%%QT_LIBDIR%%/libQt6Test.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Widgets.prl +%%QT_LIBDIR%%/libQt6Widgets.so +%%QT_LIBDIR%%/libQt6Widgets.so.6 +%%QT_LIBDIR%%/libQt6Widgets.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6XcbQpa.prl +%%QT_LIBDIR%%/libQt6XcbQpa.so +%%QT_LIBDIR%%/libQt6XcbQpa.so.6 +%%QT_LIBDIR%%/libQt6XcbQpa.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Xml.prl +%%QT_LIBDIR%%/libQt6Xml.so +%%QT_LIBDIR%%/libQt6Xml.so.6 +%%QT_LIBDIR%%/libQt6Xml.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6concurrent_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6core_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6dbus_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6devicediscoverysupportprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6fbsupportprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6gui_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6inputsupportprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6kmssupportprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6network_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6opengl_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6openglwidgets_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6printsupport_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6sql_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6test_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6widgets_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6xcbqpaprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6xml_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/aix-g++-64/qmake.conf +%%QT_MKSPECDIR%%/aix-g++-64/qplatformdefs.h +%%QT_MKSPECDIR%%/aix-g++/qmake.conf +%%QT_MKSPECDIR%%/aix-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/android-clang/qmake.conf +%%QT_MKSPECDIR%%/android-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/common/aix/qplatformdefs.h +%%QT_MKSPECDIR%%/common/android/qplatformdefs.h +%%QT_MKSPECDIR%%/common/bsd/bsd.conf +%%QT_MKSPECDIR%%/common/bsd/qplatformdefs.h +%%QT_MKSPECDIR%%/common/c89/qplatformdefs.h +%%QT_MKSPECDIR%%/common/clang-mac.conf +%%QT_MKSPECDIR%%/common/clang.conf +%%QT_MKSPECDIR%%/common/g++-base.conf +%%QT_MKSPECDIR%%/common/g++-macx.conf +%%QT_MKSPECDIR%%/common/g++-unix.conf +%%QT_MKSPECDIR%%/common/g++-win32.conf +%%QT_MKSPECDIR%%/common/g++.conf +%%QT_MKSPECDIR%%/common/gcc-base-mac.conf +%%QT_MKSPECDIR%%/common/gcc-base-unix.conf +%%QT_MKSPECDIR%%/common/gcc-base.conf +%%QT_MKSPECDIR%%/common/ghs-base.conf +%%QT_MKSPECDIR%%/common/ghs-integrity-armv7.conf +%%QT_MKSPECDIR%%/common/ghs-integrity-armv8.conf +%%QT_MKSPECDIR%%/common/ghs-integrity-x86.conf +%%QT_MKSPECDIR%%/common/icc-base-unix.conf +%%QT_MKSPECDIR%%/common/integrity/qplatformdefs.h +%%QT_MKSPECDIR%%/common/ios.conf +%%QT_MKSPECDIR%%/common/linux.conf +%%QT_MKSPECDIR%%/common/llvm.conf +%%QT_MKSPECDIR%%/common/mac.conf +%%QT_MKSPECDIR%%/common/mac/qplatformdefs.h +%%QT_MKSPECDIR%%/common/macx.conf +%%QT_MKSPECDIR%%/common/msvc-based-version.conf +%%QT_MKSPECDIR%%/common/msvc-desktop.conf +%%QT_MKSPECDIR%%/common/msvc-version.conf +%%QT_MKSPECDIR%%/common/nacl/g++-nacl32.conf +%%QT_MKSPECDIR%%/common/nacl/g++-nacl64.conf +%%QT_MKSPECDIR%%/common/nacl/nacl-base.conf +%%QT_MKSPECDIR%%/common/nacl/qplatformdefs.h +%%QT_MKSPECDIR%%/common/posix/qplatformdefs.h +%%QT_MKSPECDIR%%/common/qcc-base-qnx-aarch64le.conf +%%QT_MKSPECDIR%%/common/qcc-base-qnx-armle-v7.conf +%%QT_MKSPECDIR%%/common/qcc-base-qnx-x86-64.conf +%%QT_MKSPECDIR%%/common/qcc-base-qnx-x86.conf +%%QT_MKSPECDIR%%/common/qcc-base-qnx.conf +%%QT_MKSPECDIR%%/common/qcc-base.conf +%%QT_MKSPECDIR%%/common/qnx/qplatformdefs.h +%%QT_MKSPECDIR%%/common/rtems-base.conf +%%QT_MKSPECDIR%%/common/rtems/qplatformdefs.h +%%QT_MKSPECDIR%%/common/sanitize.conf +%%QT_MKSPECDIR%%/common/shell-unix.conf +%%QT_MKSPECDIR%%/common/shell-win32.conf +%%QT_MKSPECDIR%%/common/solaris.conf +%%QT_MKSPECDIR%%/common/tvos.conf +%%QT_MKSPECDIR%%/common/uikit.conf +%%QT_MKSPECDIR%%/common/uikit/GLES2/gl2.h +%%QT_MKSPECDIR%%/common/uikit/clang.conf +%%QT_MKSPECDIR%%/common/uikit/qmake.conf +%%QT_MKSPECDIR%%/common/unix.conf +%%QT_MKSPECDIR%%/common/watchos.conf +%%QT_MKSPECDIR%%/common/windows-desktop.conf +%%QT_MKSPECDIR%%/common/windows-vulkan.conf +%%QT_MKSPECDIR%%/cygwin-g++/qmake.conf +%%QT_MKSPECDIR%%/cygwin-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/darwin-g++/qmake.conf +%%QT_MKSPECDIR%%/darwin-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/common/freebsd_device_post.conf +%%QT_MKSPECDIR%%/devices/common/freebsd_device_pre.conf +%%QT_MKSPECDIR%%/devices/common/linux_arm_device_post.conf +%%QT_MKSPECDIR%%/devices/common/linux_device_post.conf +%%QT_MKSPECDIR%%/devices/common/linux_device_pre.conf +%%QT_MKSPECDIR%%/devices/freebsd-generic-clang/qmake.conf +%%QT_MKSPECDIR%%/devices/freebsd-generic-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/freebsd-rasp-pi-clang/qmake.conf +%%QT_MKSPECDIR%%/devices/freebsd-rasp-pi-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/integrity-armv8-SA8155P/qmake.conf +%%QT_MKSPECDIR%%/devices/integrity-armv8-SA8155P/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/integrity-armv8-drive-cx/qmake.conf +%%QT_MKSPECDIR%%/devices/integrity-armv8-drive-cx/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/integrity-armv8-msm8996au/qmake.conf +%%QT_MKSPECDIR%%/devices/integrity-armv8-msm8996au/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-archos-gen8-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-archos-gen8-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qeglfshooks_8726m.cpp +%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-arm-amlogic-8726M-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-arm-generic-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-arm-hisilicon-hix5hd2-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-arm-trident-pnx8473-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-beagleboard-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-beagleboard-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-colibri-vf-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-colibri-vf-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-drive-cx-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-drive-cx-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-emu-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-emu-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-generic-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-generic-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-imx53qsb-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-imx6-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-imx6-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-imx7-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-imx7-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-imx8-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-imx8-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-jetson-tk1-pro-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-jetson-tx1-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-jetson-tx1-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qdirectfbeglhooks_bcm97425.cpp +%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-mipsel-broadcom-97425-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-mipsel-ci20-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-mipsel-ci20-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-nuc-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-nuc-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-odroid-xu3-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-rasp-pi-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-rasp-pi2-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-rasp-pi3-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-rasp-pi3-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-rasp-pi3-vc4-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-rasp-pi3-vc4-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-rasp-pi4-v3d-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-rasp-pi4-v3d-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-rcar-h2-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-rcar-h2-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-rcar-m3-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-rcar-m3-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7108-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-sh4-stmicro-ST7540-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-snowball-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-snowball-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-tegra2-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/devices/linux-tinkerboard-g++/qmake.conf +%%QT_MKSPECDIR%%/devices/linux-tinkerboard-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/dummy/qmake.conf +%%QT_MKSPECDIR%%/features/android/android.prf +%%QT_MKSPECDIR%%/features/android/android_deployment_settings.prf +%%QT_MKSPECDIR%%/features/android/default_pre.prf +%%QT_MKSPECDIR%%/features/android/resolve_config.prf +%%QT_MKSPECDIR%%/features/android/resolve_target.prf +%%QT_MKSPECDIR%%/features/android/sdk.prf +%%QT_MKSPECDIR%%/features/android/spec_post.prf +%%QT_MKSPECDIR%%/features/benchmark.prf +%%QT_MKSPECDIR%%/features/build_pass.prf +%%QT_MKSPECDIR%%/features/cmake_functions.prf +%%QT_MKSPECDIR%%/features/cmdline.prf +%%QT_MKSPECDIR%%/features/configure.prf +%%QT_MKSPECDIR%%/features/configure_base.prf +%%QT_MKSPECDIR%%/features/coverage.prf +%%QT_MKSPECDIR%%/features/create_cmake.prf +%%QT_MKSPECDIR%%/features/ctest_testcase.prf +%%QT_MKSPECDIR%%/features/ctest_testcase_common.prf +%%QT_MKSPECDIR%%/features/ctest_testcase_installed.prf +%%QT_MKSPECDIR%%/features/data/configure.json +%%QT_MKSPECDIR%%/features/data/dummy.cpp +%%QT_MKSPECDIR%%/features/data/dumpvcvars.bat +%%QT_MKSPECDIR%%/features/data/mac/objc_namespace.sh +%%QT_MKSPECDIR%%/features/data/macros.cpp +%%QT_MKSPECDIR%%/features/data/testserver/Dockerfile +%%QT_MKSPECDIR%%/features/data/testserver/docker-compose-common.yml +%%QT_MKSPECDIR%%/features/data/unix/findclasslist.pl +%%QT_MKSPECDIR%%/features/dbusadaptors.prf +%%QT_MKSPECDIR%%/features/dbuscommon.pri +%%QT_MKSPECDIR%%/features/dbusinterfaces.prf +%%QT_MKSPECDIR%%/features/declarative_debug.prf +%%QT_MKSPECDIR%%/features/default_post.prf +%%QT_MKSPECDIR%%/features/default_pre.prf +%%QT_MKSPECDIR%%/features/designer_defines.prf +%%QT_MKSPECDIR%%/features/device_config.prf +%%QT_MKSPECDIR%%/features/egl.prf +%%QT_MKSPECDIR%%/features/entrypoint.prf +%%QT_MKSPECDIR%%/features/exceptions.prf +%%QT_MKSPECDIR%%/features/exceptions_off.prf +%%QT_MKSPECDIR%%/features/exclusive_builds.prf +%%QT_MKSPECDIR%%/features/exclusive_builds_post.prf +%%QT_MKSPECDIR%%/features/file_copies.prf +%%QT_MKSPECDIR%%/features/gc_binaries.prf +%%QT_MKSPECDIR%%/features/gcov.prf +%%QT_MKSPECDIR%%/features/include_source_dir.prf +%%QT_MKSPECDIR%%/features/incredibuild_xge.prf +%%QT_MKSPECDIR%%/features/java.prf +%%QT_MKSPECDIR%%/features/lex.prf +%%QT_MKSPECDIR%%/features/link_ltcg.prf +%%QT_MKSPECDIR%%/features/link_pkgconfig.prf +%%QT_MKSPECDIR%%/features/lrelease.prf +%%QT_MKSPECDIR%%/features/ltcg.prf +%%QT_MKSPECDIR%%/features/mac/asset_catalogs.prf +%%QT_MKSPECDIR%%/features/mac/default_post.prf +%%QT_MKSPECDIR%%/features/mac/default_pre.prf +%%QT_MKSPECDIR%%/features/mac/mac.prf +%%QT_MKSPECDIR%%/features/mac/no_warn_empty_obj_files.prf +%%QT_MKSPECDIR%%/features/mac/objective_c.prf +%%QT_MKSPECDIR%%/features/mac/rez.prf +%%QT_MKSPECDIR%%/features/mac/sdk.mk +%%QT_MKSPECDIR%%/features/mac/sdk.prf +%%QT_MKSPECDIR%%/features/mac/toolchain.prf +%%QT_MKSPECDIR%%/features/mac/unsupported/objc_namespace.prf +%%QT_MKSPECDIR%%/features/metatypes.prf +%%QT_MKSPECDIR%%/features/moc.prf +%%QT_MKSPECDIR%%/features/no_debug_info.prf +%%QT_MKSPECDIR%%/features/plugin_bundle.prf +%%QT_MKSPECDIR%%/features/precompile_header.prf +%%QT_MKSPECDIR%%/features/qgltf.prf +%%QT_MKSPECDIR%%/features/qlalr.prf +%%QT_MKSPECDIR%%/features/qmake_use.prf +%%QT_MKSPECDIR%%/features/qml_debug.prf +%%QT_MKSPECDIR%%/features/qml_module.prf +%%QT_MKSPECDIR%%/features/qml_plugin.prf +%%QT_MKSPECDIR%%/features/qmltestcase.prf +%%QT_MKSPECDIR%%/features/qt.prf +%%QT_MKSPECDIR%%/features/qt_android_deps.prf +%%QT_MKSPECDIR%%/features/qt_app.prf +%%QT_MKSPECDIR%%/features/qt_build_config.prf +%%QT_MKSPECDIR%%/features/qt_build_extra.prf +%%QT_MKSPECDIR%%/features/qt_build_paths.prf +%%QT_MKSPECDIR%%/features/qt_clear_installs.prf +%%QT_MKSPECDIR%%/features/qt_common.prf +%%QT_MKSPECDIR%%/features/qt_config.prf +%%QT_MKSPECDIR%%/features/qt_configure.prf +%%QT_MKSPECDIR%%/features/qt_docs.prf +%%QT_MKSPECDIR%%/features/qt_docs_targets.prf +%%QT_MKSPECDIR%%/features/qt_example_installs.prf +%%QT_MKSPECDIR%%/features/qt_functions.prf +%%QT_MKSPECDIR%%/features/qt_helper_lib.prf +%%QT_MKSPECDIR%%/features/qt_installs.prf +%%QT_MKSPECDIR%%/features/qt_module.prf +%%QT_MKSPECDIR%%/features/qt_module_headers.prf +%%QT_MKSPECDIR%%/features/qt_module_pris.prf +%%QT_MKSPECDIR%%/features/qt_parts.prf +%%QT_MKSPECDIR%%/features/qt_plugin.prf +%%QT_MKSPECDIR%%/features/qt_prefix_build_check.prf +%%QT_MKSPECDIR%%/features/qt_targets.prf +%%QT_MKSPECDIR%%/features/qt_test_helper.prf +%%QT_MKSPECDIR%%/features/qt_tool.prf +%%QT_MKSPECDIR%%/features/qt_tracepoints.prf +%%QT_MKSPECDIR%%/features/resolve_config.prf +%%QT_MKSPECDIR%%/features/resolve_target.prf +%%QT_MKSPECDIR%%/features/resources.prf +%%QT_MKSPECDIR%%/features/resources_functions.prf +%%QT_MKSPECDIR%%/features/rtti.prf +%%QT_MKSPECDIR%%/features/rtti_off.prf +%%QT_MKSPECDIR%%/features/sanitizer.prf +%%QT_MKSPECDIR%%/features/silent.prf +%%QT_MKSPECDIR%%/features/simd.prf +%%QT_MKSPECDIR%%/features/spec_post.prf +%%QT_MKSPECDIR%%/features/spec_pre.prf +%%QT_MKSPECDIR%%/features/static_runtime.prf +%%QT_MKSPECDIR%%/features/testcase.prf +%%QT_MKSPECDIR%%/features/testcase_targets.prf +%%QT_MKSPECDIR%%/features/testcocoon.prf +%%QT_MKSPECDIR%%/features/testlib_defines.prf +%%QT_MKSPECDIR%%/features/toolchain.prf +%%QT_MKSPECDIR%%/features/uic.prf +%%QT_MKSPECDIR%%/features/uikit/bitcode.prf +%%QT_MKSPECDIR%%/features/uikit/default_post.prf +%%QT_MKSPECDIR%%/features/uikit/default_pre.prf +%%QT_MKSPECDIR%%/features/uikit/device_destinations.sh +%%QT_MKSPECDIR%%/features/uikit/devices.py +%%QT_MKSPECDIR%%/features/uikit/exclusive_builds_post.prf +%%QT_MKSPECDIR%%/features/uikit/gc_binaries.prf +%%QT_MKSPECDIR%%/features/uikit/qt_parts.prf +%%QT_MKSPECDIR%%/features/uikit/resolve_config.prf +%%QT_MKSPECDIR%%/features/uikit/sdk.prf +%%QT_MKSPECDIR%%/features/uikit/testcase.prf +%%QT_MKSPECDIR%%/features/uikit/testcase_targets.prf +%%QT_MKSPECDIR%%/features/uikit/watchos_coretext.prf +%%QT_MKSPECDIR%%/features/uikit/xcodebuild.mk +%%QT_MKSPECDIR%%/features/uikit/xcodebuild.prf +%%QT_MKSPECDIR%%/features/unix/bsymbolic_functions.prf +%%QT_MKSPECDIR%%/features/unix/ccache.prf +%%QT_MKSPECDIR%%/features/unix/hide_symbols.prf +%%QT_MKSPECDIR%%/features/unix/largefile.prf +%%QT_MKSPECDIR%%/features/unix/opengl.prf +%%QT_MKSPECDIR%%/features/unix/separate_debug_info.prf +%%QT_MKSPECDIR%%/features/unix/thread.prf +%%QT_MKSPECDIR%%/features/unix/x11.prf +%%QT_MKSPECDIR%%/features/unix/x11inc.prf +%%QT_MKSPECDIR%%/features/unix/x11lib.prf +%%QT_MKSPECDIR%%/features/unix/x11sm.prf +%%QT_MKSPECDIR%%/features/unsupported/testserver.prf +%%QT_MKSPECDIR%%/features/use_c_linker.prf +%%QT_MKSPECDIR%%/features/vxworks.prf +%%QT_MKSPECDIR%%/features/warn_off.prf +%%QT_MKSPECDIR%%/features/warn_on.prf +%%QT_MKSPECDIR%%/features/wasm/default_pre.prf +%%QT_MKSPECDIR%%/features/wasm/emcc_ver.prf +%%QT_MKSPECDIR%%/features/wasm/wasm.prf +%%QT_MKSPECDIR%%/features/wayland-scanner.prf +%%QT_MKSPECDIR%%/features/win32/console.prf +%%QT_MKSPECDIR%%/features/win32/default_pre.prf +%%QT_MKSPECDIR%%/features/win32/dumpcpp.prf +%%QT_MKSPECDIR%%/features/win32/idcidl.prf +%%QT_MKSPECDIR%%/features/win32/msvc_mp.prf +%%QT_MKSPECDIR%%/features/win32/opengl.prf +%%QT_MKSPECDIR%%/features/win32/qt_dll.prf +%%QT_MKSPECDIR%%/features/win32/separate_debug_info.prf +%%QT_MKSPECDIR%%/features/win32/stl.prf +%%QT_MKSPECDIR%%/features/win32/stl_off.prf +%%QT_MKSPECDIR%%/features/win32/windeployqt.prf +%%QT_MKSPECDIR%%/features/win32/windows.prf +%%QT_MKSPECDIR%%/features/win32/windows_vulkan_sdk.prf +%%QT_MKSPECDIR%%/features/xctest.prf +%%QT_MKSPECDIR%%/features/yacc.prf +%%QT_MKSPECDIR%%/freebsd-clang/qmake.conf +%%QT_MKSPECDIR%%/freebsd-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/freebsd-g++/qmake.conf +%%QT_MKSPECDIR%%/freebsd-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/haiku-g++/qmake.conf +%%QT_MKSPECDIR%%/haiku-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/hpuxi-g++-64/qmake.conf +%%QT_MKSPECDIR%%/hpuxi-g++-64/qplatformdefs.h +%%QT_MKSPECDIR%%/hurd-g++/qmake.conf +%%QT_MKSPECDIR%%/hurd-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/integrity-armv7-imx6/qmake.conf +%%QT_MKSPECDIR%%/integrity-armv7-imx6/qplatformdefs.h +%%QT_MKSPECDIR%%/integrity-armv7/qmake.conf +%%QT_MKSPECDIR%%/integrity-armv7/qplatformdefs.h +%%QT_MKSPECDIR%%/integrity-armv8-rcar/qmake.conf +%%QT_MKSPECDIR%%/integrity-armv8-rcar/qplatformdefs.h +%%QT_MKSPECDIR%%/integrity-x86/qmake.conf +%%QT_MKSPECDIR%%/integrity-x86/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-aarch64-gnu-g++/qmake.conf +%%QT_MKSPECDIR%%/linux-aarch64-gnu-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qmake.conf +%%QT_MKSPECDIR%%/linux-arm-gnueabi-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-clang-32/qmake.conf +%%QT_MKSPECDIR%%/linux-clang-32/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-clang-libc++-32/qmake.conf +%%QT_MKSPECDIR%%/linux-clang-libc++-32/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-clang-libc++/qmake.conf +%%QT_MKSPECDIR%%/linux-clang-libc++/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-clang/qmake.conf +%%QT_MKSPECDIR%%/linux-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-g++-32/qmake.conf +%%QT_MKSPECDIR%%/linux-g++-32/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-g++-64/qmake.conf +%%QT_MKSPECDIR%%/linux-g++-64/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-g++/qmake.conf +%%QT_MKSPECDIR%%/linux-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-icc-32/qmake.conf +%%QT_MKSPECDIR%%/linux-icc-32/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-icc-64/qmake.conf +%%QT_MKSPECDIR%%/linux-icc-64/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-icc-k1om/qmake.conf +%%QT_MKSPECDIR%%/linux-icc-k1om/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-icc/qmake.conf +%%QT_MKSPECDIR%%/linux-icc/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-llvm/qmake.conf +%%QT_MKSPECDIR%%/linux-llvm/qplatformdefs.h +%%QT_MKSPECDIR%%/linux-lsb-g++/qmake.conf +%%QT_MKSPECDIR%%/linux-lsb-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/lynxos-g++/qmake.conf +%%QT_MKSPECDIR%%/lynxos-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/macx-clang/Info.plist.app +%%QT_MKSPECDIR%%/macx-clang/Info.plist.dSYM.in +%%QT_MKSPECDIR%%/macx-clang/Info.plist.disable_highdpi +%%QT_MKSPECDIR%%/macx-clang/Info.plist.lib +%%QT_MKSPECDIR%%/macx-clang/qmake.conf +%%QT_MKSPECDIR%%/macx-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/macx-g++/Info.plist.app +%%QT_MKSPECDIR%%/macx-g++/Info.plist.dSYM.in +%%QT_MKSPECDIR%%/macx-g++/Info.plist.lib +%%QT_MKSPECDIR%%/macx-g++/qmake.conf +%%QT_MKSPECDIR%%/macx-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/macx-icc/Info.plist.app +%%QT_MKSPECDIR%%/macx-icc/Info.plist.dSYM.in +%%QT_MKSPECDIR%%/macx-icc/Info.plist.lib +%%QT_MKSPECDIR%%/macx-icc/qmake.conf +%%QT_MKSPECDIR%%/macx-icc/qplatformdefs.h +%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.app +%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.dSYM.in +%%QT_MKSPECDIR%%/macx-ios-clang/Info.plist.lib +%%QT_MKSPECDIR%%/macx-ios-clang/LaunchScreen.storyboard +%%QT_MKSPECDIR%%/macx-ios-clang/features/default_post.prf +%%QT_MKSPECDIR%%/macx-ios-clang/qmake.conf +%%QT_MKSPECDIR%%/macx-ios-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/macx-tvos-clang/Info.plist.app +%%QT_MKSPECDIR%%/macx-tvos-clang/Info.plist.lib +%%QT_MKSPECDIR%%/macx-tvos-clang/qmake.conf +%%QT_MKSPECDIR%%/macx-tvos-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/macx-watchos-clang/Info.plist.app +%%QT_MKSPECDIR%%/macx-watchos-clang/Info.plist.lib +%%QT_MKSPECDIR%%/macx-watchos-clang/qmake.conf +%%QT_MKSPECDIR%%/macx-watchos-clang/qplatformdefs.h +%%QT_MKSPECDIR%%/macx-xcode/QtTest.plist +%%QT_MKSPECDIR%%/macx-xcode/WorkspaceSettings.xcsettings +%%QT_MKSPECDIR%%/macx-xcode/default.xcscheme +%%QT_MKSPECDIR%%/macx-xcode/qmake.conf +%%QT_MKSPECDIR%%/macx-xcode/qplatformdefs.h +%%QT_MKSPECDIR%%/modules/README +%%QT_MKSPECDIR%%/modules/qt_lib_concurrent.pri +%%QT_MKSPECDIR%%/modules/qt_lib_concurrent_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_core.pri +%%QT_MKSPECDIR%%/modules/qt_lib_core_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_dbus.pri +%%QT_MKSPECDIR%%/modules/qt_lib_dbus_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_devicediscovery_support_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_fb_support_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_gui.pri +%%QT_MKSPECDIR%%/modules/qt_lib_gui_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_input_support_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_kms_support_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_network.pri +%%QT_MKSPECDIR%%/modules/qt_lib_network_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_opengl.pri +%%QT_MKSPECDIR%%/modules/qt_lib_opengl_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_openglwidgets.pri +%%QT_MKSPECDIR%%/modules/qt_lib_openglwidgets_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_printsupport.pri +%%QT_MKSPECDIR%%/modules/qt_lib_printsupport_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_sql.pri +%%QT_MKSPECDIR%%/modules/qt_lib_sql_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_testlib.pri +%%QT_MKSPECDIR%%/modules/qt_lib_testlib_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_widgets.pri +%%QT_MKSPECDIR%%/modules/qt_lib_widgets_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_xcb_qpa_lib_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_xml.pri +%%QT_MKSPECDIR%%/modules/qt_lib_xml_private.pri +%%QT_MKSPECDIR%%/netbsd-g++/qmake.conf +%%QT_MKSPECDIR%%/netbsd-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/openbsd-g++/qmake.conf +%%QT_MKSPECDIR%%/openbsd-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/qconfig.pri +%%QT_MKSPECDIR%%/qmodule.pri +%%QT_MKSPECDIR%%/qnx-aarch64le-qcc/qmake.conf +%%QT_MKSPECDIR%%/qnx-aarch64le-qcc/qplatformdefs.h +%%QT_MKSPECDIR%%/qnx-armle-v7-qcc/qmake.conf +%%QT_MKSPECDIR%%/qnx-armle-v7-qcc/qplatformdefs.h +%%QT_MKSPECDIR%%/qnx-x86-64-qcc/qmake.conf +%%QT_MKSPECDIR%%/qnx-x86-64-qcc/qplatformdefs.h +%%QT_MKSPECDIR%%/qnx-x86-qcc/qmake.conf +%%QT_MKSPECDIR%%/qnx-x86-qcc/qplatformdefs.h +%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qmake.conf +%%QT_MKSPECDIR%%/solaris-cc-64-stlport/qplatformdefs.h +%%QT_MKSPECDIR%%/solaris-cc-64/qmake.conf +%%QT_MKSPECDIR%%/solaris-cc-64/qplatformdefs.h +%%QT_MKSPECDIR%%/solaris-cc-stlport/qmake.conf +%%QT_MKSPECDIR%%/solaris-cc-stlport/qplatformdefs.h +%%QT_MKSPECDIR%%/solaris-cc/qmake.conf +%%QT_MKSPECDIR%%/solaris-cc/qplatformdefs.h +%%QT_MKSPECDIR%%/solaris-g++-64/qmake.conf +%%QT_MKSPECDIR%%/solaris-g++-64/qplatformdefs.h +%%QT_MKSPECDIR%%/solaris-g++/qmake.conf +%%QT_MKSPECDIR%%/solaris-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qmake.conf +%%QT_MKSPECDIR%%/unsupported/linux-host-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qmake.conf +%%QT_MKSPECDIR%%/unsupported/linux-scratchbox2-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/nacl-g++/qmake.conf +%%QT_MKSPECDIR%%/unsupported/nacl-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/nacl64-g++/qmake.conf +%%QT_MKSPECDIR%%/unsupported/nacl64-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qmake.conf +%%QT_MKSPECDIR%%/unsupported/qnx-X11-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qmake.conf +%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-dcc/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qmake.conf +%%QT_MKSPECDIR%%/unsupported/vxworks-ppc-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qmake.conf +%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-dcc/qplatformdefs.h +%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qmake.conf +%%QT_MKSPECDIR%%/unsupported/vxworks-simpentium-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/wasm-emscripten/qmake.conf +%%QT_MKSPECDIR%%/wasm-emscripten/qplatformdefs.h +%%QT_MKSPECDIR%%/win32-arm64-msvc/qmake.conf +%%QT_MKSPECDIR%%/win32-arm64-msvc/qplatformdefs.h +%%QT_MKSPECDIR%%/win32-clang-g++/qmake.conf +%%QT_MKSPECDIR%%/win32-clang-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/win32-clang-msvc/qmake.conf +%%QT_MKSPECDIR%%/win32-clang-msvc/qplatformdefs.h +%%QT_MKSPECDIR%%/win32-g++/qmake.conf +%%QT_MKSPECDIR%%/win32-g++/qplatformdefs.h +%%QT_MKSPECDIR%%/win32-icc-k1om/qmake.conf +%%QT_MKSPECDIR%%/win32-icc-k1om/qplatformdefs.h +%%QT_MKSPECDIR%%/win32-icc/qmake.conf +%%QT_MKSPECDIR%%/win32-icc/qplatformdefs.h +%%QT_MKSPECDIR%%/win32-msvc/qmake.conf +%%QT_MKSPECDIR%%/win32-msvc/qplatformdefs.h +%%QT_PLUGINDIR%%/generic/libqevdevkeyboardplugin.so +%%QT_PLUGINDIR%%/generic/libqevdevmouseplugin.so +%%QT_PLUGINDIR%%/generic/libqevdevtabletplugin.so +%%QT_PLUGINDIR%%/generic/libqevdevtouchplugin.so +%%QT_PLUGINDIR%%/generic/libqlibinputplugin.so +%%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so +%%QT_PLUGINDIR%%/imageformats/libqgif.so +%%QT_PLUGINDIR%%/imageformats/libqico.so +%%QT_PLUGINDIR%%/imageformats/libqjpeg.so +%%QT_PLUGINDIR%%/networkinformation/libqglib.so +%%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so +%%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so +%%QT_PLUGINDIR%%/platforms/libqminimal.so +%%QT_PLUGINDIR%%/platforms/libqoffscreen.so +%%QT_PLUGINDIR%%/platforms/libqvkkhrdisplay.so +%%QT_PLUGINDIR%%/platforms/libqvnc.so +%%QT_PLUGINDIR%%/platforms/libqxcb.so +%%QT_PLUGINDIR%%/platformthemes/libqgtk3.so +%%QT_PLUGINDIR%%/platformthemes/libqxdgdesktopportal.so +%%QT_PLUGINDIR%%/printsupport/libcupsprintersupport.so +%%SQLITE%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlite.so +%%MYSQL%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlmysql.so +%%ODBC%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlodbc.so +%%PSQL%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlpsql.so +%%QT_PLUGINDIR%%/tls/libqcertonlybackend.so +%%QT_PLUGINDIR%%/tls/libqopensslbackend.so +%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so +%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so +libdata/pkgconfig/Qt6Concurrent.pc +libdata/pkgconfig/Qt6Core.pc +libdata/pkgconfig/Qt6DBus.pc +libdata/pkgconfig/Qt6Gui.pc +libdata/pkgconfig/Qt6Network.pc +libdata/pkgconfig/Qt6OpenGL.pc +libdata/pkgconfig/Qt6OpenGLWidgets.pc +libdata/pkgconfig/Qt6Platform.pc +libdata/pkgconfig/Qt6PrintSupport.pc +libdata/pkgconfig/Qt6Sql.pc +libdata/pkgconfig/Qt6Test.pc +libdata/pkgconfig/Qt6Widgets.pc +libdata/pkgconfig/Qt6Xml.pc +%%QT_LIBEXECDIR%%/android_emulator_launcher.sh +%%QT_LIBEXECDIR%%/cmake_automoc_parser +%%QT_LIBEXECDIR%%/ensure_pro_file.cmake +%%QT_LIBEXECDIR%%/moc +%%QT_LIBEXECDIR%%/qlalr +%%QT_LIBEXECDIR%%/qt-internal-configure-tests +%%QT_LIBEXECDIR%%/qt-testrunner.py +%%QT_LIBEXECDIR%%/qvkgen +%%QT_LIBEXECDIR%%/rcc +%%QT_LIBEXECDIR%%/syncqt.pl +%%QT_LIBEXECDIR%%/tracegen +%%QT_LIBEXECDIR%%/uic +%%QT_DOCDIR%%/config/exampleurl-qt3d.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtactiveqt.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtandroidextras.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtbase.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtcharts.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtconnectivity.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtdatavis3d.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtdeclarative.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtdoc.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtgamepad.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtgraphicaleffects.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtimageformats.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtlocation.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtlottie.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtmacextras.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtmultimedia.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtnetworkauth.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtpurchasing.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtquickcontrols.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtquickcontrols2.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtremoteobjects.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtscript.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtscxml.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtsensors.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtserialbus.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtserialport.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtspeech.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtsvg.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qttools.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtvirtualkeyboard.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtwayland.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtwebchannel.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtwebengine.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtwebsockets.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtwebview.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtwinextras.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtx11extras.qdocconf +%%QT_DOCDIR%%/config/exampleurl-qtxmlpatterns.qdocconf +%%QT_DOCDIR%%/global/compat.qdocconf +%%QT_DOCDIR%%/global/config.qdocconf +%%QT_DOCDIR%%/global/externalsites.qdocconf +%%QT_DOCDIR%%/global/externalsites/external-resources.qdoc +%%QT_DOCDIR%%/global/externalsites/qt-webpages.qdoc +%%QT_DOCDIR%%/global/externalsites/qtcreator.qdoc +%%QT_DOCDIR%%/global/externalsites/qtdesignstudio.qdoc +%%QT_DOCDIR%%/global/externalsites/rfc.qdoc +%%QT_DOCDIR%%/global/fileextensions.qdocconf +%%QT_DOCDIR%%/global/html-config.qdocconf +%%QT_DOCDIR%%/global/html-footer-online.qdocconf +%%QT_DOCDIR%%/global/html-footer.qdocconf +%%QT_DOCDIR%%/global/html-header-offline.qdocconf +%%QT_DOCDIR%%/global/html-header-online.qdocconf +%%QT_DOCDIR%%/global/htmltabs.qdocconf +%%QT_DOCDIR%%/global/includes-online/search.qdoc +%%QT_DOCDIR%%/global/includes/cli-build-cmake.qdocinc +%%QT_DOCDIR%%/global/includes/examples-run.qdocinc +%%QT_DOCDIR%%/global/includes/module-use.qdocinc +%%QT_DOCDIR%%/global/includes/standardpath/functiondocs.qdocinc +%%QT_DOCDIR%%/global/macros-online.qdocconf +%%QT_DOCDIR%%/global/macros.qdocconf +%%QT_DOCDIR%%/global/manifest-meta.qdocconf +%%QT_DOCDIR%%/global/qt-cpp-defines.qdocconf +%%QT_DOCDIR%%/global/qt-html-templates-offline-simple.qdocconf +%%QT_DOCDIR%%/global/qt-html-templates-offline.qdocconf +%%QT_DOCDIR%%/global/qt-html-templates-online.qdocconf +%%QT_DOCDIR%%/global/qt-module-defaults-offline.qdocconf +%%QT_DOCDIR%%/global/qt-module-defaults-online-commercial.qdocconf +%%QT_DOCDIR%%/global/qt-module-defaults-online.qdocconf +%%QT_DOCDIR%%/global/qt-module-defaults.qdocconf +%%QT_DOCDIR%%/global/template/images/Qt-dark_gradient.png +%%QT_DOCDIR%%/global/template/images/Qt-footer-bg.jpg +%%QT_DOCDIR%%/global/template/images/Qt-footer_shadow.png +%%QT_DOCDIR%%/global/template/images/Qt-gradient.png +%%QT_DOCDIR%%/global/template/images/Qt-header-bg.jpg +%%QT_DOCDIR%%/global/template/images/Qt-logo.png +%%QT_DOCDIR%%/global/template/images/arrow.png +%%QT_DOCDIR%%/global/template/images/arrow_bc.png +%%QT_DOCDIR%%/global/template/images/arrow_down.png +%%QT_DOCDIR%%/global/template/images/bg_l.png +%%QT_DOCDIR%%/global/template/images/bg_l_blank.png +%%QT_DOCDIR%%/global/template/images/bg_ll_blank.png +%%QT_DOCDIR%%/global/template/images/bg_r.png +%%QT_DOCDIR%%/global/template/images/bg_ul_blank.png +%%QT_DOCDIR%%/global/template/images/bgrContent.png +%%QT_DOCDIR%%/global/template/images/blu_dot.png +%%QT_DOCDIR%%/global/template/images/box_bg.png +%%QT_DOCDIR%%/global/template/images/breadcrumb.png +%%QT_DOCDIR%%/global/template/images/btn_next.png +%%QT_DOCDIR%%/global/template/images/btn_prev.png +%%QT_DOCDIR%%/global/template/images/bullet_dn.png +%%QT_DOCDIR%%/global/template/images/bullet_gt.png +%%QT_DOCDIR%%/global/template/images/bullet_sq.png +%%QT_DOCDIR%%/global/template/images/bullet_up.png +%%QT_DOCDIR%%/global/template/images/feedbackground.png +%%QT_DOCDIR%%/global/template/images/header_bg.png +%%QT_DOCDIR%%/global/template/images/home.png +%%QT_DOCDIR%%/global/template/images/horBar.png +%%QT_DOCDIR%%/global/template/images/ico_note.png +%%QT_DOCDIR%%/global/template/images/ico_note_attention.png +%%QT_DOCDIR%%/global/template/images/ico_out.png +%%QT_DOCDIR%%/global/template/images/logo.png +%%QT_DOCDIR%%/global/template/images/page.png +%%QT_DOCDIR%%/global/template/images/page_bg.png +%%QT_DOCDIR%%/global/template/images/spinner.gif +%%QT_DOCDIR%%/global/template/images/sprites-combined.png +%%QT_DOCDIR%%/global/template/scripts/extras.js +%%QT_DOCDIR%%/global/template/scripts/main.js +%%QT_DOCDIR%%/global/template/style/cookie-confirm.css +%%QT_DOCDIR%%/global/template/style/cookiebar-x.png +%%QT_DOCDIR%%/global/template/style/doc_search.png +%%QT_DOCDIR%%/global/template/style/gsc.css +%%QT_DOCDIR%%/global/template/style/htmltabs.css +%%QT_DOCDIR%%/global/template/style/icomoon.eot +%%QT_DOCDIR%%/global/template/style/icomoon.svg +%%QT_DOCDIR%%/global/template/style/icomoon.ttf +%%QT_DOCDIR%%/global/template/style/icomoon.woff +%%QT_DOCDIR%%/global/template/style/list_arrow.png +%%QT_DOCDIR%%/global/template/style/list_expand.png +%%QT_DOCDIR%%/global/template/style/offline-simple.css +%%QT_DOCDIR%%/global/template/style/offline.css +%%QT_DOCDIR%%/global/template/style/online.css +%%QT_DOCDIR%%/global/template/style/theqtcompany.png +%%QT_DATADIR%%/modules/Concurrent.json +%%QT_DATADIR%%/modules/Core.json +%%QT_DATADIR%%/modules/DBus.json +%%QT_DATADIR%%/modules/DeviceDiscoverySupportPrivate.json +%%QT_DATADIR%%/modules/FbSupportPrivate.json +%%QT_DATADIR%%/modules/Gui.json +%%QT_DATADIR%%/modules/InputSupportPrivate.json +%%QT_DATADIR%%/modules/KmsSupportPrivate.json +%%QT_DATADIR%%/modules/Network.json +%%QT_DATADIR%%/modules/OpenGL.json +%%QT_DATADIR%%/modules/OpenGLWidgets.json +%%QT_DATADIR%%/modules/PrintSupport.json +%%QT_DATADIR%%/modules/Sql.json +%%QT_DATADIR%%/modules/Test.json +%%QT_DATADIR%%/modules/Widgets.json +%%QT_DATADIR%%/modules/XcbQpaPrivate.json +%%QT_DATADIR%%/modules/Xml.json +@dir lib/cmake/Qt6/QtBuildInternals/QtStandaloneTestTemplateProject +@dir lib/cmake/Qt6/ios +@dir lib/cmake/Qt6/macos +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/devel/qt6-tools/Makefile b/devel/qt6-tools/Makefile new file mode 100644 index 000000000000..a4813a4690c9 --- /dev/null +++ b/devel/qt6-tools/Makefile @@ -0,0 +1,45 @@ +PORTNAME= tools +DISTVERSION= ${QT6_VERSION} +CATEGORIES= devel +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt declarative framework for dynamic user interfaces + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers \ + llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} +LIB_DEPENDS= libvulkan.so:graphics/vulkan-loader \ + libLLVM.so:devel/llvm${LLVM_DEFAULT} \ + libdouble-conversion.so:devel/double-conversion \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicudata.so:devel/icu \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome python:build xorg \ + qt-dist:6 +USE_GL= gl +USE_GNOME= glib20 +USE_QT= base declarative +USE_XORG= x11 xau xcb xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +CMAKE_ARGS+= -DClang_DIR:PATH="${LOCALBASE}/llvm${LLVM_DEFAULT}/lib/cmake/clang" \ + -DLLVM_DIR:PATH="${LOCALBASE}/llvm${LLVM_DEFAULT}/lib/cmake/llvm" + +post-install: + # Install symlinks for user-facing tools + ${REINPLACE_CMD} -e "s#^#${STAGEDIR}#" -e "s# # ${STAGEDIR}#" \ + ${WRKDIR}/.build/user_facing_tool_links.txt + while read t; do \ + ${RLN} $$t; \ + done <${WRKDIR}/.build/user_facing_tool_links.txt + +.include diff --git a/devel/qt6-tools/distinfo b/devel/qt6-tools/distinfo new file mode 100644 index 000000000000..b8dd6ec5a58b --- /dev/null +++ b/devel/qt6-tools/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482598 +SHA256 (KDE/Qt/6.3.1/qttools-everywhere-src-6.3.1.tar.xz) = c412750f2aa3beb93fce5f30517c607f55daaeb7d0407af206a8adf917e126c1 +SIZE (KDE/Qt/6.3.1/qttools-everywhere-src-6.3.1.tar.xz) = 8628880 diff --git a/devel/qt6-tools/pkg-descr b/devel/qt6-tools/pkg-descr new file mode 100644 index 000000000000..06bb1d9109d5 --- /dev/null +++ b/devel/qt6-tools/pkg-descr @@ -0,0 +1,7 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Qt Quick is a collection of technologies that are designed to help +developers create intuitive, modern, and fluid user interfaces. + +WWW: http://qt-project.org diff --git a/devel/qt6-tools/pkg-plist b/devel/qt6-tools/pkg-plist new file mode 100644 index 000000000000..79d61d18cdd0 --- /dev/null +++ b/devel/qt6-tools/pkg-plist @@ -0,0 +1,430 @@ +bin/assistant6 +bin/designer6 +bin/linguist6 +bin/pixeltool6 +bin/qdbus6 +bin/qdbusviewer6 +bin/qdistancefieldgenerator6 +bin/qdoc6 +bin/qtdiag6 +bin/qtplugininfo6 +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/abstractdialoggui_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/abstractintrospection_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actioneditor_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actionprovider_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/actionrepository_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/codedialog_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/connectionedit_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/csshighlighter_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/deviceprofile_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/dialoggui_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/extensionfactory_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formbuilderextra_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formlayoutmenu_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/formwindowbase_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/grid_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/gridpanel_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/htmlhighlighter_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/iconloader_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/iconselector_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/invisible_widget_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/layout_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/layoutinfo_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/lib_pch.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/metadatabase_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/morphmenu_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/newactiondialog_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/newformwidget_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/orderdialog_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/plaintexteditor_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/plugindialog_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/pluginmanager_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/previewconfigurationwidget_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/previewmanager_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/promotionmodel_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/promotiontaskmenu_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/properties_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/propertylineedit_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_command2_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_command_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_dnditem_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_dockwidget_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formbuilder_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formeditorcommand_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formwindowcommand_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_formwindowmanager_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_introspection_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_membersheet_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_menu_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_menubar_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_objectinspector_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_promotion_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_promotiondialog_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertycommand_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertyeditor_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_propertysheet_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_qsettings_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_stackedbox_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_tabwidget_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_taskmenu_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_toolbar_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_toolbox_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_utils_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widget_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widgetbox_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qdesigner_widgetitem_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qlayout_widget_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qsimpleresource_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourceeditordialog_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourcemodel_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/qtresourceview_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/rcc_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/resourcebuilder_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/richtexteditor_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/selectsignaldialog_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_enums_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_global_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/shared_settings_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/sheet_delegate_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/signalslotdialog_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/spacer_widget_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/stylesheeteditor_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/textbuilder_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/textpropertyeditor_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/ui4_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/widgetdatabase_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/widgetfactory_p.h +%%QT_INCDIR%%/QtDesigner/%%FULLVER%%/QtDesigner/private/zoomwidget_p.h +%%QT_INCDIR%%/QtDesigner/QAbstractExtensionFactory +%%QT_INCDIR%%/QtDesigner/QAbstractExtensionManager +%%QT_INCDIR%%/QtDesigner/QAbstractFormBuilder +%%QT_INCDIR%%/QtDesigner/QDesignerActionEditorInterface +%%QT_INCDIR%%/QtDesigner/QDesignerComponents +%%QT_INCDIR%%/QtDesigner/QDesignerContainerExtension +%%QT_INCDIR%%/QtDesigner/QDesignerCustomWidgetCollectionInterface +%%QT_INCDIR%%/QtDesigner/QDesignerCustomWidgetInterface +%%QT_INCDIR%%/QtDesigner/QDesignerDnDItemInterface +%%QT_INCDIR%%/QtDesigner/QDesignerDynamicPropertySheetExtension +%%QT_INCDIR%%/QtDesigner/QDesignerExportWidget +%%QT_INCDIR%%/QtDesigner/QDesignerExtraInfoExtension +%%QT_INCDIR%%/QtDesigner/QDesignerFormEditorInterface +%%QT_INCDIR%%/QtDesigner/QDesignerFormEditorPluginInterface +%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowCursorInterface +%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowInterface +%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowManagerInterface +%%QT_INCDIR%%/QtDesigner/QDesignerFormWindowToolInterface +%%QT_INCDIR%%/QtDesigner/QDesignerIntegration +%%QT_INCDIR%%/QtDesigner/QDesignerIntegrationInterface +%%QT_INCDIR%%/QtDesigner/QDesignerLanguageExtension +%%QT_INCDIR%%/QtDesigner/QDesignerLayoutDecorationExtension +%%QT_INCDIR%%/QtDesigner/QDesignerMemberSheetExtension +%%QT_INCDIR%%/QtDesigner/QDesignerMetaDataBaseInterface +%%QT_INCDIR%%/QtDesigner/QDesignerMetaDataBaseItemInterface +%%QT_INCDIR%%/QtDesigner/QDesignerNewFormWidgetInterface +%%QT_INCDIR%%/QtDesigner/QDesignerObjectInspectorInterface +%%QT_INCDIR%%/QtDesigner/QDesignerOptionsPageInterface +%%QT_INCDIR%%/QtDesigner/QDesignerPromotionInterface +%%QT_INCDIR%%/QtDesigner/QDesignerPropertyEditorInterface +%%QT_INCDIR%%/QtDesigner/QDesignerPropertySheetExtension +%%QT_INCDIR%%/QtDesigner/QDesignerResourceBrowserInterface +%%QT_INCDIR%%/QtDesigner/QDesignerSettingsInterface +%%QT_INCDIR%%/QtDesigner/QDesignerTaskMenuExtension +%%QT_INCDIR%%/QtDesigner/QDesignerWidgetBoxInterface +%%QT_INCDIR%%/QtDesigner/QDesignerWidgetDataBaseInterface +%%QT_INCDIR%%/QtDesigner/QDesignerWidgetDataBaseItemInterface +%%QT_INCDIR%%/QtDesigner/QDesignerWidgetFactoryInterface +%%QT_INCDIR%%/QtDesigner/QExtensionFactory +%%QT_INCDIR%%/QtDesigner/QExtensionManager +%%QT_INCDIR%%/QtDesigner/QFormBuilder +%%QT_INCDIR%%/QtDesigner/QtDesigner +%%QT_INCDIR%%/QtDesigner/QtDesignerDepends +%%QT_INCDIR%%/QtDesigner/QtDesignerVersion +%%QT_INCDIR%%/QtDesigner/abstractactioneditor.h +%%QT_INCDIR%%/QtDesigner/abstractdnditem.h +%%QT_INCDIR%%/QtDesigner/abstractformbuilder.h +%%QT_INCDIR%%/QtDesigner/abstractformeditor.h +%%QT_INCDIR%%/QtDesigner/abstractformeditorplugin.h +%%QT_INCDIR%%/QtDesigner/abstractformwindow.h +%%QT_INCDIR%%/QtDesigner/abstractformwindowcursor.h +%%QT_INCDIR%%/QtDesigner/abstractformwindowmanager.h +%%QT_INCDIR%%/QtDesigner/abstractformwindowtool.h +%%QT_INCDIR%%/QtDesigner/abstractintegration.h +%%QT_INCDIR%%/QtDesigner/abstractlanguage.h +%%QT_INCDIR%%/QtDesigner/abstractmetadatabase.h +%%QT_INCDIR%%/QtDesigner/abstractnewformwidget.h +%%QT_INCDIR%%/QtDesigner/abstractobjectinspector.h +%%QT_INCDIR%%/QtDesigner/abstractoptionspage.h +%%QT_INCDIR%%/QtDesigner/abstractpromotioninterface.h +%%QT_INCDIR%%/QtDesigner/abstractpropertyeditor.h +%%QT_INCDIR%%/QtDesigner/abstractresourcebrowser.h +%%QT_INCDIR%%/QtDesigner/abstractsettings.h +%%QT_INCDIR%%/QtDesigner/abstractwidgetbox.h +%%QT_INCDIR%%/QtDesigner/abstractwidgetdatabase.h +%%QT_INCDIR%%/QtDesigner/abstractwidgetfactory.h +%%QT_INCDIR%%/QtDesigner/container.h +%%QT_INCDIR%%/QtDesigner/customwidget.h +%%QT_INCDIR%%/QtDesigner/default_extensionfactory.h +%%QT_INCDIR%%/QtDesigner/dynamicpropertysheet.h +%%QT_INCDIR%%/QtDesigner/extension.h +%%QT_INCDIR%%/QtDesigner/extension_global.h +%%QT_INCDIR%%/QtDesigner/extrainfo.h +%%QT_INCDIR%%/QtDesigner/formbuilder.h +%%QT_INCDIR%%/QtDesigner/layoutdecoration.h +%%QT_INCDIR%%/QtDesigner/membersheet.h +%%QT_INCDIR%%/QtDesigner/propertysheet.h +%%QT_INCDIR%%/QtDesigner/qdesigner_components.h +%%QT_INCDIR%%/QtDesigner/qdesigner_components_global.h +%%QT_INCDIR%%/QtDesigner/qdesignerexportwidget.h +%%QT_INCDIR%%/QtDesigner/qextensionmanager.h +%%QT_INCDIR%%/QtDesigner/qtdesignerversion.h +%%QT_INCDIR%%/QtDesigner/sdk_global.h +%%QT_INCDIR%%/QtDesigner/taskmenu.h +%%QT_INCDIR%%/QtDesigner/uilib_global.h +%%QT_INCDIR%%/QtDesignerComponents/%%FULLVER%%/QtDesignerComponents/private/lib_pch.h +%%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponents +%%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponentsDepends +%%QT_INCDIR%%/QtDesignerComponents/QtDesignerComponentsVersion +%%QT_INCDIR%%/QtDesignerComponents/qtdesignercomponentsversion.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qfilternamedialog_p.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpcollectionhandler_p.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpdbreader_p.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpengine_p.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpfiltersettings_p.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindexreader_default_p.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindexreader_p.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qhelpsearchindexwriter_default_p.h +%%QT_INCDIR%%/QtHelp/%%FULLVER%%/QtHelp/private/qoptionswidget_p.h +%%QT_INCDIR%%/QtHelp/QCompressedHelpInfo +%%QT_INCDIR%%/QtHelp/QHelpContentItem +%%QT_INCDIR%%/QtHelp/QHelpContentModel +%%QT_INCDIR%%/QtHelp/QHelpContentWidget +%%QT_INCDIR%%/QtHelp/QHelpEngine +%%QT_INCDIR%%/QtHelp/QHelpEngineCore +%%QT_INCDIR%%/QtHelp/QHelpFilterData +%%QT_INCDIR%%/QtHelp/QHelpFilterEngine +%%QT_INCDIR%%/QtHelp/QHelpFilterSettingsWidget +%%QT_INCDIR%%/QtHelp/QHelpGlobal +%%QT_INCDIR%%/QtHelp/QHelpIndexModel +%%QT_INCDIR%%/QtHelp/QHelpIndexWidget +%%QT_INCDIR%%/QtHelp/QHelpLink +%%QT_INCDIR%%/QtHelp/QHelpSearchEngine +%%QT_INCDIR%%/QtHelp/QHelpSearchQuery +%%QT_INCDIR%%/QtHelp/QHelpSearchQueryWidget +%%QT_INCDIR%%/QtHelp/QHelpSearchResult +%%QT_INCDIR%%/QtHelp/QHelpSearchResultWidget +%%QT_INCDIR%%/QtHelp/QtHelp +%%QT_INCDIR%%/QtHelp/QtHelpDepends +%%QT_INCDIR%%/QtHelp/QtHelpVersion +%%QT_INCDIR%%/QtHelp/qcompressedhelpinfo.h +%%QT_INCDIR%%/QtHelp/qhelp_global.h +%%QT_INCDIR%%/QtHelp/qhelpcontentwidget.h +%%QT_INCDIR%%/QtHelp/qhelpengine.h +%%QT_INCDIR%%/QtHelp/qhelpenginecore.h +%%QT_INCDIR%%/QtHelp/qhelpfilterdata.h +%%QT_INCDIR%%/QtHelp/qhelpfilterengine.h +%%QT_INCDIR%%/QtHelp/qhelpfiltersettingswidget.h +%%QT_INCDIR%%/QtHelp/qhelpindexwidget.h +%%QT_INCDIR%%/QtHelp/qhelplink.h +%%QT_INCDIR%%/QtHelp/qhelpsearchengine.h +%%QT_INCDIR%%/QtHelp/qhelpsearchquerywidget.h +%%QT_INCDIR%%/QtHelp/qhelpsearchresultwidget.h +%%QT_INCDIR%%/QtHelp/qthelpversion.h +%%QT_INCDIR%%/QtTools/%%FULLVER%%/QtTools/private/qttools-config_p.h +%%QT_INCDIR%%/QtTools/QtTools +%%QT_INCDIR%%/QtTools/QtToolsDepends +%%QT_INCDIR%%/QtTools/QtToolsVersion +%%QT_INCDIR%%/QtTools/qttools-config.h +%%QT_INCDIR%%/QtTools/qttoolsversion.h +%%QT_INCDIR%%/QtUiPlugin/QDesignerCustomWidgetCollectionInterface +%%QT_INCDIR%%/QtUiPlugin/QDesignerCustomWidgetInterface +%%QT_INCDIR%%/QtUiPlugin/QDesignerExportWidget +%%QT_INCDIR%%/QtUiPlugin/QtUiPlugin +%%QT_INCDIR%%/QtUiPlugin/QtUiPluginDepends +%%QT_INCDIR%%/QtUiPlugin/QtUiPluginVersion +%%QT_INCDIR%%/QtUiPlugin/customwidget.h +%%QT_INCDIR%%/QtUiPlugin/qdesignerexportwidget.h +%%QT_INCDIR%%/QtUiPlugin/qtuipluginversion.h +%%QT_INCDIR%%/QtUiTools/%%FULLVER%%/QtUiTools/private/quiloader_p.h +%%QT_INCDIR%%/QtUiTools/QUiLoader +%%QT_INCDIR%%/QtUiTools/QtUiTools +%%QT_INCDIR%%/QtUiTools/QtUiToolsDepends +%%QT_INCDIR%%/QtUiTools/QtUiToolsVersion +%%QT_INCDIR%%/QtUiTools/qtuitoolsglobal.h +%%QT_INCDIR%%/QtUiTools/qtuitoolsversion.h +%%QT_INCDIR%%/QtUiTools/quiloader.h +lib/cmake/Qt6/FindWrapLibClang.cmake +lib/cmake/Qt6BuildInternals/StandaloneTests/QtToolsTestsConfig.cmake +lib/cmake/Qt6Designer/Qt6DesignerAdditionalTargetInfo.cmake +lib/cmake/Qt6Designer/Qt6DesignerConfig.cmake +lib/cmake/Qt6Designer/Qt6DesignerConfigVersion.cmake +lib/cmake/Qt6Designer/Qt6DesignerConfigVersionImpl.cmake +lib/cmake/Qt6Designer/Qt6DesignerDependencies.cmake +lib/cmake/Qt6Designer/Qt6DesignerTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Designer/Qt6DesignerTargets.cmake +lib/cmake/Qt6Designer/Qt6DesignerVersionlessTargets.cmake +lib/cmake/Qt6Designer/Qt6QQuickWidgetPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Designer/Qt6QQuickWidgetPluginConfig.cmake +lib/cmake/Qt6Designer/Qt6QQuickWidgetPluginConfigVersion.cmake +lib/cmake/Qt6Designer/Qt6QQuickWidgetPluginConfigVersionImpl.cmake +lib/cmake/Qt6Designer/Qt6QQuickWidgetPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Designer/Qt6QQuickWidgetPluginTargets.cmake +lib/cmake/Qt6DesignerComponentsPrivate/Qt6DesignerComponentsPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6DesignerComponentsPrivate/Qt6DesignerComponentsPrivateConfig.cmake +lib/cmake/Qt6DesignerComponentsPrivate/Qt6DesignerComponentsPrivateConfigVersion.cmake +lib/cmake/Qt6DesignerComponentsPrivate/Qt6DesignerComponentsPrivateConfigVersionImpl.cmake +lib/cmake/Qt6DesignerComponentsPrivate/Qt6DesignerComponentsPrivateDependencies.cmake +lib/cmake/Qt6DesignerComponentsPrivate/Qt6DesignerComponentsPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6DesignerComponentsPrivate/Qt6DesignerComponentsPrivateTargets.cmake +lib/cmake/Qt6DesignerComponentsPrivate/Qt6DesignerComponentsPrivateVersionlessTargets.cmake +lib/cmake/Qt6Help/Qt6HelpAdditionalTargetInfo.cmake +lib/cmake/Qt6Help/Qt6HelpConfig.cmake +lib/cmake/Qt6Help/Qt6HelpConfigVersion.cmake +lib/cmake/Qt6Help/Qt6HelpConfigVersionImpl.cmake +lib/cmake/Qt6Help/Qt6HelpDependencies.cmake +lib/cmake/Qt6Help/Qt6HelpTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Help/Qt6HelpTargets.cmake +lib/cmake/Qt6Help/Qt6HelpVersionlessTargets.cmake +lib/cmake/Qt6Linguist/Qt6LinguistAdditionalTargetInfo.cmake +lib/cmake/Qt6Linguist/Qt6LinguistConfig.cmake +lib/cmake/Qt6Linguist/Qt6LinguistConfigVersion.cmake +lib/cmake/Qt6Linguist/Qt6LinguistConfigVersionImpl.cmake +lib/cmake/Qt6Linguist/Qt6LinguistDependencies.cmake +lib/cmake/Qt6Linguist/Qt6LinguistTargets.cmake +lib/cmake/Qt6Linguist/Qt6LinguistVersionlessTargets.cmake +lib/cmake/Qt6LinguistTools/GenerateLUpdateProject.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfig.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersion.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsConfigVersionImpl.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsDependencies.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsMacros.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsTargets.cmake +lib/cmake/Qt6LinguistTools/Qt6LinguistToolsVersionlessTargets.cmake +lib/cmake/Qt6Tools/Qt6ToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6Tools/Qt6ToolsConfig.cmake +lib/cmake/Qt6Tools/Qt6ToolsConfigVersion.cmake +lib/cmake/Qt6Tools/Qt6ToolsConfigVersionImpl.cmake +lib/cmake/Qt6Tools/Qt6ToolsDependencies.cmake +lib/cmake/Qt6Tools/Qt6ToolsTargets.cmake +lib/cmake/Qt6Tools/Qt6ToolsVersionlessTargets.cmake +lib/cmake/Qt6ToolsTools/Qt6ToolsToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6ToolsTools/Qt6ToolsToolsConfig.cmake +lib/cmake/Qt6ToolsTools/Qt6ToolsToolsConfigVersion.cmake +lib/cmake/Qt6ToolsTools/Qt6ToolsToolsConfigVersionImpl.cmake +lib/cmake/Qt6ToolsTools/Qt6ToolsToolsDependencies.cmake +lib/cmake/Qt6ToolsTools/Qt6ToolsToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6ToolsTools/Qt6ToolsToolsTargets.cmake +lib/cmake/Qt6ToolsTools/Qt6ToolsToolsVersionlessTargets.cmake +lib/cmake/Qt6UiPlugin/Qt6UiPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6UiPlugin/Qt6UiPluginConfig.cmake +lib/cmake/Qt6UiPlugin/Qt6UiPluginConfigVersion.cmake +lib/cmake/Qt6UiPlugin/Qt6UiPluginConfigVersionImpl.cmake +lib/cmake/Qt6UiPlugin/Qt6UiPluginDependencies.cmake +lib/cmake/Qt6UiPlugin/Qt6UiPluginTargets.cmake +lib/cmake/Qt6UiPlugin/Qt6UiPluginVersionlessTargets.cmake +lib/cmake/Qt6UiTools/Qt6UiToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6UiTools/Qt6UiToolsConfig.cmake +lib/cmake/Qt6UiTools/Qt6UiToolsConfigVersion.cmake +lib/cmake/Qt6UiTools/Qt6UiToolsConfigVersionImpl.cmake +lib/cmake/Qt6UiTools/Qt6UiToolsDependencies.cmake +lib/cmake/Qt6UiTools/Qt6UiToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6UiTools/Qt6UiToolsTargets.cmake +lib/cmake/Qt6UiTools/Qt6UiToolsVersionlessTargets.cmake +%%QT_BINDIR%%/assistant +%%QT_BINDIR%%/designer +%%QT_BINDIR%%/lconvert +%%QT_BINDIR%%/linguist +%%QT_BINDIR%%/lrelease +%%QT_BINDIR%%/lupdate +%%QT_BINDIR%%/pixeltool +%%QT_BINDIR%%/qdbus +%%QT_BINDIR%%/qdbusviewer +%%QT_BINDIR%%/qdistancefieldgenerator +%%QT_BINDIR%%/qdoc +%%QT_BINDIR%%/qtdiag +%%QT_BINDIR%%/qtdiag6 +%%QT_BINDIR%%/qtplugininfo +%%QT_LIBDIR%%/libQt6Designer.prl +%%QT_LIBDIR%%/libQt6Designer.so +%%QT_LIBDIR%%/libQt6Designer.so.6 +%%QT_LIBDIR%%/libQt6Designer.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6DesignerComponents.prl +%%QT_LIBDIR%%/libQt6DesignerComponents.so +%%QT_LIBDIR%%/libQt6DesignerComponents.so.6 +%%QT_LIBDIR%%/libQt6DesignerComponents.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Help.prl +%%QT_LIBDIR%%/libQt6Help.so +%%QT_LIBDIR%%/libQt6Help.so.6 +%%QT_LIBDIR%%/libQt6Help.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6UiTools.prl +%%QT_LIBDIR%%/libQt6UiTools.so +%%QT_LIBDIR%%/libQt6UiTools.so.6 +%%QT_LIBDIR%%/libQt6UiTools.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6designer_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6designercomponentsprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6help_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6uitools_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_designer.pri +%%QT_MKSPECDIR%%/modules/qt_lib_designer_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_designercomponents_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_help.pri +%%QT_MKSPECDIR%%/modules/qt_lib_help_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_linguist.pri +%%QT_MKSPECDIR%%/modules/qt_lib_linguist_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_tools_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_uiplugin.pri +%%QT_MKSPECDIR%%/modules/qt_lib_uitools.pri +%%QT_MKSPECDIR%%/modules/qt_lib_uitools_private.pri +%%QT_PLUGINDIR%%/designer/libqquickwidget.so +libdata/pkgconfig/Qt6Designer.pc +libdata/pkgconfig/Qt6Help.pc +libdata/pkgconfig/Qt6Linguist.pc +libdata/pkgconfig/Qt6UiPlugin.pc +libdata/pkgconfig/Qt6UiTools.pc +%%QT_LIBEXECDIR%%/l%%CMAKE_BUILD_TYPE%%-pro +%%QT_LIBEXECDIR%%/lprodump +%%QT_LIBEXECDIR%%/lupdate-pro +%%QT_LIBEXECDIR%%/qhelpgenerator +%%QT_LIBEXECDIR%%/qtattributionsscanner +%%QT_DATADIR%%/modules/Designer.json +%%QT_DATADIR%%/modules/DesignerComponentsPrivate.json +%%QT_DATADIR%%/modules/Help.json +%%QT_DATADIR%%/modules/Linguist.json +%%QT_DATADIR%%/modules/Tools.json +%%QT_DATADIR%%/modules/UiPlugin.json +%%QT_DATADIR%%/modules/UiTools.json +%%QT_DATADIR%%/phrasebooks/danish.qph +%%QT_DATADIR%%/phrasebooks/dutch.qph +%%QT_DATADIR%%/phrasebooks/finnish.qph +%%QT_DATADIR%%/phrasebooks/french.qph +%%QT_DATADIR%%/phrasebooks/german.qph +%%QT_DATADIR%%/phrasebooks/hungarian.qph +%%QT_DATADIR%%/phrasebooks/italian.qph +%%QT_DATADIR%%/phrasebooks/japanese.qph +%%QT_DATADIR%%/phrasebooks/norwegian.qph +%%QT_DATADIR%%/phrasebooks/polish.qph +%%QT_DATADIR%%/phrasebooks/russian.qph +%%QT_DATADIR%%/phrasebooks/spanish.qph +%%QT_DATADIR%%/phrasebooks/swedish.qph +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6Designer +@dir %%QT_CMAKEDIR%%/Qt6DesignerComponentsPrivate +@dir %%QT_CMAKEDIR%%/Qt6Help +@dir %%QT_CMAKEDIR%%/Qt6Linguist +@dir %%QT_CMAKEDIR%%/Qt6LinguistTools +@dir %%QT_CMAKEDIR%%/Qt6Tools +@dir %%QT_CMAKEDIR%%/Qt6ToolsTools +@dir %%QT_CMAKEDIR%%/Qt6UiPlugin +@dir %%QT_CMAKEDIR%%/Qt6UiTools +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6Designer +@dir %%QT_LIBDIR%%/cmake/Qt6DesignerComponentsPrivate +@dir %%QT_LIBDIR%%/cmake/Qt6Help +@dir %%QT_LIBDIR%%/cmake/Qt6Linguist +@dir %%QT_LIBDIR%%/cmake/Qt6LinguistTools +@dir %%QT_LIBDIR%%/cmake/Qt6Tools +@dir %%QT_LIBDIR%%/cmake/Qt6ToolsTools +@dir %%QT_LIBDIR%%/cmake/Qt6UiPlugin +@dir %%QT_LIBDIR%%/cmake/Qt6UiTools +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/devel/qt6-translations/Makefile b/devel/qt6-translations/Makefile new file mode 100644 index 000000000000..169de1b53ebb --- /dev/null +++ b/devel/qt6-translations/Makefile @@ -0,0 +1,16 @@ +PORTNAME= translations +DISTVERSION= ${QT6_VERSION} +CATEGORIES= devel +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt 6 translation module + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers + +USES= cmake compiler:c++17-lang \ + qt-dist:6 +USE_QT= base tools +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/devel/qt6-translations/distinfo b/devel/qt6-translations/distinfo new file mode 100644 index 000000000000..dd2742c62ffc --- /dev/null +++ b/devel/qt6-translations/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482599 +SHA256 (KDE/Qt/6.3.1/qttranslations-everywhere-src-6.3.1.tar.xz) = d7bdd55e2908ded901dcc262157100af2a490bf04d31e32995f6d91d78dfdb97 +SIZE (KDE/Qt/6.3.1/qttranslations-everywhere-src-6.3.1.tar.xz) = 1449120 diff --git a/devel/qt6-translations/pkg-descr b/devel/qt6-translations/pkg-descr new file mode 100644 index 000000000000..c9b899f69b91 --- /dev/null +++ b/devel/qt6-translations/pkg-descr @@ -0,0 +1,4 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +WWW: http://qt-project.org diff --git a/devel/qt6-translations/pkg-plist b/devel/qt6-translations/pkg-plist new file mode 100644 index 000000000000..3f437a82a2ff --- /dev/null +++ b/devel/qt6-translations/pkg-plist @@ -0,0 +1,267 @@ +%%QT_L10NDIR%%/assistant_ar.qm +%%QT_L10NDIR%%/assistant_bg.qm +%%QT_L10NDIR%%/assistant_cs.qm +%%QT_L10NDIR%%/assistant_da.qm +%%QT_L10NDIR%%/assistant_de.qm +%%QT_L10NDIR%%/assistant_en.qm +%%QT_L10NDIR%%/assistant_es.qm +%%QT_L10NDIR%%/assistant_fr.qm +%%QT_L10NDIR%%/assistant_hr.qm +%%QT_L10NDIR%%/assistant_hu.qm +%%QT_L10NDIR%%/assistant_ja.qm +%%QT_L10NDIR%%/assistant_ko.qm +%%QT_L10NDIR%%/assistant_nl.qm +%%QT_L10NDIR%%/assistant_pl.qm +%%QT_L10NDIR%%/assistant_pt_BR.qm +%%QT_L10NDIR%%/assistant_ru.qm +%%QT_L10NDIR%%/assistant_sk.qm +%%QT_L10NDIR%%/assistant_sl.qm +%%QT_L10NDIR%%/assistant_tr.qm +%%QT_L10NDIR%%/assistant_uk.qm +%%QT_L10NDIR%%/assistant_zh_CN.qm +%%QT_L10NDIR%%/assistant_zh_TW.qm +%%QT_L10NDIR%%/designer_ar.qm +%%QT_L10NDIR%%/designer_bg.qm +%%QT_L10NDIR%%/designer_cs.qm +%%QT_L10NDIR%%/designer_da.qm +%%QT_L10NDIR%%/designer_de.qm +%%QT_L10NDIR%%/designer_en.qm +%%QT_L10NDIR%%/designer_es.qm +%%QT_L10NDIR%%/designer_fr.qm +%%QT_L10NDIR%%/designer_hr.qm +%%QT_L10NDIR%%/designer_hu.qm +%%QT_L10NDIR%%/designer_ja.qm +%%QT_L10NDIR%%/designer_ko.qm +%%QT_L10NDIR%%/designer_nl.qm +%%QT_L10NDIR%%/designer_pl.qm +%%QT_L10NDIR%%/designer_ru.qm +%%QT_L10NDIR%%/designer_sk.qm +%%QT_L10NDIR%%/designer_sl.qm +%%QT_L10NDIR%%/designer_tr.qm +%%QT_L10NDIR%%/designer_uk.qm +%%QT_L10NDIR%%/designer_zh_CN.qm +%%QT_L10NDIR%%/designer_zh_TW.qm +%%QT_L10NDIR%%/linguist_ar.qm +%%QT_L10NDIR%%/linguist_bg.qm +%%QT_L10NDIR%%/linguist_cs.qm +%%QT_L10NDIR%%/linguist_da.qm +%%QT_L10NDIR%%/linguist_de.qm +%%QT_L10NDIR%%/linguist_en.qm +%%QT_L10NDIR%%/linguist_es.qm +%%QT_L10NDIR%%/linguist_fr.qm +%%QT_L10NDIR%%/linguist_hr.qm +%%QT_L10NDIR%%/linguist_hu.qm +%%QT_L10NDIR%%/linguist_it.qm +%%QT_L10NDIR%%/linguist_ja.qm +%%QT_L10NDIR%%/linguist_ko.qm +%%QT_L10NDIR%%/linguist_nl.qm +%%QT_L10NDIR%%/linguist_pl.qm +%%QT_L10NDIR%%/linguist_ru.qm +%%QT_L10NDIR%%/linguist_sk.qm +%%QT_L10NDIR%%/linguist_sl.qm +%%QT_L10NDIR%%/linguist_sv.qm +%%QT_L10NDIR%%/linguist_tr.qm +%%QT_L10NDIR%%/linguist_uk.qm +%%QT_L10NDIR%%/linguist_zh_CN.qm +%%QT_L10NDIR%%/linguist_zh_TW.qm +%%QT_L10NDIR%%/qt_ar.qm +%%QT_L10NDIR%%/qt_bg.qm +%%QT_L10NDIR%%/qt_ca.qm +%%QT_L10NDIR%%/qt_cs.qm +%%QT_L10NDIR%%/qt_da.qm +%%QT_L10NDIR%%/qt_de.qm +%%QT_L10NDIR%%/qt_en.qm +%%QT_L10NDIR%%/qt_es.qm +%%QT_L10NDIR%%/qt_fa.qm +%%QT_L10NDIR%%/qt_fi.qm +%%QT_L10NDIR%%/qt_fr.qm +%%QT_L10NDIR%%/qt_gd.qm +%%QT_L10NDIR%%/qt_gl.qm +%%QT_L10NDIR%%/qt_he.qm +%%QT_L10NDIR%%/qt_help_ar.qm +%%QT_L10NDIR%%/qt_help_bg.qm +%%QT_L10NDIR%%/qt_help_ca.qm +%%QT_L10NDIR%%/qt_help_cs.qm +%%QT_L10NDIR%%/qt_help_da.qm +%%QT_L10NDIR%%/qt_help_de.qm +%%QT_L10NDIR%%/qt_help_en.qm +%%QT_L10NDIR%%/qt_help_es.qm +%%QT_L10NDIR%%/qt_help_fr.qm +%%QT_L10NDIR%%/qt_help_gl.qm +%%QT_L10NDIR%%/qt_help_hr.qm +%%QT_L10NDIR%%/qt_help_hu.qm +%%QT_L10NDIR%%/qt_help_it.qm +%%QT_L10NDIR%%/qt_help_ja.qm +%%QT_L10NDIR%%/qt_help_ko.qm +%%QT_L10NDIR%%/qt_help_nl.qm +%%QT_L10NDIR%%/qt_help_nn.qm +%%QT_L10NDIR%%/qt_help_pl.qm +%%QT_L10NDIR%%/qt_help_pt_BR.qm +%%QT_L10NDIR%%/qt_help_ru.qm +%%QT_L10NDIR%%/qt_help_sk.qm +%%QT_L10NDIR%%/qt_help_sl.qm +%%QT_L10NDIR%%/qt_help_tr.qm +%%QT_L10NDIR%%/qt_help_uk.qm +%%QT_L10NDIR%%/qt_help_zh_CN.qm +%%QT_L10NDIR%%/qt_help_zh_TW.qm +%%QT_L10NDIR%%/qt_hr.qm +%%QT_L10NDIR%%/qt_hu.qm +%%QT_L10NDIR%%/qt_it.qm +%%QT_L10NDIR%%/qt_ja.qm +%%QT_L10NDIR%%/qt_ko.qm +%%QT_L10NDIR%%/qt_lt.qm +%%QT_L10NDIR%%/qt_lv.qm +%%QT_L10NDIR%%/qt_nl.qm +%%QT_L10NDIR%%/qt_nn.qm +%%QT_L10NDIR%%/qt_pl.qm +%%QT_L10NDIR%%/qt_pt_BR.qm +%%QT_L10NDIR%%/qt_pt_PT.qm +%%QT_L10NDIR%%/qt_ru.qm +%%QT_L10NDIR%%/qt_sk.qm +%%QT_L10NDIR%%/qt_sl.qm +%%QT_L10NDIR%%/qt_sv.qm +%%QT_L10NDIR%%/qt_tr.qm +%%QT_L10NDIR%%/qt_uk.qm +%%QT_L10NDIR%%/qt_zh_CN.qm +%%QT_L10NDIR%%/qt_zh_TW.qm +%%QT_L10NDIR%%/qtbase_ar.qm +%%QT_L10NDIR%%/qtbase_bg.qm +%%QT_L10NDIR%%/qtbase_ca.qm +%%QT_L10NDIR%%/qtbase_cs.qm +%%QT_L10NDIR%%/qtbase_da.qm +%%QT_L10NDIR%%/qtbase_de.qm +%%QT_L10NDIR%%/qtbase_en.qm +%%QT_L10NDIR%%/qtbase_es.qm +%%QT_L10NDIR%%/qtbase_fa.qm +%%QT_L10NDIR%%/qtbase_fi.qm +%%QT_L10NDIR%%/qtbase_fr.qm +%%QT_L10NDIR%%/qtbase_gd.qm +%%QT_L10NDIR%%/qtbase_he.qm +%%QT_L10NDIR%%/qtbase_hr.qm +%%QT_L10NDIR%%/qtbase_hu.qm +%%QT_L10NDIR%%/qtbase_it.qm +%%QT_L10NDIR%%/qtbase_ja.qm +%%QT_L10NDIR%%/qtbase_ko.qm +%%QT_L10NDIR%%/qtbase_lv.qm +%%QT_L10NDIR%%/qtbase_nl.qm +%%QT_L10NDIR%%/qtbase_nn.qm +%%QT_L10NDIR%%/qtbase_pl.qm +%%QT_L10NDIR%%/qtbase_pt_BR.qm +%%QT_L10NDIR%%/qtbase_ru.qm +%%QT_L10NDIR%%/qtbase_sk.qm +%%QT_L10NDIR%%/qtbase_tr.qm +%%QT_L10NDIR%%/qtbase_uk.qm +%%QT_L10NDIR%%/qtbase_zh_CN.qm +%%QT_L10NDIR%%/qtbase_zh_TW.qm +%%QT_L10NDIR%%/qtconnectivity_bg.qm +%%QT_L10NDIR%%/qtconnectivity_ca.qm +%%QT_L10NDIR%%/qtconnectivity_da.qm +%%QT_L10NDIR%%/qtconnectivity_de.qm +%%QT_L10NDIR%%/qtconnectivity_en.qm +%%QT_L10NDIR%%/qtconnectivity_es.qm +%%QT_L10NDIR%%/qtconnectivity_hr.qm +%%QT_L10NDIR%%/qtconnectivity_hu.qm +%%QT_L10NDIR%%/qtconnectivity_ko.qm +%%QT_L10NDIR%%/qtconnectivity_nl.qm +%%QT_L10NDIR%%/qtconnectivity_pl.qm +%%QT_L10NDIR%%/qtconnectivity_pt_BR.qm +%%QT_L10NDIR%%/qtconnectivity_ru.qm +%%QT_L10NDIR%%/qtconnectivity_tr.qm +%%QT_L10NDIR%%/qtconnectivity_uk.qm +%%QT_L10NDIR%%/qtconnectivity_zh_CN.qm +%%QT_L10NDIR%%/qtdeclarative_ar.qm +%%QT_L10NDIR%%/qtdeclarative_bg.qm +%%QT_L10NDIR%%/qtdeclarative_ca.qm +%%QT_L10NDIR%%/qtdeclarative_da.qm +%%QT_L10NDIR%%/qtdeclarative_de.qm +%%QT_L10NDIR%%/qtdeclarative_en.qm +%%QT_L10NDIR%%/qtdeclarative_es.qm +%%QT_L10NDIR%%/qtdeclarative_fa.qm +%%QT_L10NDIR%%/qtdeclarative_fi.qm +%%QT_L10NDIR%%/qtdeclarative_fr.qm +%%QT_L10NDIR%%/qtdeclarative_hr.qm +%%QT_L10NDIR%%/qtdeclarative_hu.qm +%%QT_L10NDIR%%/qtdeclarative_ja.qm +%%QT_L10NDIR%%/qtdeclarative_ko.qm +%%QT_L10NDIR%%/qtdeclarative_lv.qm +%%QT_L10NDIR%%/qtdeclarative_nl.qm +%%QT_L10NDIR%%/qtdeclarative_nn.qm +%%QT_L10NDIR%%/qtdeclarative_pl.qm +%%QT_L10NDIR%%/qtdeclarative_pt_BR.qm +%%QT_L10NDIR%%/qtdeclarative_ru.qm +%%QT_L10NDIR%%/qtdeclarative_sk.qm +%%QT_L10NDIR%%/qtdeclarative_tr.qm +%%QT_L10NDIR%%/qtdeclarative_uk.qm +%%QT_L10NDIR%%/qtdeclarative_zh_CN.qm +%%QT_L10NDIR%%/qtdeclarative_zh_TW.qm +%%QT_L10NDIR%%/qtlocation_bg.qm +%%QT_L10NDIR%%/qtlocation_ca.qm +%%QT_L10NDIR%%/qtlocation_da.qm +%%QT_L10NDIR%%/qtlocation_de.qm +%%QT_L10NDIR%%/qtlocation_en.qm +%%QT_L10NDIR%%/qtlocation_es.qm +%%QT_L10NDIR%%/qtlocation_fi.qm +%%QT_L10NDIR%%/qtlocation_fr.qm +%%QT_L10NDIR%%/qtlocation_hr.qm +%%QT_L10NDIR%%/qtlocation_hu.qm +%%QT_L10NDIR%%/qtlocation_ko.qm +%%QT_L10NDIR%%/qtlocation_nl.qm +%%QT_L10NDIR%%/qtlocation_pl.qm +%%QT_L10NDIR%%/qtlocation_pt_BR.qm +%%QT_L10NDIR%%/qtlocation_ru.qm +%%QT_L10NDIR%%/qtlocation_tr.qm +%%QT_L10NDIR%%/qtlocation_uk.qm +%%QT_L10NDIR%%/qtlocation_zh_CN.qm +%%QT_L10NDIR%%/qtmultimedia_ar.qm +%%QT_L10NDIR%%/qtmultimedia_bg.qm +%%QT_L10NDIR%%/qtmultimedia_ca.qm +%%QT_L10NDIR%%/qtmultimedia_cs.qm +%%QT_L10NDIR%%/qtmultimedia_da.qm +%%QT_L10NDIR%%/qtmultimedia_de.qm +%%QT_L10NDIR%%/qtmultimedia_en.qm +%%QT_L10NDIR%%/qtmultimedia_es.qm +%%QT_L10NDIR%%/qtmultimedia_fa.qm +%%QT_L10NDIR%%/qtmultimedia_fi.qm +%%QT_L10NDIR%%/qtmultimedia_fr.qm +%%QT_L10NDIR%%/qtmultimedia_hr.qm +%%QT_L10NDIR%%/qtmultimedia_hu.qm +%%QT_L10NDIR%%/qtmultimedia_it.qm +%%QT_L10NDIR%%/qtmultimedia_ja.qm +%%QT_L10NDIR%%/qtmultimedia_ko.qm +%%QT_L10NDIR%%/qtmultimedia_nl.qm +%%QT_L10NDIR%%/qtmultimedia_nn.qm +%%QT_L10NDIR%%/qtmultimedia_pl.qm +%%QT_L10NDIR%%/qtmultimedia_pt_BR.qm +%%QT_L10NDIR%%/qtmultimedia_ru.qm +%%QT_L10NDIR%%/qtmultimedia_sk.qm +%%QT_L10NDIR%%/qtmultimedia_tr.qm +%%QT_L10NDIR%%/qtmultimedia_uk.qm +%%QT_L10NDIR%%/qtmultimedia_zh_CN.qm +%%QT_L10NDIR%%/qtmultimedia_zh_TW.qm +%%QT_L10NDIR%%/qtserialport_de.qm +%%QT_L10NDIR%%/qtserialport_en.qm +%%QT_L10NDIR%%/qtserialport_es.qm +%%QT_L10NDIR%%/qtserialport_ja.qm +%%QT_L10NDIR%%/qtserialport_ko.qm +%%QT_L10NDIR%%/qtserialport_pl.qm +%%QT_L10NDIR%%/qtserialport_ru.qm +%%QT_L10NDIR%%/qtserialport_uk.qm +%%QT_L10NDIR%%/qtwebengine_ca.qm +%%QT_L10NDIR%%/qtwebengine_de.qm +%%QT_L10NDIR%%/qtwebengine_en.qm +%%QT_L10NDIR%%/qtwebengine_es.qm +%%QT_L10NDIR%%/qtwebengine_ko.qm +%%QT_L10NDIR%%/qtwebengine_pl.qm +%%QT_L10NDIR%%/qtwebengine_ru.qm +%%QT_L10NDIR%%/qtwebengine_uk.qm +%%QT_L10NDIR%%/qtwebengine_zh_CN.qm +%%QT_L10NDIR%%/qtwebsockets_ca.qm +%%QT_L10NDIR%%/qtwebsockets_de.qm +%%QT_L10NDIR%%/qtwebsockets_en.qm +%%QT_L10NDIR%%/qtwebsockets_es.qm +%%QT_L10NDIR%%/qtwebsockets_fr.qm +%%QT_L10NDIR%%/qtwebsockets_ja.qm +%%QT_L10NDIR%%/qtwebsockets_ko.qm +%%QT_L10NDIR%%/qtwebsockets_pl.qm +%%QT_L10NDIR%%/qtwebsockets_ru.qm +%%QT_L10NDIR%%/qtwebsockets_uk.qm diff --git a/graphics/Makefile b/graphics/Makefile index 124c439f1b09..0e8140f4c31a 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -1,1192 +1,1196 @@ COMMENT = Graphics tools and libraries SUBDIR += 4va SUBDIR += Coin SUBDIR += GraphicsMagick SUBDIR += Hermes SUBDIR += IPA SUBDIR += ImageMagick6 SUBDIR += ImageMagick6-nox11 SUBDIR += ImageMagick7 SUBDIR += ImageMagick7-nox11 SUBDIR += O2-tools SUBDIR += R-cran-DiagrammeR SUBDIR += R-cran-GDD SUBDIR += R-cran-RColorBrewer SUBDIR += R-cran-colorspace SUBDIR += R-cran-diagram SUBDIR += R-cran-dichromat SUBDIR += R-cran-dygraphs SUBDIR += R-cran-farver SUBDIR += R-cran-ggplot2 SUBDIR += R-cran-ggrepel SUBDIR += R-cran-gridBase SUBDIR += R-cran-gridExtra SUBDIR += R-cran-jpeg SUBDIR += R-cran-latticeExtra SUBDIR += R-cran-munsell SUBDIR += R-cran-pROC SUBDIR += R-cran-pixmap SUBDIR += R-cran-png SUBDIR += R-cran-qcc SUBDIR += R-cran-rgdal SUBDIR += R-cran-rtiff SUBDIR += R-cran-s2 SUBDIR += R-cran-scales SUBDIR += R-cran-shape SUBDIR += R-cran-viridis SUBDIR += R-cran-viridisLite SUBDIR += R-cran-visNetwork SUBDIR += SciPlot SUBDIR += a2png SUBDIR += aalib SUBDIR += aaphoto SUBDIR += acidwarp SUBDIR += acidwarp-sdl SUBDIR += agg SUBDIR += airsaned SUBDIR += akira SUBDIR += alembic SUBDIR += aloadimage SUBDIR += alpng SUBDIR += ampasACES-container SUBDIR += ampasCTL SUBDIR += animorph SUBDIR += ansilove SUBDIR += anttweakbar SUBDIR += aoi SUBDIR += apngasm SUBDIR += apngdis SUBDIR += appleseed SUBDIR += argyllcms SUBDIR += art SUBDIR += asciio SUBDIR += aseprite SUBDIR += atril SUBDIR += atril-lite SUBDIR += autopano-sift-c SUBDIR += autotrace SUBDIR += aview SUBDIR += avir SUBDIR += azpainter SUBDIR += azpainterb SUBDIR += barcode SUBDIR += batik SUBDIR += birdfont SUBDIR += bitmap SUBDIR += blend2d SUBDIR += blender SUBDIR += blender-doc SUBDIR += blender-lts29 SUBDIR += bmeps SUBDIR += bmp2html SUBDIR += bonzomatic SUBDIR += box SUBDIR += brunsli SUBDIR += bsd-plotutils SUBDIR += c-a-i-r SUBDIR += cadubi SUBDIR += cairo SUBDIR += cairomm SUBDIR += cal3d SUBDIR += camera SUBDIR += camerakit SUBDIR += cbonsai SUBDIR += cbviewer SUBDIR += cegui SUBDIR += cenon SUBDIR += cfdg SUBDIR += chafa SUBDIR += charls SUBDIR += cimg SUBDIR += cloudcompare SUBDIR += clutter SUBDIR += clutter-gtk3 SUBDIR += cluttermm SUBDIR += cogl SUBDIR += colmap SUBDIR += colord SUBDIR += colord-gtk SUBDIR += comical SUBDIR += compupic SUBDIR += converseen SUBDIR += corrupter SUBDIR += cosmoplayer SUBDIR += cptutils SUBDIR += crw SUBDIR += curator SUBDIR += curtail SUBDIR += cuttlefish SUBDIR += darktable SUBDIR += darktable40 SUBDIR += dataplot SUBDIR += dbow2 SUBDIR += dc20pack SUBDIR += dcmtk SUBDIR += dcp2icc SUBDIR += dcraw SUBDIR += dcraw-m SUBDIR += delaboratory SUBDIR += derelict-gl3 SUBDIR += devil SUBDIR += dia SUBDIR += diff-pdf SUBDIR += diffpdf SUBDIR += digikam SUBDIR += dilay SUBDIR += ditaa SUBDIR += djview4 SUBDIR += djvulibre SUBDIR += dmtx-utils SUBDIR += drawing SUBDIR += drawpile SUBDIR += drm-510-kmod SUBDIR += drm-54-kmod SUBDIR += drm-fbsd12.0-kmod SUBDIR += drm-fbsd13-kmod SUBDIR += drm-kmod SUBDIR += drm_info SUBDIR += dspdfviewer SUBDIR += dssim SUBDIR += duhdraw SUBDIR += dust3d SUBDIR += dynamechs SUBDIR += ebsynth SUBDIR += edje_viewer SUBDIR += egl-wayland SUBDIR += eglexternalplatform SUBDIR += electricsheep SUBDIR += elementary-photos SUBDIR += embree SUBDIR += enblend SUBDIR += engauge-digitizer SUBDIR += entangle SUBDIR += eog SUBDIR += eog-plugins SUBDIR += eom SUBDIR += eos-movrec SUBDIR += epdfview SUBDIR += ephoto SUBDIR += epix SUBDIR += eps2png SUBDIR += epsonscan2 SUBDIR += epsonscan2-non-free-plugin SUBDIR += epstool SUBDIR += eterm-bg SUBDIR += evince SUBDIR += evolvotron SUBDIR += exif SUBDIR += exifprobe SUBDIR += exiftags SUBDIR += exiftran SUBDIR += exiv2 SUBDIR += exrtools SUBDIR += f3d SUBDIR += facedetect SUBDIR += farbfeld SUBDIR += feh SUBDIR += fig2sxd SUBDIR += figurine SUBDIR += filament SUBDIR += filmulator SUBDIR += flam3 SUBDIR += flasm SUBDIR += flif SUBDIR += flphoto SUBDIR += fly SUBDIR += fortytwo SUBDIR += fotofix SUBDIR += fotoxx SUBDIR += founts SUBDIR += fpc-cairo SUBDIR += fpc-graph SUBDIR += fpc-hermes SUBDIR += fpc-imagemagick SUBDIR += fpc-libgd SUBDIR += fpc-libpng SUBDIR += fpc-ncurses SUBDIR += fpc-opengl SUBDIR += fpc-pasjpeg SUBDIR += fpc-proj4 SUBDIR += fpc-rsvg SUBDIR += fpc-svgalib SUBDIR += fpc-vcl-compat SUBDIR += fracplanet SUBDIR += fractgen SUBDIR += fraqtive SUBDIR += freeglut SUBDIR += freeimage SUBDIR += freetype-gl SUBDIR += frei0r SUBDIR += frei0r-plugins SUBDIR += frei0r-plugins-gavl SUBDIR += frei0r-plugins-opencv SUBDIR += frogr SUBDIR += ftgl SUBDIR += fusefs-gphotofs SUBDIR += fv SUBDIR += fyre SUBDIR += g2 SUBDIR += gauche-gl SUBDIR += gcolor2 SUBDIR += gcolor3 SUBDIR += gd SUBDIR += gdal SUBDIR += gdchart SUBDIR += gdk-pixbuf2 SUBDIR += gdk-pixbuf2-xlib SUBDIR += gdtclft SUBDIR += geeqie SUBDIR += gegl SUBDIR += geoapi SUBDIR += geomorph SUBDIR += geomview SUBDIR += geos SUBDIR += geoserver SUBDIR += gexiv2 SUBDIR += giblib SUBDIR += giflib SUBDIR += gifmerge SUBDIR += gifsicle SUBDIR += gifski SUBDIR += giftool SUBDIR += gimageview SUBDIR += gimmage SUBDIR += gimp SUBDIR += gimp-app SUBDIR += gimp-beautify-plugin SUBDIR += gimp-data-extras SUBDIR += gimp-gmic-plugin SUBDIR += gimp-jxl-plugin SUBDIR += gimp-lensfun-plugin SUBDIR += gimp-lqr-plugin SUBDIR += gimp-refocus-plugin SUBDIR += gimp-resynthesizer SUBDIR += gkrellkam2 SUBDIR += glad SUBDIR += glaxnimate SUBDIR += glbinding SUBDIR += gle SUBDIR += glee SUBDIR += glew SUBDIR += glew-wayland SUBDIR += glexcess SUBDIR += glfw SUBDIR += glfw2 SUBDIR += gliv SUBDIR += glosm SUBDIR += glpng SUBDIR += glslang SUBDIR += glx-utils SUBDIR += gmic SUBDIR += gmic-qt SUBDIR += gmt SUBDIR += gmt-dcw SUBDIR += gmt-gshhg SUBDIR += gnash SUBDIR += gnome-color-manager SUBDIR += gnome-video-effects SUBDIR += gocr SUBDIR += goocanvas2 SUBDIR += goocanvas3 SUBDIR += goocanvasmm2 SUBDIR += goom SUBDIR += gource SUBDIR += gpaint SUBDIR += gphoto2 SUBDIR += gpicview SUBDIR += gpsmanshp SUBDIR += gpu-firmware-amd-kmod SUBDIR += gpu-firmware-intel-kmod SUBDIR += gpu-firmware-kmod SUBDIR += gpu-firmware-radeon-kmod SUBDIR += gpxsee SUBDIR += gracula SUBDIR += grads SUBDIR += grafx2 SUBDIR += graphene SUBDIR += graphite2 SUBDIR += graphos SUBDIR += graphviz SUBDIR += grx SUBDIR += gscan2pdf SUBDIR += gstreamer1-plugins-aalib SUBDIR += gstreamer1-plugins-cairo SUBDIR += gstreamer1-plugins-gdkpixbuf SUBDIR += gstreamer1-plugins-gl SUBDIR += gstreamer1-plugins-jpeg SUBDIR += gstreamer1-plugins-kms SUBDIR += gstreamer1-plugins-libcaca SUBDIR += gstreamer1-plugins-libvisual SUBDIR += gstreamer1-plugins-opencv SUBDIR += gstreamer1-plugins-openexr SUBDIR += gstreamer1-plugins-openjpeg SUBDIR += gstreamer1-plugins-png SUBDIR += gstreamer1-plugins-qt SUBDIR += gstreamer1-plugins-rsvg SUBDIR += gstreamer1-plugins-vulkan SUBDIR += gstreamer1-plugins-webp SUBDIR += gstreamer1-plugins-zbar SUBDIR += gthumb SUBDIR += gtimelapse SUBDIR += gtk-update-icon-cache SUBDIR += gtkam SUBDIR += gts SUBDIR += guetzli SUBDIR += guile-cairo SUBDIR += guilib SUBDIR += gwenview SUBDIR += h3 SUBDIR += hdr_tools SUBDIR += heimer SUBDIR += hiptext SUBDIR += hobbes-icons-xpm SUBDIR += hppsmtools SUBDIR += hugin SUBDIR += icat SUBDIR += icc-profiles-adobe-cs4 SUBDIR += icc-profiles-basiccolor SUBDIR += icc-profiles-openicc SUBDIR += iccxml SUBDIR += icon-slicer SUBDIR += icontact SUBDIR += icoutils SUBDIR += ida SUBDIR += iec16022 SUBDIR += iiview SUBDIR += ikona SUBDIR += imageindex SUBDIR += imageviewer SUBDIR += imageworsener SUBDIR += imc SUBDIR += imlib2 SUBDIR += imlib2-jxl SUBDIR += imlib2-webp SUBDIR += imlib2_loaders SUBDIR += impressive SUBDIR += imv SUBDIR += inkscape SUBDIR += instant-meshes SUBDIR += intel-backlight SUBDIR += intergif SUBDIR += ipe SUBDIR += jalbum SUBDIR += jasper SUBDIR += jave6 SUBDIR += jbig2dec SUBDIR += jbigkit SUBDIR += jdraw SUBDIR += jgraph SUBDIR += jhead SUBDIR += jogamp-jogl SUBDIR += jogl SUBDIR += jp SUBDIR += jp2a SUBDIR += jpatch SUBDIR += jpeg-turbo SUBDIR += jpeginfo SUBDIR += jpegoptim SUBDIR += jpgtn SUBDIR += jslice SUBDIR += kamera SUBDIR += kamerka SUBDIR += katarakt SUBDIR += kcolorchooser SUBDIR += kcolorpicker SUBDIR += kdegraphics SUBDIR += kdegraphics-mobipocket SUBDIR += kdegraphics-svgpart SUBDIR += kdegraphics-thumbnailers SUBDIR += kdiagram SUBDIR += kf5-kimageformats SUBDIR += kf5-kplotting SUBDIR += kf5-kquickcharts SUBDIR += kf5-prison SUBDIR += kgeotag SUBDIR += kgraphviewer SUBDIR += kimageannotator SUBDIR += kimagemapeditor SUBDIR += kipi-plugins SUBDIR += klatexformula SUBDIR += kludge3d SUBDIR += kmscube SUBDIR += knotter SUBDIR += kolourpaint SUBDIR += kontrast SUBDIR += kooka SUBDIR += kphotoalbum SUBDIR += kplot SUBDIR += kqtquickcharts SUBDIR += kquickimageeditor SUBDIR += krita SUBDIR += ksanecore SUBDIR += kseexpr SUBDIR += ksnip SUBDIR += kxstitch SUBDIR += l2p SUBDIR += largetifftools SUBDIR += laternamagica SUBDIR += lazpaint SUBDIR += lcdtest SUBDIR += lcms SUBDIR += lcms2 SUBDIR += leafpak SUBDIR += lensfun SUBDIR += lepton SUBDIR += leptonica SUBDIR += lerc SUBDIR += lfview SUBDIR += lib3ds SUBDIR += libGLU SUBDIR += libQGLViewer SUBDIR += libafterimage SUBDIR += libansilove SUBDIR += libart_lgpl SUBDIR += libavif SUBDIR += libboard SUBDIR += libbpg SUBDIR += libcaca SUBDIR += libcdr01 SUBDIR += libchamplain SUBDIR += libdmtx SUBDIR += libdrm SUBDIR += libecwj2 SUBDIR += libemf SUBDIR += libepoxy SUBDIR += libetonyek01 SUBDIR += libexif SUBDIR += libexif-gtk SUBDIR += libfpx SUBDIR += libfreehand SUBDIR += libgeotiff SUBDIR += libgfx SUBDIR += libgltext SUBDIR += libgltf SUBDIR += libglvnd SUBDIR += libgnomecanvas SUBDIR += libgnomecanvasmm26 SUBDIR += libgphoto2 SUBDIR += libgxps SUBDIR += libheif SUBDIR += libimagequant SUBDIR += libimg SUBDIR += libiptcdata SUBDIR += libjpeg-turbo SUBDIR += libjxl SUBDIR += libjxr SUBDIR += libkdcraw SUBDIR += libkexiv2 SUBDIR += libkipi SUBDIR += libksane SUBDIR += libliftoff SUBDIR += liblqr-1 SUBDIR += liblug SUBDIR += libmng SUBDIR += libmorph SUBDIR += libmypaint SUBDIR += libnsbmp SUBDIR += libnsgif SUBDIR += libopenraw SUBDIR += libosmesa SUBDIR += libpano13 SUBDIR += libpcd SUBDIR += libpgf SUBDIR += libpillowfight SUBDIR += libplacebo SUBDIR += libpotrace SUBDIR += libprojectm SUBDIR += libpuzzle SUBDIR += libqrencode SUBDIR += librasterlite2 SUBDIR += libraw SUBDIR += librsvg2 SUBDIR += librsvg2-rust SUBDIR += librtprocess SUBDIR += libsixel SUBDIR += libspiro SUBDIR += libspng SUBDIR += libsvg SUBDIR += libsvg-cairo SUBDIR += libsvgtiny SUBDIR += libvisual SUBDIR += libvisual04 SUBDIR += libvisual04-plugins SUBDIR += libwmf SUBDIR += libwmf-nox11 SUBDIR += libwpg03 SUBDIR += libyuv SUBDIR += libzmf SUBDIR += lightzone SUBDIR += linplasma SUBDIR += linux-c7-cairo SUBDIR += linux-c7-cairo-gobject SUBDIR += linux-c7-dri SUBDIR += linux-c7-gdk-pixbuf2 SUBDIR += linux-c7-glx-utils SUBDIR += linux-c7-graphite2 SUBDIR += linux-c7-jasper SUBDIR += linux-c7-jbigkit SUBDIR += linux-c7-jpeg SUBDIR += linux-c7-libdrm SUBDIR += linux-c7-libepoxy SUBDIR += linux-c7-libglvnd SUBDIR += linux-c7-librsvg2 SUBDIR += linux-c7-png SUBDIR += linux-c7-sdl_image SUBDIR += linux-c7-sdl_ttf SUBDIR += linux-c7-tiff SUBDIR += linux-c7-wayland SUBDIR += lua-gd SUBDIR += luminance-qt5 SUBDIR += lux SUBDIR += lximage-qt SUBDIR += mahotas SUBDIR += maim SUBDIR += mandelbulber SUBDIR += mapcache SUBDIR += mapserver SUBDIR += mapyrus SUBDIR += matplotlib-cpp SUBDIR += matplotplusplus SUBDIR += megapov SUBDIR += meh SUBDIR += mesa-demos SUBDIR += mesa-devel SUBDIR += mesa-dri SUBDIR += mesa-gallium-va SUBDIR += mesa-gallium-vdpau SUBDIR += mesa-gallium-xa SUBDIR += mesa-libs SUBDIR += metacam SUBDIR += metapixel SUBDIR += milton SUBDIR += minder SUBDIR += ming SUBDIR += mirtk SUBDIR += movit SUBDIR += mozjpeg SUBDIR += mscgen SUBDIR += msl SUBDIR += mtpaint SUBDIR += multican SUBDIR += mupdf SUBDIR += mxp SUBDIR += mypaint SUBDIR += mypaint-brushes SUBDIR += mypaint-brushes2 SUBDIR += nanort SUBDIR += nanosvg SUBDIR += netpbm SUBDIR += nip2 SUBDIR += nomacs SUBDIR += nplot SUBDIR += npretty SUBDIR += nsxiv SUBDIR += nurbs++ SUBDIR += nvidia-texture-tools SUBDIR += ocaml-images SUBDIR += ocaml-lablgl SUBDIR += ocrad SUBDIR += ogre3d SUBDIR += ogre3d19 SUBDIR += oidn SUBDIR += okular SUBDIR += open3d SUBDIR += opencollada SUBDIR += opencolorio SUBDIR += opencolorio-tools SUBDIR += opencoloriov1 SUBDIR += opencsg SUBDIR += opencv SUBDIR += opendx SUBDIR += openexr SUBDIR += openfx-arena SUBDIR += openfx-misc SUBDIR += opengl-man SUBDIR += opengv SUBDIR += openicc-config SUBDIR += openimageio SUBDIR += openimageio-ociov1 SUBDIR += openjpeg SUBDIR += openjpeg15 SUBDIR += openjph SUBDIR += openjump SUBDIR += openmvs SUBDIR += opennurbs SUBDIR += openorienteering-mapper SUBDIR += openrm SUBDIR += openshadinglanguage SUBDIR += opensubdiv SUBDIR += openvkl SUBDIR += optar SUBDIR += optipng SUBDIR += osg SUBDIR += osg34 SUBDIR += osgearth SUBDIR += ospray SUBDIR += ospray-studio SUBDIR += ossim SUBDIR += oyranos SUBDIR += p5-Acme-Steganography-Image-Png SUBDIR += p5-Algorithm-Line-Bresenham SUBDIR += p5-Alien-Gimp SUBDIR += p5-Barcode-ZBar SUBDIR += p5-CAD-Drawing SUBDIR += p5-CAD-Drawing-Template SUBDIR += p5-Cairo SUBDIR += p5-Captcha-reCAPTCHA SUBDIR += p5-Captcha-reCAPTCHA-Mailhide SUBDIR += p5-Chart SUBDIR += p5-Chart-Clicker SUBDIR += p5-Chart-Gnuplot SUBDIR += p5-Chart-Graph SUBDIR += p5-Chart-PNGgraph SUBDIR += p5-Color-Calc SUBDIR += p5-Color-Library SUBDIR += p5-Color-Palette SUBDIR += p5-Color-Rgb SUBDIR += p5-Color-Scheme SUBDIR += p5-Convert-Color SUBDIR += p5-Convert-Color-XTerm SUBDIR += p5-Data-Google-Visualization-DataSource SUBDIR += p5-Data-Google-Visualization-DataTable SUBDIR += p5-GD SUBDIR += p5-GD-Arrow SUBDIR += p5-GD-Barcode SUBDIR += p5-GD-Graph SUBDIR += p5-GD-Graph-histogram SUBDIR += p5-GD-Graph-ohlc SUBDIR += p5-GD-Graph3d SUBDIR += p5-GD-SVG SUBDIR += p5-GD-TextUtil SUBDIR += p5-GD-Thumbnail SUBDIR += p5-Geo-EOP SUBDIR += p5-Geo-GDAL-FFI SUBDIR += p5-Geo-GML SUBDIR += p5-Geo-Gpx SUBDIR += p5-Geometry-Primitive SUBDIR += p5-Gimp SUBDIR += p5-Google-Chart SUBDIR += p5-Graph-Easy SUBDIR += p5-Graph-ReadWrite SUBDIR += p5-Graph-SocialMap SUBDIR += p5-Graph-Writer-GraphViz SUBDIR += p5-GraphViz SUBDIR += p5-GraphViz-Data-Structure SUBDIR += p5-GraphViz-Traverse SUBDIR += p5-GraphViz2 SUBDIR += p5-GraphViz2-DBI SUBDIR += p5-GraphViz2-Data-Grapher SUBDIR += p5-GraphViz2-Parse-ISA SUBDIR += p5-GraphViz2-Parse-RecDescent SUBDIR += p5-GraphViz2-Parse-XML SUBDIR += p5-Graphics-Color SUBDIR += p5-Graphics-ColorNames SUBDIR += p5-Graphics-ColorNames-WWW SUBDIR += p5-Graphics-ColorUtils SUBDIR += p5-Graphics-GnuplotIF SUBDIR += p5-Graphics-Primitive SUBDIR += p5-Graphics-Primitive-Driver-Cairo SUBDIR += p5-Graphics-TIFF SUBDIR += p5-Image-Base SUBDIR += p5-Image-Base-SVG SUBDIR += p5-Image-Caa SUBDIR += p5-Image-Compare SUBDIR += p5-Image-ExifTool SUBDIR += p5-Image-ExifTool-devel SUBDIR += p5-Image-Grab SUBDIR += p5-Image-Heatmap SUBDIR += p5-Image-IPTCInfo SUBDIR += p5-Image-Imgur SUBDIR += p5-Image-Imlib2 SUBDIR += p5-Image-Info SUBDIR += p5-Image-LibExif SUBDIR += p5-Image-Magick-Iterator SUBDIR += p5-Image-Math-Constrain SUBDIR += p5-Image-MetaData-GQview SUBDIR += p5-Image-MetaData-JPEG SUBDIR += p5-Image-OCR-Tesseract SUBDIR += p5-Image-ObjectDetect SUBDIR += p5-Image-PBMlib SUBDIR += p5-Image-PNG-Libpng SUBDIR += p5-Image-PNG-QRCode SUBDIR += p5-Image-Pngslimmer SUBDIR += p5-Image-Sane SUBDIR += p5-Image-Scale SUBDIR += p5-Image-Size SUBDIR += p5-Imager SUBDIR += p5-Imager-Graph SUBDIR += p5-Imager-Plot SUBDIR += p5-Imager-QRCode SUBDIR += p5-Imlib2 SUBDIR += p5-Layout-Manager SUBDIR += p5-OpenGL SUBDIR += p5-PGPLOT SUBDIR += p5-SVG-DOM2 SUBDIR += p5-SVG-Graph SUBDIR += p5-SVG-Metadata SUBDIR += p5-SWF-Builder SUBDIR += p5-SWF-File SUBDIR += p5-Sane SUBDIR += p5-SpringGraph SUBDIR += p5-Tk-JPEG-Lite SUBDIR += p5-URI-GoogleChart SUBDIR += p5-VCG SUBDIR += p5-Visio SUBDIR += p5-feedgnuplot SUBDIR += p5-ming SUBDIR += panoglview SUBDIR += panomatic SUBDIR += partio SUBDIR += pastel SUBDIR += pcl-pointclouds SUBDIR += pdf2svg SUBDIR += pdfpc SUBDIR += pear-Horde_Image SUBDIR += pear-Image_3D SUBDIR += pear-Image_Barcode SUBDIR += pear-Image_Barcode2 SUBDIR += pear-Image_Canvas SUBDIR += pear-Image_Color SUBDIR += pear-Image_Graph SUBDIR += pear-Image_GraphViz SUBDIR += pear-Image_Transform SUBDIR += pecl-imagick SUBDIR += pecl-imagick-im7 SUBDIR += pecl-qrencode SUBDIR += pecl-vips SUBDIR += pencil2d SUBDIR += peps SUBDIR += perceptualdiff SUBDIR += peruse SUBDIR += pfstools SUBDIR += pgplot SUBDIR += pho SUBDIR += photivo SUBDIR += photoflare SUBDIR += photopc SUBDIR += photoqt SUBDIR += phototonic SUBDIR += php-facedetect SUBDIR += php-geos SUBDIR += php74-exif SUBDIR += php74-gd SUBDIR += php80-exif SUBDIR += php80-gd SUBDIR += php81-exif SUBDIR += php81-gd SUBDIR += php82-exif SUBDIR += php82-gd SUBDIR += phplot SUBDIR += picpuz SUBDIR += piddle SUBDIR += piglit SUBDIR += pikchr SUBDIR += pikopixel SUBDIR += pinpoint SUBDIR += pinta SUBDIR += pixd SUBDIR += pixelize SUBDIR += pixen SUBDIR += pixie SUBDIR += plasma-kmod SUBDIR += plotutils SUBDIR += png SUBDIR += png++ SUBDIR += png2html SUBDIR += png2ico SUBDIR += pngcheck SUBDIR += pngcrush SUBDIR += pnglite SUBDIR += pngnq SUBDIR += pngquant SUBDIR += pngrewrite SUBDIR += pngwriter SUBDIR += podofo SUBDIR += polyclipping SUBDIR += poppler SUBDIR += poppler-data SUBDIR += poppler-glib SUBDIR += poppler-qt5 SUBDIR += poppler-utils SUBDIR += potrace SUBDIR += povray-meta SUBDIR += povray36 SUBDIR += povray37 SUBDIR += povray38 SUBDIR += ppmcaption SUBDIR += ppminfo SUBDIR += ppsei SUBDIR += pqiv SUBDIR += preview SUBDIR += price SUBDIR += processing SUBDIR += proj SUBDIR += proj-data SUBDIR += pstoedit SUBDIR += ptex SUBDIR += py-OWSLib SUBDIR += py-PyOpenGL SUBDIR += py-PyOpenGL-accelerate SUBDIR += py-actdiag SUBDIR += py-altair SUBDIR += py-asciitree SUBDIR += py-beziers SUBDIR += py-blockdiag SUBDIR += py-blockdiagcontrib-cisco SUBDIR += py-box2d-py SUBDIR += py-cairo SUBDIR += py-cairocffi SUBDIR += py-cairosvg SUBDIR += py-cartopy SUBDIR += py-cogdumper SUBDIR += py-colour SUBDIR += py-descartes SUBDIR += py-django-easy-thumbnails SUBDIR += py-djvulibre SUBDIR += py-exifread SUBDIR += py-face_recognition SUBDIR += py-face_recognition_models SUBDIR += py-fiona SUBDIR += py-freeimagepy SUBDIR += py-gdal SUBDIR += py-geomdl SUBDIR += py-geopandas SUBDIR += py-giddy SUBDIR += py-gizeh SUBDIR += py-glfw SUBDIR += py-glooey SUBDIR += py-gphoto2 SUBDIR += py-graphlib-backport SUBDIR += py-graphviz SUBDIR += py-graphy SUBDIR += py-gvgen SUBDIR += py-h3 SUBDIR += py-hiplot SUBDIR += py-imageio SUBDIR += py-imageio-ffmpeg SUBDIR += py-imagesize SUBDIR += py-img2pdf SUBDIR += py-leather SUBDIR += py-mapclassify SUBDIR += py-mayavi SUBDIR += py-mcomix SUBDIR += py-mgwr SUBDIR += py-ming SUBDIR += py-momepy SUBDIR += py-mpl-interactions SUBDIR += py-mpl-scatter-density SUBDIR += py-nwdiag SUBDIR += py-open3d-python SUBDIR += py-opencolorio SUBDIR += py-openimageio SUBDIR += py-openshadinglanguage SUBDIR += py-osmnet SUBDIR += py-pandana SUBDIR += py-photocollage SUBDIR += py-piexif SUBDIR += py-pillow SUBDIR += py-pivy SUBDIR += py-plotly SUBDIR += py-png SUBDIR += py-pointpats SUBDIR += py-projpicker SUBDIR += py-pycha SUBDIR += py-pycollada SUBDIR += py-pydot SUBDIR += py-pydotplus SUBDIR += py-pyepsg SUBDIR += py-pygal SUBDIR += py-pyganim SUBDIR += py-pygeoapi SUBDIR += py-pygeos SUBDIR += py-pyglet SUBDIR += py-pygraph SUBDIR += py-pygraphviz SUBDIR += py-pyinsane2 SUBDIR += py-pymaging SUBDIR += py-pymaging-png SUBDIR += py-pyocr SUBDIR += py-pypillowfight SUBDIR += py-pyproj SUBDIR += py-pyqrcode SUBDIR += py-pyqtgraph SUBDIR += py-pyrsgis SUBDIR += py-pytesseract SUBDIR += py-python-poppler-qt5 SUBDIR += py-pyvips SUBDIR += py-pyvista SUBDIR += py-pyx SUBDIR += py-qpageview SUBDIR += py-qrencode SUBDIR += py-railroad-diagrams SUBDIR += py-rasterio SUBDIR += py-rasterstats SUBDIR += py-rawkit SUBDIR += py-s2 SUBDIR += py-scikit-image SUBDIR += py-seqdiag SUBDIR += py-sorl-thumbnail SUBDIR += py-spectra SUBDIR += py-svg.path SUBDIR += py-svgwrite SUBDIR += py-termtosvg SUBDIR += py-tifffile SUBDIR += py-toyplot SUBDIR += py-traitsui SUBDIR += py-ueberzug SUBDIR += py-urbanaccess SUBDIR += py-urbansim SUBDIR += py-utm SUBDIR += py-vecrec SUBDIR += py-visvis SUBDIR += py-wand SUBDIR += py-webcolors SUBDIR += py-willow SUBDIR += py-yaswfp SUBDIR += py-zbar-py SUBDIR += qcomicbook SUBDIR += qcustomplot-qt5 SUBDIR += qgis SUBDIR += qgis-ltr SUBDIR += qiv SUBDIR += qr-code-generator SUBDIR += qt5-3d SUBDIR += qt5-graphicaleffects SUBDIR += qt5-imageformats SUBDIR += qt5-opengl SUBDIR += qt5-pixeltool SUBDIR += qt5-svg SUBDIR += qt5-wayland + SUBDIR += qt6-3d + SUBDIR += qt6-imageformats + SUBDIR += qt6-svg + SUBDIR += qt6-wayland SUBDIR += qtawesome SUBDIR += qtpbfimageplugin SUBDIR += qtqr SUBDIR += quat SUBDIR += quat-gui SUBDIR += quesa SUBDIR += quesoglc SUBDIR += quickqanava SUBDIR += qvge SUBDIR += radius-engine SUBDIR += rapid-photo-downloader SUBDIR += raster3d SUBDIR += rawstudio SUBDIR += rawtherapee SUBDIR += rayshade SUBDIR += reactphysics3d SUBDIR += reallyslick SUBDIR += realsr-ncnn-vulkan SUBDIR += recastnavigation SUBDIR += recoverjpeg SUBDIR += renrot SUBDIR += repng2jpeg SUBDIR += rgbpaint SUBDIR += rigsofrods-caelum SUBDIR += rigsofrods-pagedgeometry SUBDIR += ristretto SUBDIR += rlottie SUBDIR += ruby-gd SUBDIR += rubygem-cairo SUBDIR += rubygem-captcha SUBDIR += rubygem-chunky_png SUBDIR += rubygem-clutter SUBDIR += rubygem-clutter-gdk SUBDIR += rubygem-clutter-gtk SUBDIR += rubygem-dragonfly SUBDIR += rubygem-emoji SUBDIR += rubygem-exifr SUBDIR += rubygem-ezprint SUBDIR += rubygem-fastimage SUBDIR += rubygem-flamegraph SUBDIR += rubygem-gd2 SUBDIR += rubygem-gdk_pixbuf2 SUBDIR += rubygem-gemojione SUBDIR += rubygem-gemojione32 SUBDIR += rubygem-geokit SUBDIR += rubygem-gitlab_emoji SUBDIR += rubygem-gruff SUBDIR += rubygem-histogram SUBDIR += rubygem-image_processing SUBDIR += rubygem-image_science SUBDIR += rubygem-imagesize SUBDIR += rubygem-invisible_captcha SUBDIR += rubygem-mini_magick SUBDIR += rubygem-mini_magick410 SUBDIR += rubygem-objectdetect SUBDIR += rubygem-opengl SUBDIR += rubygem-pdfkit SUBDIR += rubygem-png SUBDIR += rubygem-railroad SUBDIR += rubygem-red-colors SUBDIR += rubygem-rmagick SUBDIR += rubygem-rsvg2 SUBDIR += rubygem-ruby-graphviz SUBDIR += rubygem-ruby-vips SUBDIR += rubygem-scruffy SUBDIR += rubygem-tanuki_emoji SUBDIR += rx SUBDIR += s10sh SUBDIR += s2 SUBDIR += s2tc SUBDIR += sage SUBDIR += sam2p SUBDIR += sampleicc SUBDIR += sane-airscan SUBDIR += sane-backends SUBDIR += sane-epkowa SUBDIR += scale2x SUBDIR += scantailor SUBDIR += scr2png SUBDIR += scrot SUBDIR += scwm-icons SUBDIR += sdl2_gfx SUBDIR += sdl2_image SUBDIR += sdl2_ttf SUBDIR += sdl_gfx SUBDIR += sdl_image SUBDIR += sdl_ttf SUBDIR += sdump SUBDIR += seejpeg SUBDIR += seexpr SUBDIR += sekrit-twc-zimg SUBDIR += seom SUBDIR += separate SUBDIR += seq2gif SUBDIR += shaderc SUBDIR += shared-color-profiles SUBDIR += sharpconstruct SUBDIR += shotwell SUBDIR += showimage SUBDIR += silgraphite SUBDIR += simage SUBDIR += simple-scan SUBDIR += simpleviewer SUBDIR += skanlite SUBDIR += skanpage SUBDIR += spectacle SUBDIR += spirv-tools SUBDIR += springgraph SUBDIR += squish SUBDIR += ssocr SUBDIR += sswf SUBDIR += stamp SUBDIR += svg2pdf SUBDIR += svg2png SUBDIR += svgalib SUBDIR += svgbob SUBDIR += swappy SUBDIR += swfmill SUBDIR += swftools SUBDIR += synaesthesia SUBDIR += synfig SUBDIR += synfigstudio SUBDIR += tachyon SUBDIR += telak SUBDIR += tesseract SUBDIR += tesseract-data SUBDIR += tgif SUBDIR += tif22pnm SUBDIR += tiff SUBDIR += tiffgt SUBDIR += tifmerge SUBDIR += tikzit SUBDIR += tiled SUBDIR += timeless SUBDIR += timg SUBDIR += tintfu SUBDIR += tinyows SUBDIR += tkpng SUBDIR += togl SUBDIR += tslib SUBDIR += ttygif SUBDIR += ttyplot SUBDIR += tumble SUBDIR += tweeny SUBDIR += ufraw SUBDIR += unpaper SUBDIR += urho3d SUBDIR += urt SUBDIR += vapoursynth-fmtconv SUBDIR += vapoursynth-waifu2x-ncnn-vulkan SUBDIR += vapoursynth-waifu2x-w2xc SUBDIR += variety SUBDIR += vcg SUBDIR += viewnior SUBDIR += vigra SUBDIR += vips SUBDIR += visprint SUBDIR += viu SUBDIR += vkd3d SUBDIR += volpack SUBDIR += vp SUBDIR += vpaint SUBDIR += vulkan-caps-viewer SUBDIR += vulkan-extension-layer SUBDIR += vulkan-headers SUBDIR += vulkan-loader SUBDIR += vulkan-tools SUBDIR += vulkan-validation-layers SUBDIR += vv SUBDIR += waffle SUBDIR += waifu2x-converter-cpp SUBDIR += waifu2x-ncnn-vulkan SUBDIR += wayland SUBDIR += wayland-protocols SUBDIR += wayland-utils SUBDIR += waylandpp SUBDIR += wdune SUBDIR += webp SUBDIR += webp-pixbuf-loader SUBDIR += wings SUBDIR += wmicons SUBDIR += wrapland SUBDIR += wxsvg SUBDIR += xaos SUBDIR += xbmbrowser SUBDIR += xcftools SUBDIR += xd3d SUBDIR += xdgagrab SUBDIR += xfig SUBDIR += xfpovray SUBDIR += xfractint SUBDIR += xglurbules SUBDIR += xgrasp SUBDIR += xli SUBDIR += xmedcon SUBDIR += xmlgraphics-commons SUBDIR += xmountains SUBDIR += xnview SUBDIR += xoris SUBDIR += xournal SUBDIR += xournalpp SUBDIR += xpaint SUBDIR += xpdf SUBDIR += xpdf3 SUBDIR += xpdf4 SUBDIR += xpeps SUBDIR += xpx SUBDIR += xsane SUBDIR += xsvg SUBDIR += xtexcad SUBDIR += xv SUBDIR += xv-m17n SUBDIR += xviewer SUBDIR += xwpick SUBDIR += xzgv SUBDIR += yacreader SUBDIR += yafaray SUBDIR += yed SUBDIR += yukon SUBDIR += zathura SUBDIR += zathura-cb SUBDIR += zathura-djvu SUBDIR += zathura-pdf-mupdf SUBDIR += zathura-pdf-poppler SUBDIR += zathura-ps SUBDIR += zbar SUBDIR += zgv SUBDIR += zimg SUBDIR += zint SUBDIR += zphoto .include diff --git a/graphics/qt6-3d/Makefile b/graphics/qt6-3d/Makefile new file mode 100644 index 000000000000..c5b79baf3af6 --- /dev/null +++ b/graphics/qt6-3d/Makefile @@ -0,0 +1,40 @@ +# TODO: fix build with CPUTYPE set -- see qt5-3d for the same issue: +# /wrkdirs/usr/ports/graphics/qt6-3d/work/qt3d-everywhere-src-6.2.1/src/render/jobs/abstractpickingjob.cpp:110:33: error: no viable conversion from 'const Matrix4x4' (aka 'const Qt3DCore::Matrix4x4_SSE') to incomplete type 'const Qt3DCore::Matrix4x4_AVX2' +# nearPos = nearPos.unproject(viewMatrix, projectionMatrix, viewport); +# ^~~~~~~~~~ +# /wrkdirs/usr/ports/graphics/qt6-3d/work/.build/include/Qt3DCore/6.2.1/Qt3DCore/private/../../../../../../qt3d-everywhere-src-6.2.1/src/core/transforms/vector3d_sse_p.h:68:7: note: forward declaration of 'Qt3DCore::Matrix4x4_AVX2' +# class Matrix4x4_AVX2; + +PORTNAME= 3d +DISTVERSION= ${QT6_VERSION} +CATEGORIES= graphics +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= C++ and QML APIs for easy inclusion of 3D graphics + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libassimp.so:multimedia/assimp \ + libdouble-conversion.so:devel/double-conversion \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicudata.so:devel/icu \ + libminizip.so:archivers/minizip \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome python:build \ + pkgconfig qt-dist:6 +USE_GL= gl +USE_GNOME= glib20 +USE_QT= base declarative shadertools +USE_XORG= x11 xau xcb xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/graphics/qt6-3d/distinfo b/graphics/qt6-3d/distinfo new file mode 100644 index 000000000000..91c27618f611 --- /dev/null +++ b/graphics/qt6-3d/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482603 +SHA256 (KDE/Qt/6.3.1/qt3d-everywhere-src-6.3.1.tar.xz) = 9919b66dfb253fa26db1a7d664358cbc07f46c8810082ee3120d0a54b153edfe +SIZE (KDE/Qt/6.3.1/qt3d-everywhere-src-6.3.1.tar.xz) = 104053756 diff --git a/graphics/qt6-3d/files/patch-src_3rdparty_assimp_src_contrib_zip_src_miniz.h b/graphics/qt6-3d/files/patch-src_3rdparty_assimp_src_contrib_zip_src_miniz.h new file mode 100644 index 000000000000..94087bd99309 --- /dev/null +++ b/graphics/qt6-3d/files/patch-src_3rdparty_assimp_src_contrib_zip_src_miniz.h @@ -0,0 +1,13 @@ +--- src/3rdparty/assimp/src/contrib/zip/src/miniz.h.orig 2021-10-21 09:07:21 UTC ++++ src/3rdparty/assimp/src/contrib/zip/src/miniz.h +@@ -4201,8 +4201,8 @@ static FILE *mz_freopen(const char *pPath, const char + #define MZ_FWRITE fwrite + #define MZ_FTELL64 ftello64 + #define MZ_FSEEK64 fseeko64 +-#define MZ_FILE_STAT_STRUCT stat64 +-#define MZ_FILE_STAT stat64 ++#define MZ_FILE_STAT_STRUCT stat ++#define MZ_FILE_STAT stat + #define MZ_FFLUSH fflush + #define MZ_FREOPEN(p, m, s) freopen64(p, m, s) + #define MZ_DELETE_FILE remove diff --git a/graphics/qt6-3d/pkg-descr b/graphics/qt6-3d/pkg-descr new file mode 100644 index 000000000000..9b46f3656591 --- /dev/null +++ b/graphics/qt6-3d/pkg-descr @@ -0,0 +1,7 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Functionality for near-realtime simulation systems with support +for 2D and 3D rendering. + +WWW: http://qt-project.org diff --git a/graphics/qt6-3d/pkg-plist b/graphics/qt6-3d/pkg-plist new file mode 100644 index 000000000000..81c1be959aad --- /dev/null +++ b/graphics/qt6-3d/pkg-plist @@ -0,0 +1,1458 @@ +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/abstractevaluateclipanimatorjob_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/additiveclipblend_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/animationclip_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/animationlogging_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/animationutils_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/backendnode_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/bezierevaluator_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/blendedclipanimator_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/buildblendtreesjob_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/channelmapper_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/channelmapping_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clipanimator_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clipblendnode_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clipblendnodevisitor_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clipblendvalue_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/clock_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/evaluateblendclipanimatorjob_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/evaluateclipanimatorjob_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/fcurve_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/findrunningclipanimatorsjob_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/functionrangefinder_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/gltfimporter_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/handle_types_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/handler_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/job_common_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/keyframe_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/lerpclipblend_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/loadanimationclipjob_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/managers_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/nodefunctor_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractanimation_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractanimationclip_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractchannelmapping_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractclipanimator_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qabstractclipblendnode_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qadditiveclipblend_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationaspect_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationclip_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationcliploader_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationcontroller_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qanimationgroup_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qblendedclipanimator_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qcallbackmapping_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qchannelmapper_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qchannelmapping_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qclipanimator_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qclipblendvalue_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qclock_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qkeyframeanimation_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qlerpclipblend_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qmorphinganimation_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qmorphtarget_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qskeletonmapping_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qt3danimation_global_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/qvertexblendanimation_p.h +%%QT_INCDIR%%/Qt3DAnimation/%%FULLVER%%/Qt3DAnimation/private/skeleton_p.h +%%QT_INCDIR%%/Qt3DAnimation/QAbstractAnimation +%%QT_INCDIR%%/Qt3DAnimation/QAbstractAnimationClip +%%QT_INCDIR%%/Qt3DAnimation/QAbstractChannelMapping +%%QT_INCDIR%%/Qt3DAnimation/QAbstractClipAnimator +%%QT_INCDIR%%/Qt3DAnimation/QAbstractClipBlendNode +%%QT_INCDIR%%/Qt3DAnimation/QAdditiveClipBlend +%%QT_INCDIR%%/Qt3DAnimation/QAnimationAspect +%%QT_INCDIR%%/Qt3DAnimation/QAnimationCallback +%%QT_INCDIR%%/Qt3DAnimation/QAnimationClip +%%QT_INCDIR%%/Qt3DAnimation/QAnimationClipData +%%QT_INCDIR%%/Qt3DAnimation/QAnimationClipLoader +%%QT_INCDIR%%/Qt3DAnimation/QAnimationController +%%QT_INCDIR%%/Qt3DAnimation/QAnimationGroup +%%QT_INCDIR%%/Qt3DAnimation/QBlendedClipAnimator +%%QT_INCDIR%%/Qt3DAnimation/QCallbackMapping +%%QT_INCDIR%%/Qt3DAnimation/QChannel +%%QT_INCDIR%%/Qt3DAnimation/QChannelComponent +%%QT_INCDIR%%/Qt3DAnimation/QChannelMapper +%%QT_INCDIR%%/Qt3DAnimation/QChannelMapping +%%QT_INCDIR%%/Qt3DAnimation/QClipAnimator +%%QT_INCDIR%%/Qt3DAnimation/QClipBlendValue +%%QT_INCDIR%%/Qt3DAnimation/QClock +%%QT_INCDIR%%/Qt3DAnimation/QKeyFrame +%%QT_INCDIR%%/Qt3DAnimation/QKeyframeAnimation +%%QT_INCDIR%%/Qt3DAnimation/QLerpClipBlend +%%QT_INCDIR%%/Qt3DAnimation/QMorphTarget +%%QT_INCDIR%%/Qt3DAnimation/QMorphingAnimation +%%QT_INCDIR%%/Qt3DAnimation/QSkeletonMapping +%%QT_INCDIR%%/Qt3DAnimation/QVertexBlendAnimation +%%QT_INCDIR%%/Qt3DAnimation/Qt3DAnimation +%%QT_INCDIR%%/Qt3DAnimation/Qt3DAnimationDepends +%%QT_INCDIR%%/Qt3DAnimation/Qt3DAnimationVersion +%%QT_INCDIR%%/Qt3DAnimation/qabstractanimation.h +%%QT_INCDIR%%/Qt3DAnimation/qabstractanimationclip.h +%%QT_INCDIR%%/Qt3DAnimation/qabstractchannelmapping.h +%%QT_INCDIR%%/Qt3DAnimation/qabstractclipanimator.h +%%QT_INCDIR%%/Qt3DAnimation/qabstractclipblendnode.h +%%QT_INCDIR%%/Qt3DAnimation/qadditiveclipblend.h +%%QT_INCDIR%%/Qt3DAnimation/qanimationaspect.h +%%QT_INCDIR%%/Qt3DAnimation/qanimationcallback.h +%%QT_INCDIR%%/Qt3DAnimation/qanimationclip.h +%%QT_INCDIR%%/Qt3DAnimation/qanimationclipdata.h +%%QT_INCDIR%%/Qt3DAnimation/qanimationcliploader.h +%%QT_INCDIR%%/Qt3DAnimation/qanimationcontroller.h +%%QT_INCDIR%%/Qt3DAnimation/qanimationgroup.h +%%QT_INCDIR%%/Qt3DAnimation/qblendedclipanimator.h +%%QT_INCDIR%%/Qt3DAnimation/qcallbackmapping.h +%%QT_INCDIR%%/Qt3DAnimation/qchannel.h +%%QT_INCDIR%%/Qt3DAnimation/qchannelcomponent.h +%%QT_INCDIR%%/Qt3DAnimation/qchannelmapper.h +%%QT_INCDIR%%/Qt3DAnimation/qchannelmapping.h +%%QT_INCDIR%%/Qt3DAnimation/qclipanimator.h +%%QT_INCDIR%%/Qt3DAnimation/qclipblendvalue.h +%%QT_INCDIR%%/Qt3DAnimation/qclock.h +%%QT_INCDIR%%/Qt3DAnimation/qkeyframe.h +%%QT_INCDIR%%/Qt3DAnimation/qkeyframeanimation.h +%%QT_INCDIR%%/Qt3DAnimation/qlerpclipblend.h +%%QT_INCDIR%%/Qt3DAnimation/qmorphinganimation.h +%%QT_INCDIR%%/Qt3DAnimation/qmorphtarget.h +%%QT_INCDIR%%/Qt3DAnimation/qskeletonmapping.h +%%QT_INCDIR%%/Qt3DAnimation/qt3danimation_global.h +%%QT_INCDIR%%/Qt3DAnimation/qt3danimationversion.h +%%QT_INCDIR%%/Qt3DAnimation/qvertexblendanimation.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/aligned_malloc_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/aspectcommanddebugger_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/bufferutils_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/buffervisitor_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/calcboundingvolumejob_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/corelogging_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/coresettings_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/job_common_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/matrix4x4_avx2_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/matrix4x4_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/matrix4x4_sse_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/nullservices_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/propertychangehandler_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractaspect_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractaspectjobmanager_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractframeadvanceservice_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractframeadvanceservice_p_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractfrontendnodemanager_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractnodefactory_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractserviceprovider_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qabstractskeleton_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qarmature_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectengine_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectfactory_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjob_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjobmanager_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectjobproviderinterface_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qaspectmanager_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qattribute_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qbackendnode_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qboundingvolume_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qbuffer_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qchangearbiter_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcomponent_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcoreaspect_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qcoresettings_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdestructionidandtypecollector_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdownloadhelperservice_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdownloadhelperservice_p_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qdownloadnetworkworker_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qentity_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qeventfilterservice_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qgeometry_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qgeometryfactory_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qgeometryview_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qhandle_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qjoint_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qloadgltf_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qmath3d_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnode_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qnodevisitor_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qopenglinformationservice_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qopenglinformationservice_p_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qresourcemanager_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscene_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qscheduler_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qservicelocator_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qskeleton_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qskeletonloader_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qsysteminformationservice_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qsysteminformationservice_p_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qt3dcore-config_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qt3dcore_global_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qthreadpooler_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtickclock_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtickclockservice_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qtransform_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/qurlhelper_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/sqt_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/task_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector3d_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector3d_sse_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector4d_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector4d_sse_p.h +%%QT_INCDIR%%/Qt3DCore/%%FULLVER%%/Qt3DCore/private/vector_helper_p.h +%%QT_INCDIR%%/Qt3DCore/FunctorType +%%QT_INCDIR%%/Qt3DCore/QAbstractAspect +%%QT_INCDIR%%/Qt3DCore/QAbstractFunctor +%%QT_INCDIR%%/Qt3DCore/QAbstractSkeleton +%%QT_INCDIR%%/Qt3DCore/QArmature +%%QT_INCDIR%%/Qt3DCore/QAspectEngine +%%QT_INCDIR%%/Qt3DCore/QAspectJob +%%QT_INCDIR%%/Qt3DCore/QAspectJobPtr +%%QT_INCDIR%%/Qt3DCore/QAttribute +%%QT_INCDIR%%/Qt3DCore/QBackendNode +%%QT_INCDIR%%/Qt3DCore/QBackendNodeMapper +%%QT_INCDIR%%/Qt3DCore/QBackendNodeMapperPtr +%%QT_INCDIR%%/Qt3DCore/QBoundingVolume +%%QT_INCDIR%%/Qt3DCore/QBuffer +%%QT_INCDIR%%/Qt3DCore/QBufferPtr +%%QT_INCDIR%%/Qt3DCore/QComponent +%%QT_INCDIR%%/Qt3DCore/QCoreAspect +%%QT_INCDIR%%/Qt3DCore/QCoreSettings +%%QT_INCDIR%%/Qt3DCore/QEntity +%%QT_INCDIR%%/Qt3DCore/QEntityPtr +%%QT_INCDIR%%/Qt3DCore/QGeometry +%%QT_INCDIR%%/Qt3DCore/QGeometryFactoryPtr +%%QT_INCDIR%%/Qt3DCore/QGeometryView +%%QT_INCDIR%%/Qt3DCore/QJoint +%%QT_INCDIR%%/Qt3DCore/QNode +%%QT_INCDIR%%/Qt3DCore/QNodeId +%%QT_INCDIR%%/Qt3DCore/QNodeIdTypePair +%%QT_INCDIR%%/Qt3DCore/QSkeleton +%%QT_INCDIR%%/Qt3DCore/QSkeletonLoader +%%QT_INCDIR%%/Qt3DCore/QTransform +%%QT_INCDIR%%/Qt3DCore/Qt3DCore +%%QT_INCDIR%%/Qt3DCore/Qt3DCoreDepends +%%QT_INCDIR%%/Qt3DCore/Qt3DCoreVersion +%%QT_INCDIR%%/Qt3DCore/qabstractaspect.h +%%QT_INCDIR%%/Qt3DCore/qabstractfunctor.h +%%QT_INCDIR%%/Qt3DCore/qabstractskeleton.h +%%QT_INCDIR%%/Qt3DCore/qarmature.h +%%QT_INCDIR%%/Qt3DCore/qaspectengine.h +%%QT_INCDIR%%/Qt3DCore/qaspectjob.h +%%QT_INCDIR%%/Qt3DCore/qattribute.h +%%QT_INCDIR%%/Qt3DCore/qbackendnode.h +%%QT_INCDIR%%/Qt3DCore/qboundingvolume.h +%%QT_INCDIR%%/Qt3DCore/qbuffer.h +%%QT_INCDIR%%/Qt3DCore/qcomponent.h +%%QT_INCDIR%%/Qt3DCore/qcoreaspect.h +%%QT_INCDIR%%/Qt3DCore/qcoresettings.h +%%QT_INCDIR%%/Qt3DCore/qentity.h +%%QT_INCDIR%%/Qt3DCore/qgeometry.h +%%QT_INCDIR%%/Qt3DCore/qgeometryview.h +%%QT_INCDIR%%/Qt3DCore/qjoint.h +%%QT_INCDIR%%/Qt3DCore/qnode.h +%%QT_INCDIR%%/Qt3DCore/qnodeid.h +%%QT_INCDIR%%/Qt3DCore/qskeleton.h +%%QT_INCDIR%%/Qt3DCore/qskeletonloader.h +%%QT_INCDIR%%/Qt3DCore/qt3dcore-config.h +%%QT_INCDIR%%/Qt3DCore/qt3dcore_global.h +%%QT_INCDIR%%/Qt3DCore/qt3dcoreversion.h +%%QT_INCDIR%%/Qt3DCore/qtransform.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/areaallocator_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/distancefieldtextrenderer_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/distancefieldtextrenderer_p_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qabstractcameracontroller_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qabstractspritesheet_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qconegeometry_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qcuboidgeometry_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qcylindergeometry_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdiffusemapmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdiffusespecularmapmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdiffusespecularmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qdistancefieldglyphcache_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qextrudedtextgeometry_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qforwardrenderer_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qgoochmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qmetalroughmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qmorphphongmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusemapalphamaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusemapmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qnormaldiffusespecularmapmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qorbitcameracontroller_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qpervertexcolormaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qphongalphamaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qphongmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qplanegeometry_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qskyboxentity_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspheregeometry_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspritegrid_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspritesheet_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qspritesheetitem_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qt3dwindow_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtext2dentity_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtext2dmaterial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtext2dmaterial_p_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtextureatlas_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtextureatlas_p_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtexturematerial_p.h +%%QT_INCDIR%%/Qt3DExtras/%%FULLVER%%/Qt3DExtras/private/qtorusgeometry_p.h +%%QT_INCDIR%%/Qt3DExtras/QAbstractCameraController +%%QT_INCDIR%%/Qt3DExtras/QAbstractSpriteSheet +%%QT_INCDIR%%/Qt3DExtras/QConeGeometry +%%QT_INCDIR%%/Qt3DExtras/QConeGeometryView +%%QT_INCDIR%%/Qt3DExtras/QConeMesh +%%QT_INCDIR%%/Qt3DExtras/QCuboidGeometry +%%QT_INCDIR%%/Qt3DExtras/QCuboidGeometryView +%%QT_INCDIR%%/Qt3DExtras/QCuboidMesh +%%QT_INCDIR%%/Qt3DExtras/QCylinderGeometry +%%QT_INCDIR%%/Qt3DExtras/QCylinderGeometryView +%%QT_INCDIR%%/Qt3DExtras/QCylinderMesh +%%QT_INCDIR%%/Qt3DExtras/QDiffuseMapMaterial +%%QT_INCDIR%%/Qt3DExtras/QDiffuseSpecularMapMaterial +%%QT_INCDIR%%/Qt3DExtras/QDiffuseSpecularMaterial +%%QT_INCDIR%%/Qt3DExtras/QExtrudedTextGeometry +%%QT_INCDIR%%/Qt3DExtras/QExtrudedTextMesh +%%QT_INCDIR%%/Qt3DExtras/QFirstPersonCameraController +%%QT_INCDIR%%/Qt3DExtras/QForwardRenderer +%%QT_INCDIR%%/Qt3DExtras/QGoochMaterial +%%QT_INCDIR%%/Qt3DExtras/QMetalRoughMaterial +%%QT_INCDIR%%/Qt3DExtras/QMorphPhongMaterial +%%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseMapAlphaMaterial +%%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseMapMaterial +%%QT_INCDIR%%/Qt3DExtras/QNormalDiffuseSpecularMapMaterial +%%QT_INCDIR%%/Qt3DExtras/QOrbitCameraController +%%QT_INCDIR%%/Qt3DExtras/QPerVertexColorMaterial +%%QT_INCDIR%%/Qt3DExtras/QPhongAlphaMaterial +%%QT_INCDIR%%/Qt3DExtras/QPhongMaterial +%%QT_INCDIR%%/Qt3DExtras/QPlaneGeometry +%%QT_INCDIR%%/Qt3DExtras/QPlaneGeometryView +%%QT_INCDIR%%/Qt3DExtras/QPlaneMesh +%%QT_INCDIR%%/Qt3DExtras/QSkyboxEntity +%%QT_INCDIR%%/Qt3DExtras/QSphereGeometry +%%QT_INCDIR%%/Qt3DExtras/QSphereGeometryView +%%QT_INCDIR%%/Qt3DExtras/QSphereMesh +%%QT_INCDIR%%/Qt3DExtras/QSpriteGrid +%%QT_INCDIR%%/Qt3DExtras/QSpriteSheet +%%QT_INCDIR%%/Qt3DExtras/QSpriteSheetItem +%%QT_INCDIR%%/Qt3DExtras/QText2DEntity +%%QT_INCDIR%%/Qt3DExtras/QTextureMaterial +%%QT_INCDIR%%/Qt3DExtras/QTorusGeometry +%%QT_INCDIR%%/Qt3DExtras/QTorusGeometryView +%%QT_INCDIR%%/Qt3DExtras/QTorusMesh +%%QT_INCDIR%%/Qt3DExtras/Qt3DExtras +%%QT_INCDIR%%/Qt3DExtras/Qt3DExtrasDepends +%%QT_INCDIR%%/Qt3DExtras/Qt3DExtrasVersion +%%QT_INCDIR%%/Qt3DExtras/Qt3DWindow +%%QT_INCDIR%%/Qt3DExtras/qabstractcameracontroller.h +%%QT_INCDIR%%/Qt3DExtras/qabstractspritesheet.h +%%QT_INCDIR%%/Qt3DExtras/qconegeometry.h +%%QT_INCDIR%%/Qt3DExtras/qconegeometryview.h +%%QT_INCDIR%%/Qt3DExtras/qconemesh.h +%%QT_INCDIR%%/Qt3DExtras/qcuboidgeometry.h +%%QT_INCDIR%%/Qt3DExtras/qcuboidgeometryview.h +%%QT_INCDIR%%/Qt3DExtras/qcuboidmesh.h +%%QT_INCDIR%%/Qt3DExtras/qcylindergeometry.h +%%QT_INCDIR%%/Qt3DExtras/qcylindergeometryview.h +%%QT_INCDIR%%/Qt3DExtras/qcylindermesh.h +%%QT_INCDIR%%/Qt3DExtras/qdiffusemapmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qdiffusespecularmapmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qdiffusespecularmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qextrudedtextgeometry.h +%%QT_INCDIR%%/Qt3DExtras/qextrudedtextmesh.h +%%QT_INCDIR%%/Qt3DExtras/qfirstpersoncameracontroller.h +%%QT_INCDIR%%/Qt3DExtras/qforwardrenderer.h +%%QT_INCDIR%%/Qt3DExtras/qgoochmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qmetalroughmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qmorphphongmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qnormaldiffusemapalphamaterial.h +%%QT_INCDIR%%/Qt3DExtras/qnormaldiffusemapmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qnormaldiffusespecularmapmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qorbitcameracontroller.h +%%QT_INCDIR%%/Qt3DExtras/qpervertexcolormaterial.h +%%QT_INCDIR%%/Qt3DExtras/qphongalphamaterial.h +%%QT_INCDIR%%/Qt3DExtras/qphongmaterial.h +%%QT_INCDIR%%/Qt3DExtras/qplanegeometry.h +%%QT_INCDIR%%/Qt3DExtras/qplanegeometryview.h +%%QT_INCDIR%%/Qt3DExtras/qplanemesh.h +%%QT_INCDIR%%/Qt3DExtras/qskyboxentity.h +%%QT_INCDIR%%/Qt3DExtras/qspheregeometry.h +%%QT_INCDIR%%/Qt3DExtras/qspheregeometryview.h +%%QT_INCDIR%%/Qt3DExtras/qspheremesh.h +%%QT_INCDIR%%/Qt3DExtras/qspritegrid.h +%%QT_INCDIR%%/Qt3DExtras/qspritesheet.h +%%QT_INCDIR%%/Qt3DExtras/qspritesheetitem.h +%%QT_INCDIR%%/Qt3DExtras/qt3dextras_global.h +%%QT_INCDIR%%/Qt3DExtras/qt3dextrasversion.h +%%QT_INCDIR%%/Qt3DExtras/qt3dwindow.h +%%QT_INCDIR%%/Qt3DExtras/qtext2dentity.h +%%QT_INCDIR%%/Qt3DExtras/qtexturematerial.h +%%QT_INCDIR%%/Qt3DExtras/qtorusgeometry.h +%%QT_INCDIR%%/Qt3DExtras/qtorusgeometryview.h +%%QT_INCDIR%%/Qt3DExtras/qtorusmesh.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/abstractactioninput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/abstractaxisinput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/action_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/actioninput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/analogaxisinput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/assignkeyboardfocusjob_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axis_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axisaccumulator_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axisaccumulatorjob_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/axissetting_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/backendnode_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/buttonaxisinput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/genericdevicebackendnode_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/handle_types_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputbackendnodefunctor_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputchord_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputhandler_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputmanagers_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputsequence_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/inputsettings_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/job_common_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboarddevice_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardhandler_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/keyboardmousegenericdeviceintegration_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/loadproxydevicejob_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/logicaldevice_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mousedevice_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/mousehandler_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/movingaverage_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/physicaldeviceproxy_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractactioninput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractaxisinput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevice_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevicebackendnode_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldevicebackendnode_p_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldeviceproxy_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qabstractphysicaldeviceproxy_p_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaction_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qactioninput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qanalogaxisinput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxis_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxisaccumulator_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qaxissetting_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qbuttonaxisinput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qgamepadinput_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qgenericinputdevice_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputaspect_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputchord_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegration_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegration_p_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceintegrationfactory_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputdeviceplugin_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputsequence_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qinputsettings_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qkeyboarddevice_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qkeyboardhandler_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qlogicaldevice_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qmousedevice_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qmousehandler_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/qt3dinput_global_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/updateaxisactionjob_p.h +%%QT_INCDIR%%/Qt3DInput/%%FULLVER%%/Qt3DInput/private/utils_p.h +%%QT_INCDIR%%/Qt3DInput/QAbstractActionInput +%%QT_INCDIR%%/Qt3DInput/QAbstractAxisInput +%%QT_INCDIR%%/Qt3DInput/QAbstractPhysicalDevice +%%QT_INCDIR%%/Qt3DInput/QAction +%%QT_INCDIR%%/Qt3DInput/QActionInput +%%QT_INCDIR%%/Qt3DInput/QAnalogAxisInput +%%QT_INCDIR%%/Qt3DInput/QAxis +%%QT_INCDIR%%/Qt3DInput/QAxisAccumulator +%%QT_INCDIR%%/Qt3DInput/QAxisSetting +%%QT_INCDIR%%/Qt3DInput/QButtonAxisInput +%%QT_INCDIR%%/Qt3DInput/QInputAspect +%%QT_INCDIR%%/Qt3DInput/QInputChord +%%QT_INCDIR%%/Qt3DInput/QInputSequence +%%QT_INCDIR%%/Qt3DInput/QInputSettings +%%QT_INCDIR%%/Qt3DInput/QKeyEvent +%%QT_INCDIR%%/Qt3DInput/QKeyEventPtr +%%QT_INCDIR%%/Qt3DInput/QKeyboardDevice +%%QT_INCDIR%%/Qt3DInput/QKeyboardHandler +%%QT_INCDIR%%/Qt3DInput/QLogicalDevice +%%QT_INCDIR%%/Qt3DInput/QMouseDevice +%%QT_INCDIR%%/Qt3DInput/QMouseEvent +%%QT_INCDIR%%/Qt3DInput/QMouseEventPtr +%%QT_INCDIR%%/Qt3DInput/QMouseHandler +%%QT_INCDIR%%/Qt3DInput/QWheelEvent +%%QT_INCDIR%%/Qt3DInput/QWheelEventPtr +%%QT_INCDIR%%/Qt3DInput/Qt3DInput +%%QT_INCDIR%%/Qt3DInput/Qt3DInputDepends +%%QT_INCDIR%%/Qt3DInput/Qt3DInputVersion +%%QT_INCDIR%%/Qt3DInput/qabstractactioninput.h +%%QT_INCDIR%%/Qt3DInput/qabstractaxisinput.h +%%QT_INCDIR%%/Qt3DInput/qabstractphysicaldevice.h +%%QT_INCDIR%%/Qt3DInput/qaction.h +%%QT_INCDIR%%/Qt3DInput/qactioninput.h +%%QT_INCDIR%%/Qt3DInput/qanalogaxisinput.h +%%QT_INCDIR%%/Qt3DInput/qaxis.h +%%QT_INCDIR%%/Qt3DInput/qaxisaccumulator.h +%%QT_INCDIR%%/Qt3DInput/qaxissetting.h +%%QT_INCDIR%%/Qt3DInput/qbuttonaxisinput.h +%%QT_INCDIR%%/Qt3DInput/qinputaspect.h +%%QT_INCDIR%%/Qt3DInput/qinputchord.h +%%QT_INCDIR%%/Qt3DInput/qinputsequence.h +%%QT_INCDIR%%/Qt3DInput/qinputsettings.h +%%QT_INCDIR%%/Qt3DInput/qkeyboarddevice.h +%%QT_INCDIR%%/Qt3DInput/qkeyboardhandler.h +%%QT_INCDIR%%/Qt3DInput/qkeyevent.h +%%QT_INCDIR%%/Qt3DInput/qlogicaldevice.h +%%QT_INCDIR%%/Qt3DInput/qmousedevice.h +%%QT_INCDIR%%/Qt3DInput/qmouseevent.h +%%QT_INCDIR%%/Qt3DInput/qmousehandler.h +%%QT_INCDIR%%/Qt3DInput/qt3dinput_global.h +%%QT_INCDIR%%/Qt3DInput/qt3dinputversion.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/callbackjob_p.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/executor_p.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/handle_types_p.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/handler_p.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/job_common_p.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/manager_p.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/managers_p.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/qframeaction_p.h +%%QT_INCDIR%%/Qt3DLogic/%%FULLVER%%/Qt3DLogic/private/qlogicaspect_p.h +%%QT_INCDIR%%/Qt3DLogic/QFrameAction +%%QT_INCDIR%%/Qt3DLogic/QLogicAspect +%%QT_INCDIR%%/Qt3DLogic/Qt3DLogic +%%QT_INCDIR%%/Qt3DLogic/Qt3DLogicDepends +%%QT_INCDIR%%/Qt3DLogic/Qt3DLogicVersion +%%QT_INCDIR%%/Qt3DLogic/qframeaction.h +%%QT_INCDIR%%/Qt3DLogic/qlogicaspect.h +%%QT_INCDIR%%/Qt3DLogic/qt3dlogic_global.h +%%QT_INCDIR%%/Qt3DLogic/qt3dlogicversion.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qqmlaspectengine_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qquaternionanimation_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquick_global_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquickforeign_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquicknodefactory_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/qt3dquickvaluetypes_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dbuffer_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentity_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentityloader_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dentityloader_p_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dgeometry_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3djoint_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dnode_p.h +%%QT_INCDIR%%/Qt3DQuick/%%FULLVER%%/Qt3DQuick/private/quick3dnodeinstantiator_p.h +%%QT_INCDIR%%/Qt3DQuick/QQmlAspectEngine +%%QT_INCDIR%%/Qt3DQuick/Qt3DQuick +%%QT_INCDIR%%/Qt3DQuick/Qt3DQuickDepends +%%QT_INCDIR%%/Qt3DQuick/Qt3DQuickVersion +%%QT_INCDIR%%/Qt3DQuick/qqmlaspectengine.h +%%QT_INCDIR%%/Qt3DQuick/qt3dquick_global.h +%%QT_INCDIR%%/Qt3DQuick/qt3dquickversion.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/qt3dquickanimation_global_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/qt3dquickanimationnodefactory_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3danimationcontroller_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3danimationgroup_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dchannelmapper_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dkeyframeanimation_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dmorphinganimation_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dmorphtarget_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/%%FULLVER%%/Qt3DQuickAnimation/private/quick3dvertexblendanimation_p.h +%%QT_INCDIR%%/Qt3DQuickAnimation/Qt3DQuickAnimation +%%QT_INCDIR%%/Qt3DQuickAnimation/Qt3DQuickAnimationDepends +%%QT_INCDIR%%/Qt3DQuickAnimation/Qt3DQuickAnimationVersion +%%QT_INCDIR%%/Qt3DQuickAnimation/qt3dquickanimation_global.h +%%QT_INCDIR%%/Qt3DQuickAnimation/qt3dquickanimationversion.h +%%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/qt3dquickextras_global_p.h +%%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/qt3dquickextrasnodefactory_p.h +%%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/qt3dquickwindow_p.h +%%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/qt3dquickwindowlogging_p.h +%%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/quick3dlevelofdetailloader_p.h +%%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/quick3dlevelofdetailloader_p_p.h +%%QT_INCDIR%%/Qt3DQuickExtras/%%FULLVER%%/Qt3DQuickExtras/private/quick3dspritesheet_p.h +%%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtras +%%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtrasDepends +%%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickExtrasVersion +%%QT_INCDIR%%/Qt3DQuickExtras/Qt3DQuickWindow +%%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickextras_global.h +%%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickextrasversion.h +%%QT_INCDIR%%/Qt3DQuickExtras/qt3dquickwindow.h +%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/qt3dquickinput_global_p.h +%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/qt3dquickinputnodefactory_p.h +%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3daction_p.h +%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3daxis_p.h +%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dinputchord_p.h +%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dinputsequence_p.h +%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dlogicaldevice_p.h +%%QT_INCDIR%%/Qt3DQuickInput/%%FULLVER%%/Qt3DQuickInput/private/quick3dphysicaldevice_p.h +%%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInput +%%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInputDepends +%%QT_INCDIR%%/Qt3DQuickInput/Qt3DQuickInputVersion +%%QT_INCDIR%%/Qt3DQuickInput/qt3dquickinput_global.h +%%QT_INCDIR%%/Qt3DQuickInput/qt3dquickinputversion.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/qt3dquickrender_global_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/qt3dquickrendernodefactory_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3deffect_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dlayerfilter_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dmaterial_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dmemorybarrier_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dparameter_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dparameter_p_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3draycaster_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3draycaster_p_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drenderpass_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drenderpassfilter_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3drendertargetoutput_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dscene_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dscreenraycaster_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dscreenraycaster_p_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dshaderdata_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dshaderdataarray_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dstateset_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtechnique_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtechniquefilter_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dtexture_p.h +%%QT_INCDIR%%/Qt3DQuickRender/%%FULLVER%%/Qt3DQuickRender/private/quick3dviewport_p.h +%%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRender +%%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRenderDepends +%%QT_INCDIR%%/Qt3DQuickRender/Qt3DQuickRenderVersion +%%QT_INCDIR%%/Qt3DQuickRender/qt3dquickrender_global.h +%%QT_INCDIR%%/Qt3DQuickRender/qt3dquickrenderversion.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qscene2d_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qt3dquick3dscene2d_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qt3dquickscene2d_global_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qt3dquickscene2d_logging_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/qt3dquickscene2dnodefactory_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/scene2d_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/scene2devent_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/scene2dmanager_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/%%FULLVER%%/Qt3DQuickScene2D/private/scene2dsharedobject_p.h +%%QT_INCDIR%%/Qt3DQuickScene2D/QScene2D +%%QT_INCDIR%%/Qt3DQuickScene2D/Qt3DQuickScene2D +%%QT_INCDIR%%/Qt3DQuickScene2D/Qt3DQuickScene2DDepends +%%QT_INCDIR%%/Qt3DQuickScene2D/Qt3DQuickScene2DVersion +%%QT_INCDIR%%/Qt3DQuickScene2D/qscene2d.h +%%QT_INCDIR%%/Qt3DQuickScene2D/qt3dquickscene2d_global.h +%%QT_INCDIR%%/Qt3DQuickScene2D/qt3dquickscene2dversion.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/abstractpickingjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/abstractrenderer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/apishadermanager_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/armature_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/attachmentpack_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/attribute_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/backendnode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/blitframebuffer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/boundingsphere_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/boundingvolumedebug_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffercapture_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffermanager_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/bufferutils_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/buffervisitor_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/calcboundingvolumejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/cameralens_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/cameraselectornode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/clearbuffers_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/computecommand_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/computefilteredboundingvolumejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/debugoverlay_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/dispatchcompute_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/effect_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/entity_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/entity_p_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/entityaccumulator_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/entityvisitor_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/environmentlight_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/expandboundingvolumejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filtercompatibletechniquejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterentitybycomponentjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterkey_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterlayerentityjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/filterproximitydistancejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framecleanupjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framegraphnode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/framegraphvisitor_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/frustumculling_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/frustumcullingjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/genericlambdajob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/genericstate_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometry_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometryrenderer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/geometryrenderermanager_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/gltfskeletonloader_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/handle_types_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/job_common_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/joint_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/layer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/layerfilternode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/levelofdetail_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/light_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/lightgatherer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/lightsource_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadgeometryjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadscenejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/loadskeletonjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/managers_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/material_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/materialparametergathererjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/memorybarrier_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodefunctor_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodemanagers_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nodraw_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/nopicking_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/objectpicker_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/offscreensurfacehelper_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/parameter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/parameterpack_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickboundingvolumejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickboundingvolumeutils_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickeventfilter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pickingproxy_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/platformsurfacefilter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/pointsvisitor_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/proximityfilter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractcollisionqueryservice_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractlight_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstractraycaster_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstracttexture_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qabstracttextureimage_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qalphatest_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qaxisalignedboundingbox_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qblendequation_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qblendequationarguments_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qblitframebuffer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qboundingvolume_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qboundingvolumeprovider_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qbuffercapture_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcamera_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcameralens_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcameraselector_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qclearbuffers_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qclipplane_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcollisionqueryresult_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcolormask_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcomputecommand_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qcullface_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdebugoverlay_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdepthrange_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdepthtest_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdirectionallight_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qdispatchcompute_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qeffect_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qenvironmentlight_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qfilterkey_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qframegraphnode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qfrontface_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometryloaderfactory_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometryloaderinterface_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgeometryrenderer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qgraphicsapifilter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlayer_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlayerfilter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlevelofdetail_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlevelofdetailswitch_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qlinewidth_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qmaterial_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qmemorybarrier_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qmesh_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qobjectpicker_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpaintedtextureimage_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qparameter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpickevent_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpickingproxy_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpickingsettings_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpicktriangleevent_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpointlight_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpointsize_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qpolygonoffset_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qproximityfilter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrastermode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qray3d_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qraycastingservice_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderaspect_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendercapabilities_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendercapture_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendererplugin_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendererpluginfactory_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpass_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpassfilter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderplugin_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpluginfactory_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderpluginfactoryif_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendersettings_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderstate_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrenderstateset_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendersurfaceselector_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertarget_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertargetoutput_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qrendertargetselector_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneexporter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneexportfactory_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneexportplugin_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneimporter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneimportfactory_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneimportplugin_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsceneloader_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qscissortest_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsetfence_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderdata_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderformat_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshadergenerator_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshadergraph_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshadergraphloader_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderimage_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderlanguage_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshadernode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshadernodeport_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshadernodesloader_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderprogram_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qshaderprogrambuilder_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsortpolicy_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qspotlight_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstencilmask_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciloperation_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciloperationarguments_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciltest_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qstenciltestarguments_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qsubtreeenabler_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qt3drender-config_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qt3drender_global_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtechnique_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtechniquefilter_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtexture_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtexturedataupdate_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtexturegenerator_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtextureimage_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qtextureimagedata_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qviewport_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/qwaitfence_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/raycaster_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/raycastingjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendercapture_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderercache_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderlogging_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderpass_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderpassfilternode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderqueue_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendersettings_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstatenode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstates_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderstateset_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendersurfaceselector_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendersyncjobs_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertarget_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertargetoutput_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/rendertargetselectornode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewcommandbuilderjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewcommandupdaterjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewinitializerjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/renderviewjobutils_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/resourceaccessor_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/scene_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/scenemanager_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/segmentsvisitor_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sendbuffercapturejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/setfence_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shader_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shaderbuilder_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shadercache_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shaderdata_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/shaderimage_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/skeleton_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/skeletondata_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sortpolicy_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/sphere_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statemask_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statesetnode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/statevariant_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/stringtoint_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/subtreeenabler_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/technique_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/techniquefilternode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/techniquemanager_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/texture_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/texturedatamanager_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/textureimage_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/transform_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/triangleboundingvolume_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/trianglesvisitor_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/uniform_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/uniformblockbuilder_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateentitylayersjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updatelevelofdetailjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateshaderdatatransformjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateskinningpalettejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updatetreeenabledjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateworldboundingvolumejob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/updateworldtransformjob_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/viewportnode_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/visitorutils_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/vsyncframeadvanceservice_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/vulkaninstance_p.h +%%QT_INCDIR%%/Qt3DRender/%%FULLVER%%/Qt3DRender/private/waitfence_p.h +%%QT_INCDIR%%/Qt3DRender/PropertyReaderInterface +%%QT_INCDIR%%/Qt3DRender/PropertyReaderInterfacePtr +%%QT_INCDIR%%/Qt3DRender/QAbstractLight +%%QT_INCDIR%%/Qt3DRender/QAbstractRayCaster +%%QT_INCDIR%%/Qt3DRender/QAbstractTexture +%%QT_INCDIR%%/Qt3DRender/QAbstractTextureImage +%%QT_INCDIR%%/Qt3DRender/QAlphaCoverage +%%QT_INCDIR%%/Qt3DRender/QAlphaTest +%%QT_INCDIR%%/Qt3DRender/QBlendEquation +%%QT_INCDIR%%/Qt3DRender/QBlendEquationArguments +%%QT_INCDIR%%/Qt3DRender/QBlitFramebuffer +%%QT_INCDIR%%/Qt3DRender/QBufferCapture +%%QT_INCDIR%%/Qt3DRender/QCamera +%%QT_INCDIR%%/Qt3DRender/QCameraLens +%%QT_INCDIR%%/Qt3DRender/QCameraSelector +%%QT_INCDIR%%/Qt3DRender/QClearBuffers +%%QT_INCDIR%%/Qt3DRender/QClipPlane +%%QT_INCDIR%%/Qt3DRender/QColorMask +%%QT_INCDIR%%/Qt3DRender/QComputeCommand +%%QT_INCDIR%%/Qt3DRender/QCullFace +%%QT_INCDIR%%/Qt3DRender/QDebugOverlay +%%QT_INCDIR%%/Qt3DRender/QDepthRange +%%QT_INCDIR%%/Qt3DRender/QDepthTest +%%QT_INCDIR%%/Qt3DRender/QDirectionalLight +%%QT_INCDIR%%/Qt3DRender/QDispatchCompute +%%QT_INCDIR%%/Qt3DRender/QDithering +%%QT_INCDIR%%/Qt3DRender/QEffect +%%QT_INCDIR%%/Qt3DRender/QEnvironmentLight +%%QT_INCDIR%%/Qt3DRender/QFilterKey +%%QT_INCDIR%%/Qt3DRender/QFrameGraphNode +%%QT_INCDIR%%/Qt3DRender/QFrontFace +%%QT_INCDIR%%/Qt3DRender/QFrustumCulling +%%QT_INCDIR%%/Qt3DRender/QGeometryRenderer +%%QT_INCDIR%%/Qt3DRender/QGraphicsApiFilter +%%QT_INCDIR%%/Qt3DRender/QLayer +%%QT_INCDIR%%/Qt3DRender/QLayerFilter +%%QT_INCDIR%%/Qt3DRender/QLevelOfDetail +%%QT_INCDIR%%/Qt3DRender/QLevelOfDetailBoundingSphere +%%QT_INCDIR%%/Qt3DRender/QLevelOfDetailSwitch +%%QT_INCDIR%%/Qt3DRender/QLineWidth +%%QT_INCDIR%%/Qt3DRender/QMaterial +%%QT_INCDIR%%/Qt3DRender/QMemoryBarrier +%%QT_INCDIR%%/Qt3DRender/QMesh +%%QT_INCDIR%%/Qt3DRender/QMultiSampleAntiAliasing +%%QT_INCDIR%%/Qt3DRender/QNoDepthMask +%%QT_INCDIR%%/Qt3DRender/QNoDraw +%%QT_INCDIR%%/Qt3DRender/QNoPicking +%%QT_INCDIR%%/Qt3DRender/QObjectPicker +%%QT_INCDIR%%/Qt3DRender/QPaintedTextureImage +%%QT_INCDIR%%/Qt3DRender/QParameter +%%QT_INCDIR%%/Qt3DRender/QPickEvent +%%QT_INCDIR%%/Qt3DRender/QPickEventPtr +%%QT_INCDIR%%/Qt3DRender/QPickLineEvent +%%QT_INCDIR%%/Qt3DRender/QPickLineEventPtr +%%QT_INCDIR%%/Qt3DRender/QPickPointEvent +%%QT_INCDIR%%/Qt3DRender/QPickPointEventPtr +%%QT_INCDIR%%/Qt3DRender/QPickTriangleEvent +%%QT_INCDIR%%/Qt3DRender/QPickTriangleEventPtr +%%QT_INCDIR%%/Qt3DRender/QPickingProxy +%%QT_INCDIR%%/Qt3DRender/QPickingSettings +%%QT_INCDIR%%/Qt3DRender/QPointLight +%%QT_INCDIR%%/Qt3DRender/QPointSize +%%QT_INCDIR%%/Qt3DRender/QPolygonOffset +%%QT_INCDIR%%/Qt3DRender/QProximityFilter +%%QT_INCDIR%%/Qt3DRender/QRasterMode +%%QT_INCDIR%%/Qt3DRender/QRayCaster +%%QT_INCDIR%%/Qt3DRender/QRayCasterHit +%%QT_INCDIR%%/Qt3DRender/QRenderAspect +%%QT_INCDIR%%/Qt3DRender/QRenderCapabilities +%%QT_INCDIR%%/Qt3DRender/QRenderCapture +%%QT_INCDIR%%/Qt3DRender/QRenderCaptureReply +%%QT_INCDIR%%/Qt3DRender/QRenderPass +%%QT_INCDIR%%/Qt3DRender/QRenderPassFilter +%%QT_INCDIR%%/Qt3DRender/QRenderSettings +%%QT_INCDIR%%/Qt3DRender/QRenderState +%%QT_INCDIR%%/Qt3DRender/QRenderStateSet +%%QT_INCDIR%%/Qt3DRender/QRenderSurfaceSelector +%%QT_INCDIR%%/Qt3DRender/QRenderTarget +%%QT_INCDIR%%/Qt3DRender/QRenderTargetOutput +%%QT_INCDIR%%/Qt3DRender/QRenderTargetSelector +%%QT_INCDIR%%/Qt3DRender/QSceneLoader +%%QT_INCDIR%%/Qt3DRender/QScissorTest +%%QT_INCDIR%%/Qt3DRender/QScreenRayCaster +%%QT_INCDIR%%/Qt3DRender/QSeamlessCubemap +%%QT_INCDIR%%/Qt3DRender/QSetFence +%%QT_INCDIR%%/Qt3DRender/QShaderData +%%QT_INCDIR%%/Qt3DRender/QShaderImage +%%QT_INCDIR%%/Qt3DRender/QShaderProgram +%%QT_INCDIR%%/Qt3DRender/QShaderProgramBuilder +%%QT_INCDIR%%/Qt3DRender/QSortPolicy +%%QT_INCDIR%%/Qt3DRender/QSpotLight +%%QT_INCDIR%%/Qt3DRender/QStencilMask +%%QT_INCDIR%%/Qt3DRender/QStencilOperation +%%QT_INCDIR%%/Qt3DRender/QStencilOperationArguments +%%QT_INCDIR%%/Qt3DRender/QStencilTest +%%QT_INCDIR%%/Qt3DRender/QStencilTestArguments +%%QT_INCDIR%%/Qt3DRender/QSubtreeEnabler +%%QT_INCDIR%%/Qt3DRender/QTechnique +%%QT_INCDIR%%/Qt3DRender/QTechniqueFilter +%%QT_INCDIR%%/Qt3DRender/QTexture +%%QT_INCDIR%%/Qt3DRender/QTextureData +%%QT_INCDIR%%/Qt3DRender/QTextureDataPtr +%%QT_INCDIR%%/Qt3DRender/QTextureDataUpdate +%%QT_INCDIR%%/Qt3DRender/QTextureImage +%%QT_INCDIR%%/Qt3DRender/QTextureImageData +%%QT_INCDIR%%/Qt3DRender/QTextureImageDataGenerator +%%QT_INCDIR%%/Qt3DRender/QTextureImageDataGeneratorPtr +%%QT_INCDIR%%/Qt3DRender/QTextureImageDataPtr +%%QT_INCDIR%%/Qt3DRender/QTextureWrapMode +%%QT_INCDIR%%/Qt3DRender/QViewport +%%QT_INCDIR%%/Qt3DRender/QWaitFence +%%QT_INCDIR%%/Qt3DRender/Qt3DRender +%%QT_INCDIR%%/Qt3DRender/Qt3DRenderDepends +%%QT_INCDIR%%/Qt3DRender/Qt3DRenderVersion +%%QT_INCDIR%%/Qt3DRender/qabstractlight.h +%%QT_INCDIR%%/Qt3DRender/qabstractraycaster.h +%%QT_INCDIR%%/Qt3DRender/qabstracttexture.h +%%QT_INCDIR%%/Qt3DRender/qabstracttextureimage.h +%%QT_INCDIR%%/Qt3DRender/qalphacoverage.h +%%QT_INCDIR%%/Qt3DRender/qalphatest.h +%%QT_INCDIR%%/Qt3DRender/qblendequation.h +%%QT_INCDIR%%/Qt3DRender/qblendequationarguments.h +%%QT_INCDIR%%/Qt3DRender/qblitframebuffer.h +%%QT_INCDIR%%/Qt3DRender/qbuffercapture.h +%%QT_INCDIR%%/Qt3DRender/qcamera.h +%%QT_INCDIR%%/Qt3DRender/qcameralens.h +%%QT_INCDIR%%/Qt3DRender/qcameraselector.h +%%QT_INCDIR%%/Qt3DRender/qclearbuffers.h +%%QT_INCDIR%%/Qt3DRender/qclipplane.h +%%QT_INCDIR%%/Qt3DRender/qcolormask.h +%%QT_INCDIR%%/Qt3DRender/qcomputecommand.h +%%QT_INCDIR%%/Qt3DRender/qcullface.h +%%QT_INCDIR%%/Qt3DRender/qdebugoverlay.h +%%QT_INCDIR%%/Qt3DRender/qdepthrange.h +%%QT_INCDIR%%/Qt3DRender/qdepthtest.h +%%QT_INCDIR%%/Qt3DRender/qdirectionallight.h +%%QT_INCDIR%%/Qt3DRender/qdispatchcompute.h +%%QT_INCDIR%%/Qt3DRender/qdithering.h +%%QT_INCDIR%%/Qt3DRender/qeffect.h +%%QT_INCDIR%%/Qt3DRender/qenvironmentlight.h +%%QT_INCDIR%%/Qt3DRender/qfilterkey.h +%%QT_INCDIR%%/Qt3DRender/qframegraphnode.h +%%QT_INCDIR%%/Qt3DRender/qfrontface.h +%%QT_INCDIR%%/Qt3DRender/qfrustumculling.h +%%QT_INCDIR%%/Qt3DRender/qgeometryrenderer.h +%%QT_INCDIR%%/Qt3DRender/qgraphicsapifilter.h +%%QT_INCDIR%%/Qt3DRender/qlayer.h +%%QT_INCDIR%%/Qt3DRender/qlayerfilter.h +%%QT_INCDIR%%/Qt3DRender/qlevelofdetail.h +%%QT_INCDIR%%/Qt3DRender/qlevelofdetailboundingsphere.h +%%QT_INCDIR%%/Qt3DRender/qlevelofdetailswitch.h +%%QT_INCDIR%%/Qt3DRender/qlinewidth.h +%%QT_INCDIR%%/Qt3DRender/qmaterial.h +%%QT_INCDIR%%/Qt3DRender/qmemorybarrier.h +%%QT_INCDIR%%/Qt3DRender/qmesh.h +%%QT_INCDIR%%/Qt3DRender/qmultisampleantialiasing.h +%%QT_INCDIR%%/Qt3DRender/qnodepthmask.h +%%QT_INCDIR%%/Qt3DRender/qnodraw.h +%%QT_INCDIR%%/Qt3DRender/qnopicking.h +%%QT_INCDIR%%/Qt3DRender/qobjectpicker.h +%%QT_INCDIR%%/Qt3DRender/qpaintedtextureimage.h +%%QT_INCDIR%%/Qt3DRender/qparameter.h +%%QT_INCDIR%%/Qt3DRender/qpickevent.h +%%QT_INCDIR%%/Qt3DRender/qpickingproxy.h +%%QT_INCDIR%%/Qt3DRender/qpickingsettings.h +%%QT_INCDIR%%/Qt3DRender/qpicklineevent.h +%%QT_INCDIR%%/Qt3DRender/qpickpointevent.h +%%QT_INCDIR%%/Qt3DRender/qpicktriangleevent.h +%%QT_INCDIR%%/Qt3DRender/qpointlight.h +%%QT_INCDIR%%/Qt3DRender/qpointsize.h +%%QT_INCDIR%%/Qt3DRender/qpolygonoffset.h +%%QT_INCDIR%%/Qt3DRender/qproximityfilter.h +%%QT_INCDIR%%/Qt3DRender/qrastermode.h +%%QT_INCDIR%%/Qt3DRender/qraycaster.h +%%QT_INCDIR%%/Qt3DRender/qraycasterhit.h +%%QT_INCDIR%%/Qt3DRender/qrenderapi.h +%%QT_INCDIR%%/Qt3DRender/qrenderaspect.h +%%QT_INCDIR%%/Qt3DRender/qrendercapabilities.h +%%QT_INCDIR%%/Qt3DRender/qrendercapture.h +%%QT_INCDIR%%/Qt3DRender/qrenderpass.h +%%QT_INCDIR%%/Qt3DRender/qrenderpassfilter.h +%%QT_INCDIR%%/Qt3DRender/qrendersettings.h +%%QT_INCDIR%%/Qt3DRender/qrenderstate.h +%%QT_INCDIR%%/Qt3DRender/qrenderstateset.h +%%QT_INCDIR%%/Qt3DRender/qrendersurfaceselector.h +%%QT_INCDIR%%/Qt3DRender/qrendertarget.h +%%QT_INCDIR%%/Qt3DRender/qrendertargetoutput.h +%%QT_INCDIR%%/Qt3DRender/qrendertargetselector.h +%%QT_INCDIR%%/Qt3DRender/qsceneloader.h +%%QT_INCDIR%%/Qt3DRender/qscissortest.h +%%QT_INCDIR%%/Qt3DRender/qscreenraycaster.h +%%QT_INCDIR%%/Qt3DRender/qseamlesscubemap.h +%%QT_INCDIR%%/Qt3DRender/qsetfence.h +%%QT_INCDIR%%/Qt3DRender/qshaderdata.h +%%QT_INCDIR%%/Qt3DRender/qshaderimage.h +%%QT_INCDIR%%/Qt3DRender/qshaderprogram.h +%%QT_INCDIR%%/Qt3DRender/qshaderprogrambuilder.h +%%QT_INCDIR%%/Qt3DRender/qsortpolicy.h +%%QT_INCDIR%%/Qt3DRender/qspotlight.h +%%QT_INCDIR%%/Qt3DRender/qstencilmask.h +%%QT_INCDIR%%/Qt3DRender/qstenciloperation.h +%%QT_INCDIR%%/Qt3DRender/qstenciloperationarguments.h +%%QT_INCDIR%%/Qt3DRender/qstenciltest.h +%%QT_INCDIR%%/Qt3DRender/qstenciltestarguments.h +%%QT_INCDIR%%/Qt3DRender/qsubtreeenabler.h +%%QT_INCDIR%%/Qt3DRender/qt3drender-config.h +%%QT_INCDIR%%/Qt3DRender/qt3drender_global.h +%%QT_INCDIR%%/Qt3DRender/qt3drenderversion.h +%%QT_INCDIR%%/Qt3DRender/qtechnique.h +%%QT_INCDIR%%/Qt3DRender/qtechniquefilter.h +%%QT_INCDIR%%/Qt3DRender/qtexture.h +%%QT_INCDIR%%/Qt3DRender/qtexturedata.h +%%QT_INCDIR%%/Qt3DRender/qtexturedataupdate.h +%%QT_INCDIR%%/Qt3DRender/qtextureimage.h +%%QT_INCDIR%%/Qt3DRender/qtextureimagedata.h +%%QT_INCDIR%%/Qt3DRender/qtextureimagedatagenerator.h +%%QT_INCDIR%%/Qt3DRender/qtexturewrapmode.h +%%QT_INCDIR%%/Qt3DRender/qviewport.h +%%QT_INCDIR%%/Qt3DRender/qwaitfence.h +lib/cmake/Qt6/FindWrapQt3DAssimp.cmake +lib/cmake/Qt63DAnimation/Qt63DAnimationAdditionalTargetInfo.cmake +lib/cmake/Qt63DAnimation/Qt63DAnimationConfig.cmake +lib/cmake/Qt63DAnimation/Qt63DAnimationConfigVersion.cmake +lib/cmake/Qt63DAnimation/Qt63DAnimationConfigVersionImpl.cmake +lib/cmake/Qt63DAnimation/Qt63DAnimationDependencies.cmake +lib/cmake/Qt63DAnimation/Qt63DAnimationTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DAnimation/Qt63DAnimationTargets.cmake +lib/cmake/Qt63DAnimation/Qt63DAnimationVersionlessTargets.cmake +lib/cmake/Qt63DCore/Qt63DCoreAdditionalTargetInfo.cmake +lib/cmake/Qt63DCore/Qt63DCoreConfig.cmake +lib/cmake/Qt63DCore/Qt63DCoreConfigVersion.cmake +lib/cmake/Qt63DCore/Qt63DCoreConfigVersionImpl.cmake +lib/cmake/Qt63DCore/Qt63DCoreDependencies.cmake +lib/cmake/Qt63DCore/Qt63DCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DCore/Qt63DCoreTargets.cmake +lib/cmake/Qt63DCore/Qt63DCoreVersionlessTargets.cmake +lib/cmake/Qt63DExtras/Qt63DExtrasAdditionalTargetInfo.cmake +lib/cmake/Qt63DExtras/Qt63DExtrasConfig.cmake +lib/cmake/Qt63DExtras/Qt63DExtrasConfigVersion.cmake +lib/cmake/Qt63DExtras/Qt63DExtrasConfigVersionImpl.cmake +lib/cmake/Qt63DExtras/Qt63DExtrasDependencies.cmake +lib/cmake/Qt63DExtras/Qt63DExtrasTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DExtras/Qt63DExtrasTargets.cmake +lib/cmake/Qt63DExtras/Qt63DExtrasVersionlessTargets.cmake +lib/cmake/Qt63DInput/Qt63DInputAdditionalTargetInfo.cmake +lib/cmake/Qt63DInput/Qt63DInputConfig.cmake +lib/cmake/Qt63DInput/Qt63DInputConfigVersion.cmake +lib/cmake/Qt63DInput/Qt63DInputConfigVersionImpl.cmake +lib/cmake/Qt63DInput/Qt63DInputDependencies.cmake +lib/cmake/Qt63DInput/Qt63DInputTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DInput/Qt63DInputTargets.cmake +lib/cmake/Qt63DInput/Qt63DInputVersionlessTargets.cmake +lib/cmake/Qt63DLogic/Qt63DLogicAdditionalTargetInfo.cmake +lib/cmake/Qt63DLogic/Qt63DLogicConfig.cmake +lib/cmake/Qt63DLogic/Qt63DLogicConfigVersion.cmake +lib/cmake/Qt63DLogic/Qt63DLogicConfigVersionImpl.cmake +lib/cmake/Qt63DLogic/Qt63DLogicDependencies.cmake +lib/cmake/Qt63DLogic/Qt63DLogicTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DLogic/Qt63DLogicTargets.cmake +lib/cmake/Qt63DLogic/Qt63DLogicVersionlessTargets.cmake +lib/cmake/Qt63DQuick/Qt63DQuickAdditionalTargetInfo.cmake +lib/cmake/Qt63DQuick/Qt63DQuickConfig.cmake +lib/cmake/Qt63DQuick/Qt63DQuickConfigVersion.cmake +lib/cmake/Qt63DQuick/Qt63DQuickConfigVersionImpl.cmake +lib/cmake/Qt63DQuick/Qt63DQuickDependencies.cmake +lib/cmake/Qt63DQuick/Qt63DQuickTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DQuick/Qt63DQuickTargets.cmake +lib/cmake/Qt63DQuick/Qt63DQuickVersionlessTargets.cmake +lib/cmake/Qt63DQuickAnimation/Qt63DQuickAnimationAdditionalTargetInfo.cmake +lib/cmake/Qt63DQuickAnimation/Qt63DQuickAnimationConfig.cmake +lib/cmake/Qt63DQuickAnimation/Qt63DQuickAnimationConfigVersion.cmake +lib/cmake/Qt63DQuickAnimation/Qt63DQuickAnimationConfigVersionImpl.cmake +lib/cmake/Qt63DQuickAnimation/Qt63DQuickAnimationDependencies.cmake +lib/cmake/Qt63DQuickAnimation/Qt63DQuickAnimationTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DQuickAnimation/Qt63DQuickAnimationTargets.cmake +lib/cmake/Qt63DQuickAnimation/Qt63DQuickAnimationVersionlessTargets.cmake +lib/cmake/Qt63DQuickExtras/Qt63DQuickExtrasAdditionalTargetInfo.cmake +lib/cmake/Qt63DQuickExtras/Qt63DQuickExtrasConfig.cmake +lib/cmake/Qt63DQuickExtras/Qt63DQuickExtrasConfigVersion.cmake +lib/cmake/Qt63DQuickExtras/Qt63DQuickExtrasConfigVersionImpl.cmake +lib/cmake/Qt63DQuickExtras/Qt63DQuickExtrasDependencies.cmake +lib/cmake/Qt63DQuickExtras/Qt63DQuickExtrasTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DQuickExtras/Qt63DQuickExtrasTargets.cmake +lib/cmake/Qt63DQuickExtras/Qt63DQuickExtrasVersionlessTargets.cmake +lib/cmake/Qt63DQuickInput/Qt63DQuickInputAdditionalTargetInfo.cmake +lib/cmake/Qt63DQuickInput/Qt63DQuickInputConfig.cmake +lib/cmake/Qt63DQuickInput/Qt63DQuickInputConfigVersion.cmake +lib/cmake/Qt63DQuickInput/Qt63DQuickInputConfigVersionImpl.cmake +lib/cmake/Qt63DQuickInput/Qt63DQuickInputDependencies.cmake +lib/cmake/Qt63DQuickInput/Qt63DQuickInputTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DQuickInput/Qt63DQuickInputTargets.cmake +lib/cmake/Qt63DQuickInput/Qt63DQuickInputVersionlessTargets.cmake +lib/cmake/Qt63DQuickRender/Qt63DQuickRenderAdditionalTargetInfo.cmake +lib/cmake/Qt63DQuickRender/Qt63DQuickRenderConfig.cmake +lib/cmake/Qt63DQuickRender/Qt63DQuickRenderConfigVersion.cmake +lib/cmake/Qt63DQuickRender/Qt63DQuickRenderConfigVersionImpl.cmake +lib/cmake/Qt63DQuickRender/Qt63DQuickRenderDependencies.cmake +lib/cmake/Qt63DQuickRender/Qt63DQuickRenderTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DQuickRender/Qt63DQuickRenderTargets.cmake +lib/cmake/Qt63DQuickRender/Qt63DQuickRenderVersionlessTargets.cmake +lib/cmake/Qt63DQuickScene2D/Qt63DQuickScene2DAdditionalTargetInfo.cmake +lib/cmake/Qt63DQuickScene2D/Qt63DQuickScene2DConfig.cmake +lib/cmake/Qt63DQuickScene2D/Qt63DQuickScene2DConfigVersion.cmake +lib/cmake/Qt63DQuickScene2D/Qt63DQuickScene2DConfigVersionImpl.cmake +lib/cmake/Qt63DQuickScene2D/Qt63DQuickScene2DDependencies.cmake +lib/cmake/Qt63DQuickScene2D/Qt63DQuickScene2DTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DQuickScene2D/Qt63DQuickScene2DTargets.cmake +lib/cmake/Qt63DQuickScene2D/Qt63DQuickScene2DVersionlessTargets.cmake +lib/cmake/Qt63DRender/Qt63DRenderAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt63DRenderConfig.cmake +lib/cmake/Qt63DRender/Qt63DRenderConfigVersion.cmake +lib/cmake/Qt63DRender/Qt63DRenderConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt63DRenderDependencies.cmake +lib/cmake/Qt63DRender/Qt63DRenderTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt63DRenderTargets.cmake +lib/cmake/Qt63DRender/Qt63DRenderVersionlessTargets.cmake +lib/cmake/Qt63DRender/Qt6AssimpSceneImportPluginAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt6AssimpSceneImportPluginConfig.cmake +lib/cmake/Qt63DRender/Qt6AssimpSceneImportPluginConfigVersion.cmake +lib/cmake/Qt63DRender/Qt6AssimpSceneImportPluginConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt6AssimpSceneImportPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt6AssimpSceneImportPluginTargets.cmake +lib/cmake/Qt63DRender/Qt6DefaultGeometryLoaderPluginAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt6DefaultGeometryLoaderPluginConfig.cmake +lib/cmake/Qt63DRender/Qt6DefaultGeometryLoaderPluginConfigVersion.cmake +lib/cmake/Qt63DRender/Qt6DefaultGeometryLoaderPluginConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt6DefaultGeometryLoaderPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt6DefaultGeometryLoaderPluginTargets.cmake +lib/cmake/Qt63DRender/Qt6GLTFGeometryLoaderPluginAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt6GLTFGeometryLoaderPluginConfig.cmake +lib/cmake/Qt63DRender/Qt6GLTFGeometryLoaderPluginConfigVersion.cmake +lib/cmake/Qt63DRender/Qt6GLTFGeometryLoaderPluginConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt6GLTFGeometryLoaderPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt6GLTFGeometryLoaderPluginTargets.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneExportPluginAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneExportPluginConfig.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneExportPluginConfigVersion.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneExportPluginConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneExportPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneExportPluginTargets.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneImportPluginAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneImportPluginConfig.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneImportPluginConfigVersion.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneImportPluginConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneImportPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt6GLTFSceneImportPluginTargets.cmake +lib/cmake/Qt63DRender/Qt6OpenGLRendererPluginAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt6OpenGLRendererPluginConfig.cmake +lib/cmake/Qt63DRender/Qt6OpenGLRendererPluginConfigVersion.cmake +lib/cmake/Qt63DRender/Qt6OpenGLRendererPluginConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt6OpenGLRendererPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt6OpenGLRendererPluginTargets.cmake +lib/cmake/Qt63DRender/Qt6RhiRendererPluginAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt6RhiRendererPluginConfig.cmake +lib/cmake/Qt63DRender/Qt6RhiRendererPluginConfigVersion.cmake +lib/cmake/Qt63DRender/Qt6RhiRendererPluginConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt6RhiRendererPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt6RhiRendererPluginTargets.cmake +lib/cmake/Qt63DRender/Qt6Scene2DPluginAdditionalTargetInfo.cmake +lib/cmake/Qt63DRender/Qt6Scene2DPluginConfig.cmake +lib/cmake/Qt63DRender/Qt6Scene2DPluginConfigVersion.cmake +lib/cmake/Qt63DRender/Qt6Scene2DPluginConfigVersionImpl.cmake +lib/cmake/Qt63DRender/Qt6Scene2DPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt63DRender/Qt6Scene2DPluginTargets.cmake +lib/cmake/Qt6BuildInternals/StandaloneTests/Qt3DTestsConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene2dpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickscene3dpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3danimationpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dcorepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dextraspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dinputpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3dlogicpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quick3drenderpluginTargets.cmake +%%QT_LIBDIR%%/libQt63DAnimation.prl +%%QT_LIBDIR%%/libQt63DAnimation.so +%%QT_LIBDIR%%/libQt63DAnimation.so.6 +%%QT_LIBDIR%%/libQt63DAnimation.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DCore.prl +%%QT_LIBDIR%%/libQt63DCore.so +%%QT_LIBDIR%%/libQt63DCore.so.6 +%%QT_LIBDIR%%/libQt63DCore.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DExtras.prl +%%QT_LIBDIR%%/libQt63DExtras.so +%%QT_LIBDIR%%/libQt63DExtras.so.6 +%%QT_LIBDIR%%/libQt63DExtras.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DInput.prl +%%QT_LIBDIR%%/libQt63DInput.so +%%QT_LIBDIR%%/libQt63DInput.so.6 +%%QT_LIBDIR%%/libQt63DInput.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DLogic.prl +%%QT_LIBDIR%%/libQt63DLogic.so +%%QT_LIBDIR%%/libQt63DLogic.so.6 +%%QT_LIBDIR%%/libQt63DLogic.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DQuick.prl +%%QT_LIBDIR%%/libQt63DQuick.so +%%QT_LIBDIR%%/libQt63DQuick.so.6 +%%QT_LIBDIR%%/libQt63DQuick.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DQuickAnimation.prl +%%QT_LIBDIR%%/libQt63DQuickAnimation.so +%%QT_LIBDIR%%/libQt63DQuickAnimation.so.6 +%%QT_LIBDIR%%/libQt63DQuickAnimation.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DQuickExtras.prl +%%QT_LIBDIR%%/libQt63DQuickExtras.so +%%QT_LIBDIR%%/libQt63DQuickExtras.so.6 +%%QT_LIBDIR%%/libQt63DQuickExtras.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DQuickInput.prl +%%QT_LIBDIR%%/libQt63DQuickInput.so +%%QT_LIBDIR%%/libQt63DQuickInput.so.6 +%%QT_LIBDIR%%/libQt63DQuickInput.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DQuickRender.prl +%%QT_LIBDIR%%/libQt63DQuickRender.so +%%QT_LIBDIR%%/libQt63DQuickRender.so.6 +%%QT_LIBDIR%%/libQt63DQuickRender.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DQuickScene2D.prl +%%QT_LIBDIR%%/libQt63DQuickScene2D.so +%%QT_LIBDIR%%/libQt63DQuickScene2D.so.6 +%%QT_LIBDIR%%/libQt63DQuickScene2D.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt63DRender.prl +%%QT_LIBDIR%%/libQt63DRender.so +%%QT_LIBDIR%%/libQt63DRender.so.6 +%%QT_LIBDIR%%/libQt63DRender.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt63danimation_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dcore_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dextras_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dinput_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dlogic_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dquick_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dquickanimation_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dquickextras_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dquickinput_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dquickrender_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63dquickscene2d_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt63drender_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_3danimation.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3danimation_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dcore.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dcore_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dextras.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dextras_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dinput.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dinput_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dlogic.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dlogic_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquick.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquick_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickanimation.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickanimation_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickextras.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickextras_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickinput.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickinput_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickrender.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickrender_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickscene2d.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3dquickscene2d_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3drender.pri +%%QT_MKSPECDIR%%/modules/qt_lib_3drender_private.pri +%%QT_PLUGINDIR%%/geometryloaders/libdefaultgeometryloader.so +%%QT_PLUGINDIR%%/geometryloaders/libgltfgeometryloader.so +%%QT_PLUGINDIR%%/renderers/libopenglrenderer.so +%%QT_PLUGINDIR%%/renderers/librhirenderer.so +%%QT_PLUGINDIR%%/renderplugins/libscene2d.so +%%QT_PLUGINDIR%%/sceneparsers/libassimpsceneimport.so +%%QT_PLUGINDIR%%/sceneparsers/libgltfsceneexport.so +%%QT_PLUGINDIR%%/sceneparsers/libgltfsceneimport.so +%%QT_QMLDIR%%/Qt3D/Animation/libquick3danimationplugin.so +%%QT_QMLDIR%%/Qt3D/Animation/plugins.qmltypes +%%QT_QMLDIR%%/Qt3D/Animation/qmldir +%%QT_QMLDIR%%/Qt3D/Core/libquick3dcoreplugin.so +%%QT_QMLDIR%%/Qt3D/Core/plugins.qmltypes +%%QT_QMLDIR%%/Qt3D/Core/qmldir +%%QT_QMLDIR%%/Qt3D/Extras/libquick3dextrasplugin.so +%%QT_QMLDIR%%/Qt3D/Extras/plugins.qmltypes +%%QT_QMLDIR%%/Qt3D/Extras/qmldir +%%QT_QMLDIR%%/Qt3D/Input/libquick3dinputplugin.so +%%QT_QMLDIR%%/Qt3D/Input/plugins.qmltypes +%%QT_QMLDIR%%/Qt3D/Input/qmldir +%%QT_QMLDIR%%/Qt3D/Logic/libquick3dlogicplugin.so +%%QT_QMLDIR%%/Qt3D/Logic/plugins.qmltypes +%%QT_QMLDIR%%/Qt3D/Logic/qmldir +%%QT_QMLDIR%%/Qt3D/Render/libquick3drenderplugin.so +%%QT_QMLDIR%%/Qt3D/Render/plugins.qmltypes +%%QT_QMLDIR%%/Qt3D/Render/qmldir +%%QT_QMLDIR%%/QtQuick/Scene2D/libqtquickscene2dplugin.so +%%QT_QMLDIR%%/QtQuick/Scene2D/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Scene2D/qmldir +%%QT_QMLDIR%%/QtQuick/Scene3D/libqtquickscene3dplugin.so +%%QT_QMLDIR%%/QtQuick/Scene3D/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Scene3D/qmldir +libdata/pkgconfig/Qt63DAnimation.pc +libdata/pkgconfig/Qt63DCore.pc +libdata/pkgconfig/Qt63DExtras.pc +libdata/pkgconfig/Qt63DInput.pc +libdata/pkgconfig/Qt63DLogic.pc +libdata/pkgconfig/Qt63DQuick.pc +libdata/pkgconfig/Qt63DQuickAnimation.pc +libdata/pkgconfig/Qt63DQuickExtras.pc +libdata/pkgconfig/Qt63DQuickInput.pc +libdata/pkgconfig/Qt63DQuickRender.pc +libdata/pkgconfig/Qt63DQuickScene2D.pc +libdata/pkgconfig/Qt63DRender.pc +%%QT_DATADIR%%/modules/3DAnimation.json +%%QT_DATADIR%%/modules/3DCore.json +%%QT_DATADIR%%/modules/3DExtras.json +%%QT_DATADIR%%/modules/3DInput.json +%%QT_DATADIR%%/modules/3DLogic.json +%%QT_DATADIR%%/modules/3DQuick.json +%%QT_DATADIR%%/modules/3DQuickAnimation.json +%%QT_DATADIR%%/modules/3DQuickExtras.json +%%QT_DATADIR%%/modules/3DQuickInput.json +%%QT_DATADIR%%/modules/3DQuickRender.json +%%QT_DATADIR%%/modules/3DQuickScene2D.json +%%QT_DATADIR%%/modules/3DRender.json +@dir %%QT_CMAKEDIR%%/Qt63DAnimation +@dir %%QT_CMAKEDIR%%/Qt63DCore +@dir %%QT_CMAKEDIR%%/Qt63DExtras +@dir %%QT_CMAKEDIR%%/Qt63DInput +@dir %%QT_CMAKEDIR%%/Qt63DLogic +@dir %%QT_CMAKEDIR%%/Qt63DQuick +@dir %%QT_CMAKEDIR%%/Qt63DQuickAnimation +@dir %%QT_CMAKEDIR%%/Qt63DQuickExtras +@dir %%QT_CMAKEDIR%%/Qt63DQuickInput +@dir %%QT_CMAKEDIR%%/Qt63DQuickRender +@dir %%QT_CMAKEDIR%%/Qt63DQuickScene2D +@dir %%QT_CMAKEDIR%%/Qt63DRender +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6Qml/QmlPlugins +@dir %%QT_LIBDIR%%/cmake/Qt63DAnimation +@dir %%QT_LIBDIR%%/cmake/Qt63DCore +@dir %%QT_LIBDIR%%/cmake/Qt63DExtras +@dir %%QT_LIBDIR%%/cmake/Qt63DInput +@dir %%QT_LIBDIR%%/cmake/Qt63DLogic +@dir %%QT_LIBDIR%%/cmake/Qt63DQuick +@dir %%QT_LIBDIR%%/cmake/Qt63DQuickAnimation +@dir %%QT_LIBDIR%%/cmake/Qt63DQuickExtras +@dir %%QT_LIBDIR%%/cmake/Qt63DQuickInput +@dir %%QT_LIBDIR%%/cmake/Qt63DQuickRender +@dir %%QT_LIBDIR%%/cmake/Qt63DQuickScene2D +@dir %%QT_LIBDIR%%/cmake/Qt63DRender +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6Qml/QmlPlugins +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/graphics/qt6-imageformats/Makefile b/graphics/qt6-imageformats/Makefile new file mode 100644 index 000000000000..ea144aa8515d --- /dev/null +++ b/graphics/qt6-imageformats/Makefile @@ -0,0 +1,35 @@ +PORTNAME= imageformats +DISTVERSION= ${QT6_VERSION} +CATEGORIES= graphics +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt6 plugins for additional image formats: TIFF, MNG, TGA, WBMP + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libjasper.so:graphics/jasper \ + libwebp.so:graphics/webp \ + libtiff.so:graphics/tiff \ + libdouble-conversion.so:devel/double-conversion \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicudata.so:devel/icu \ + libjbig.so:graphics/jbigkit \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome jpeg pkgconfig xorg \ + qt-dist:6 +USE_GL= egl gl opengl +USE_GNOME= glib20 +USE_QT= base +USE_XORG= x11 xau xcb xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/graphics/qt6-imageformats/distinfo b/graphics/qt6-imageformats/distinfo new file mode 100644 index 000000000000..eeeafce2e6d5 --- /dev/null +++ b/graphics/qt6-imageformats/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482604 +SHA256 (KDE/Qt/6.3.1/qtimageformats-everywhere-src-6.3.1.tar.xz) = ad0312b8dfbbb67f729bfadbfcd47246ee4a128b717731ba158c41d01fde212f +SIZE (KDE/Qt/6.3.1/qtimageformats-everywhere-src-6.3.1.tar.xz) = 1860072 diff --git a/graphics/qt6-imageformats/pkg-descr b/graphics/qt6-imageformats/pkg-descr new file mode 100644 index 000000000000..5f0c19ac5e2c --- /dev/null +++ b/graphics/qt6-imageformats/pkg-descr @@ -0,0 +1,6 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Plugins for additional image formats: TIFF, MNG, TGA, WBMP. + +WWW: http://qt-project.org diff --git a/graphics/qt6-imageformats/pkg-plist b/graphics/qt6-imageformats/pkg-plist new file mode 100644 index 000000000000..198be65a9da1 --- /dev/null +++ b/graphics/qt6-imageformats/pkg-plist @@ -0,0 +1,45 @@ +lib/cmake/Qt6/FindLibmng.cmake +lib/cmake/Qt6/FindWrapJasper.cmake +lib/cmake/Qt6/FindWrapWebP.cmake +lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QICNSPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QJp2PluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QJp2PluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QJp2PluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QTgaPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QTiffPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QTiffPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QWbmpPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QWebpPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QWebpPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake +%%QT_PLUGINDIR%%/imageformats/libqicns.so +%%QT_PLUGINDIR%%/imageformats/libqjp2.so +%%QT_PLUGINDIR%%/imageformats/libqtga.so +%%QT_PLUGINDIR%%/imageformats/libqtiff.so +%%QT_PLUGINDIR%%/imageformats/libqwbmp.so +%%QT_PLUGINDIR%%/imageformats/libqwebp.so diff --git a/graphics/qt6-svg/Makefile b/graphics/qt6-svg/Makefile new file mode 100644 index 000000000000..21ac2b621238 --- /dev/null +++ b/graphics/qt6-svg/Makefile @@ -0,0 +1,31 @@ +PORTNAME= svg +DISTVERSION= ${QT6_VERSION} +CATEGORIES= graphics +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt6 classes for displaying the contents of SVG files + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicudata.so:devel/icu \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome xorg \ + qt-dist:6 +USE_GL= egl gl opengl +USE_GNOME= glib20 +USE_QT= base +USE_XORG= x11 xau xcb xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/graphics/qt6-svg/distinfo b/graphics/qt6-svg/distinfo new file mode 100644 index 000000000000..748625b8ada0 --- /dev/null +++ b/graphics/qt6-svg/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482606 +SHA256 (KDE/Qt/6.3.1/qtsvg-everywhere-src-6.3.1.tar.xz) = 7b19f418e6f7b8e23344082dd04440aacf5da23c5a73980ba22ae4eba4f87df7 +SIZE (KDE/Qt/6.3.1/qtsvg-everywhere-src-6.3.1.tar.xz) = 1727104 diff --git a/graphics/qt6-svg/pkg-descr b/graphics/qt6-svg/pkg-descr new file mode 100644 index 000000000000..2b85d5328d03 --- /dev/null +++ b/graphics/qt6-svg/pkg-descr @@ -0,0 +1,8 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Classes for displaying the contents of SVG files. Supports a subset of the +SVG 1.2 Tiny standard. A separate library of Qt SVG Widgets C++ Classes provides +support for rendering SVG files in a widget UI. + +WWW: http://qt-project.org diff --git a/graphics/qt6-svg/pkg-plist b/graphics/qt6-svg/pkg-plist new file mode 100644 index 000000000000..15202e5620d8 --- /dev/null +++ b/graphics/qt6-svg/pkg-plist @@ -0,0 +1,87 @@ +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgfont_p.h +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvggraphics_p.h +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvghandler_p.h +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgnode_p.h +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgstructure_p.h +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgstyle_p.h +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qsvgtinydocument_p.h +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qtsvgexports_p.h +%%QT_INCDIR%%/QtSvg/%%FULLVER%%/QtSvg/private/qtsvgglobal_p.h +%%QT_INCDIR%%/QtSvg/QSvgGenerator +%%QT_INCDIR%%/QtSvg/QSvgRenderer +%%QT_INCDIR%%/QtSvg/QtSvg +%%QT_INCDIR%%/QtSvg/QtSvgDepends +%%QT_INCDIR%%/QtSvg/QtSvgVersion +%%QT_INCDIR%%/QtSvg/qsvggenerator.h +%%QT_INCDIR%%/QtSvg/qsvgrenderer.h +%%QT_INCDIR%%/QtSvg/qtsvgexports.h +%%QT_INCDIR%%/QtSvg/qtsvgglobal.h +%%QT_INCDIR%%/QtSvg/qtsvgversion.h +%%QT_INCDIR%%/QtSvgWidgets/QGraphicsSvgItem +%%QT_INCDIR%%/QtSvgWidgets/QSvgWidget +%%QT_INCDIR%%/QtSvgWidgets/QtSvgWidgets +%%QT_INCDIR%%/QtSvgWidgets/QtSvgWidgetsDepends +%%QT_INCDIR%%/QtSvgWidgets/QtSvgWidgetsVersion +%%QT_INCDIR%%/QtSvgWidgets/qgraphicssvgitem.h +%%QT_INCDIR%%/QtSvgWidgets/qsvgwidget.h +%%QT_INCDIR%%/QtSvgWidgets/qtsvgwidgetsexports.h +%%QT_INCDIR%%/QtSvgWidgets/qtsvgwidgetsglobal.h +%%QT_INCDIR%%/QtSvgWidgets/qtsvgwidgetsversion.h +lib/cmake/Qt6BuildInternals/StandaloneTests/QtSvgTestsConfig.cmake +lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QSvgPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QSvgPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake +lib/cmake/Qt6Svg/Qt6SvgAdditionalTargetInfo.cmake +lib/cmake/Qt6Svg/Qt6SvgConfig.cmake +lib/cmake/Qt6Svg/Qt6SvgConfigVersion.cmake +lib/cmake/Qt6Svg/Qt6SvgConfigVersionImpl.cmake +lib/cmake/Qt6Svg/Qt6SvgDependencies.cmake +lib/cmake/Qt6Svg/Qt6SvgTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Svg/Qt6SvgTargets.cmake +lib/cmake/Qt6Svg/Qt6SvgVersionlessTargets.cmake +lib/cmake/Qt6SvgWidgets/Qt6SvgWidgetsAdditionalTargetInfo.cmake +lib/cmake/Qt6SvgWidgets/Qt6SvgWidgetsConfig.cmake +lib/cmake/Qt6SvgWidgets/Qt6SvgWidgetsConfigVersion.cmake +lib/cmake/Qt6SvgWidgets/Qt6SvgWidgetsConfigVersionImpl.cmake +lib/cmake/Qt6SvgWidgets/Qt6SvgWidgetsDependencies.cmake +lib/cmake/Qt6SvgWidgets/Qt6SvgWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6SvgWidgets/Qt6SvgWidgetsTargets.cmake +lib/cmake/Qt6SvgWidgets/Qt6SvgWidgetsVersionlessTargets.cmake +%%QT_LIBDIR%%/libQt6Svg.prl +%%QT_LIBDIR%%/libQt6Svg.so +%%QT_LIBDIR%%/libQt6Svg.so.6 +%%QT_LIBDIR%%/libQt6Svg.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6SvgWidgets.prl +%%QT_LIBDIR%%/libQt6SvgWidgets.so +%%QT_LIBDIR%%/libQt6SvgWidgets.so.6 +%%QT_LIBDIR%%/libQt6SvgWidgets.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6svg_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6svgwidgets_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_svg.pri +%%QT_MKSPECDIR%%/modules/qt_lib_svg_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_svgwidgets.pri +%%QT_MKSPECDIR%%/modules/qt_lib_svgwidgets_private.pri +%%QT_PLUGINDIR%%/iconengines/libqsvgicon.so +%%QT_PLUGINDIR%%/imageformats/libqsvg.so +libdata/pkgconfig/Qt6Svg.pc +libdata/pkgconfig/Qt6SvgWidgets.pc +%%QT_DATADIR%%/modules/Svg.json +%%QT_DATADIR%%/modules/SvgWidgets.json +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6Gui +@dir %%QT_CMAKEDIR%%/Qt6Svg +@dir %%QT_CMAKEDIR%%/Qt6SvgWidgets +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6Gui +@dir %%QT_LIBDIR%%/cmake/Qt6Svg +@dir %%QT_LIBDIR%%/cmake/Qt6SvgWidgets +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/graphics/qt6-wayland/Makefile b/graphics/qt6-wayland/Makefile new file mode 100644 index 000000000000..98b39fd53816 --- /dev/null +++ b/graphics/qt6-wayland/Makefile @@ -0,0 +1,35 @@ +PORTNAME= wayland +DISTVERSION= ${QT6_VERSION} +CATEGORIES= graphics +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt6 wrapper for Wayland + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ + libepoll-shim.so:devel/libepoll-shim \ + libexpat.so:textproc/expat2 \ + libffi.so:devel/libffi \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicudata.so:devel/icu \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libwayland-client.so:graphics/wayland \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome pkgconfig xorg \ + qt-dist:6 xorg +USE_GL= gl egl +USE_GNOME= glib20 +USE_XORG= xcomposite +USE_QT= base declarative +USE_XORG= x11 xau xcb xcomposite xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/graphics/qt6-wayland/distinfo b/graphics/qt6-wayland/distinfo new file mode 100644 index 000000000000..afe9dd263dd2 --- /dev/null +++ b/graphics/qt6-wayland/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482607 +SHA256 (KDE/Qt/6.3.1/qtwayland-everywhere-src-6.3.1.tar.xz) = 6f14fea2d172a5b4170be3efcb0e58535f6605b61bcd823f6d5c9d165bb8c0f0 +SIZE (KDE/Qt/6.3.1/qtwayland-everywhere-src-6.3.1.tar.xz) = 835896 diff --git a/graphics/qt6-wayland/files/patch-CMakeLists.txt b/graphics/qt6-wayland/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..ad2601f718c4 --- /dev/null +++ b/graphics/qt6-wayland/files/patch-CMakeLists.txt @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2020-12-12 09:32:26 UTC ++++ CMakeLists.txt +@@ -21,7 +21,7 @@ find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED CO + BuildInternals + ) + +-if(NOT MACOS AND NOT QNX AND (ANDROID OR NOT LINUX)) ++if(NOT FREEBSD AND NOT MACOS AND NOT QNX AND (ANDROID OR NOT LINUX)) + message(NOTICE "Skipping the build as the condition \"LINUX OR MACOS OR QNX\" is not met.") + return() + endif() diff --git a/graphics/qt6-wayland/pkg-descr b/graphics/qt6-wayland/pkg-descr new file mode 100644 index 000000000000..fb08ecba12d5 --- /dev/null +++ b/graphics/qt6-wayland/pkg-descr @@ -0,0 +1,6 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Provides a framework to develop a Wayland compositor. + +WWW: http://qt-project.org diff --git a/graphics/qt6-wayland/pkg-plist b/graphics/qt6-wayland/pkg-plist new file mode 100644 index 000000000000..07f92d69ca8d --- /dev/null +++ b/graphics/qt6-wayland/pkg-plist @@ -0,0 +1,621 @@ +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qtwaylandclient-config_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qtwaylandclientglobal_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-hardware-integration.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-pointer-gestures-unstable-v1.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-qt-key-unstable-v1.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-qt-text-input-method-unstable-v1.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-qt-windowmanager.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-server-buffer-extension.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-surface-extension.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-tablet-unstable-v2.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-text-input-unstable-v2.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-text-input-unstable-v4-wip.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-touch-extension.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-wayland.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-wp-primary-selection-unstable-v1.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwayland-xdg-output-unstable-v1.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandabstractdecoration_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandbuffer_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegration_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegrationfactory_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientbufferintegrationplugin_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientextension_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclientshellapi_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandclipboard_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandcursor_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatadevice_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatadevicemanager_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddataoffer_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddatasource_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddecorationfactory_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddecorationplugin_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddisplay_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylanddnd_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandextendedsurface_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandhardwareintegration_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputcontext_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdevice_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegration_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegrationfactory_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputdeviceintegrationplugin_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandinputmethodcontext_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandintegration_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandnativeinterface_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandpointergestures_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandprimaryselectionv1_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandqtkey_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandscreen_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegration_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegrationfactory_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandserverbufferintegrationplugin_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegration_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegrationfactory_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellintegrationplugin_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshellsurface_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshm_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshmbackingstore_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandshmwindow_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandsubsurface_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandsurface_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtabletv2_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtextinputinterface_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtextinputv2_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtextinputv4_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandtouch_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandvulkaninstance_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandvulkanwindow_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandwindow_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/qwaylandwindowmanagerintegration_p.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-hardware-integration-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-pointer-gestures-unstable-v1-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-qt-key-unstable-v1-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-qt-text-input-method-unstable-v1-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-qt-windowmanager-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-server-buffer-extension-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-surface-extension-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-tablet-unstable-v2-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-text-input-unstable-v2-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-text-input-unstable-v4-wip-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-touch-extension-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-wayland-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-wp-primary-selection-unstable-v1-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/%%FULLVER%%/QtWaylandClient/private/wayland-xdg-output-unstable-v1-client-protocol.h +%%QT_INCDIR%%/QtWaylandClient/QWaylandClientExtension +%%QT_INCDIR%%/QtWaylandClient/QWaylandClientExtensionTemplate +%%QT_INCDIR%%/QtWaylandClient/QtWaylandClient +%%QT_INCDIR%%/QtWaylandClient/QtWaylandClientDepends +%%QT_INCDIR%%/QtWaylandClient/QtWaylandClientVersion +%%QT_INCDIR%%/QtWaylandClient/qtwaylandclient-config.h +%%QT_INCDIR%%/QtWaylandClient/qtwaylandclientexports.h +%%QT_INCDIR%%/QtWaylandClient/qtwaylandclientglobal.h +%%QT_INCDIR%%/QtWaylandClient/qtwaylandclientversion.h +%%QT_INCDIR%%/QtWaylandClient/qwaylandclientexport.h +%%QT_INCDIR%%/QtWaylandClient/qwaylandclientextension.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qtwaylandcompositor-config_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qtwaylandcompositorglobal_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-hardware-integration.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-idle-inhibit-unstable-v1.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-ivi-application.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-presentation-time.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-qt-key-unstable-v1.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-qt-text-input-method-unstable-v1.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-qt-texture-sharing-unstable-v1.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-qt-windowmanager.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-scaler.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-server-buffer-extension.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-text-input-unstable-v2.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-text-input-unstable-v4-wip.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-touch-extension.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-viewporter.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-wayland.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-xdg-decoration-unstable-v1.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-xdg-output-unstable-v1.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwayland-server-xdg-shell.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandcompositor_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandcompositorextension_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandcompositorquickextensions_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylanddestroylistener_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandidleinhibitv1_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandinputmethodcontrol_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandiviapplication_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandivisurface_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandivisurfaceintegration_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandkeyboard_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandkeymap_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandmousetracker_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandoutput_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandoutputmode_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandpointer_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandpresentationtime_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandpresentationtime_p_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandqttextinputmethod_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandqttextinputmethodmanager_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandqtwindowmanager_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandquickhardwarelayer_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandquickitem_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandquickshellsurfaceitem_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandquicksurface_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandseat_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandshell_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandsurface_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandtextinput_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandtextinputmanager_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandtextinputmanagerv4_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandtextinputv4_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandtouch_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandutils_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandview_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandviewporter_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandwlshell_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandwlshellintegration_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgdecorationv1_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgoutputv1_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgshell_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwaylandxdgshellintegration_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlbuffermanager_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlclientbuffer_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlclientbufferintegration_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlclientbufferintegrationfactory_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlclientbufferintegrationplugin_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwldatadevice_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwldatadevicemanager_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwldataoffer_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwldatasource_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlhardwarelayerintegration_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlhardwarelayerintegrationfactory_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlhardwarelayerintegrationplugin_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlhwintegration_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlqtkey_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlqttouch_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlregion_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlserverbufferintegration_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlserverbufferintegrationfactory_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwlserverbufferintegrationplugin_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/qwltexturesharingextension_p.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-hardware-integration-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-idle-inhibit-unstable-v1-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-ivi-application-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-presentation-time-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-qt-key-unstable-v1-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-qt-text-input-method-unstable-v1-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-qt-texture-sharing-unstable-v1-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-qt-windowmanager-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-scaler-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-server-buffer-extension-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-text-input-unstable-v2-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-text-input-unstable-v4-wip-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-touch-extension-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-viewporter-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-wayland-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-xdg-decoration-unstable-v1-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-xdg-output-unstable-v1-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/%%FULLVER%%/QtWaylandCompositor/private/wayland-xdg-shell-server-protocol.h +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandBufferRef +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandClient +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandCompositor +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandCompositorExtension +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandCompositorExtensionTemplate +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandDestroyListener +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandDrag +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandIdleInhibitManagerV1 +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandInputMethodControl +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandIviApplication +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandIviSurface +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandKeyboard +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandKeymap +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandObject +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandOutput +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandOutputMode +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandPointer +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQtTextInputMethod +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQtTextInputMethodManager +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQtWindowManager +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickCompositor +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickExtension +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickItem +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickOutput +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickShellIntegration +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickShellSurfaceItem +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickSurface +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandQuickXdgOutputV1 +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandResource +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandSeat +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandShell +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandShellSurface +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandShellSurfaceTemplate +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandShellTemplate +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandSurface +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandSurfaceGrabber +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandSurfaceRole +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandTextInput +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandTextInputManager +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandTextInputManagerV4 +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandTextInputV4 +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandTouch +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandView +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandViewporter +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandWlShell +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandWlShellSurface +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgDecorationManagerV1 +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgOutputManagerV1 +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgOutputV1 +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgPopup +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgShell +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgSurface +%%QT_INCDIR%%/QtWaylandCompositor/QWaylandXdgToplevel +%%QT_INCDIR%%/QtWaylandCompositor/QtWaylandCompositor +%%QT_INCDIR%%/QtWaylandCompositor/QtWaylandCompositorDepends +%%QT_INCDIR%%/QtWaylandCompositor/QtWaylandCompositorVersion +%%QT_INCDIR%%/QtWaylandCompositor/qtwaylandcompositor-config.h +%%QT_INCDIR%%/QtWaylandCompositor/qtwaylandcompositorexports.h +%%QT_INCDIR%%/QtWaylandCompositor/qtwaylandcompositorglobal.h +%%QT_INCDIR%%/QtWaylandCompositor/qtwaylandcompositorversion.h +%%QT_INCDIR%%/QtWaylandCompositor/qtwaylandqmlinclude.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandbufferref.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandclient.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandcompositor.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandcompositorextension.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylanddestroylistener.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylanddrag.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandexport.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandidleinhibitv1.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandinputmethodcontrol.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandiviapplication.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandivisurface.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandkeyboard.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandkeymap.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandoutput.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandoutputmode.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandpointer.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandqttextinputmethod.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandqttextinputmethodmanager.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandqtwindowmanager.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickchildren.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickcompositor.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickextension.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickitem.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickoutput.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickshellintegration.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickshellsurfaceitem.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquicksurface.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandquickxdgoutputv1.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandresource.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandseat.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandshell.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandshellsurface.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandsurface.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandsurfacegrabber.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandtextinput.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandtextinputmanager.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandtextinputmanagerv4.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandtextinputv4.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandtouch.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandview.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandviewporter.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandwlshell.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandxdgdecorationv1.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandxdgoutputv1.h +%%QT_INCDIR%%/QtWaylandCompositor/qwaylandxdgshell.h +%%QT_INCDIR%%/QtWaylandEglClientHwIntegration/%%FULLVER%%/QtWaylandEglClientHwIntegration/private/qwaylandeglclientbufferintegration_p.h +%%QT_INCDIR%%/QtWaylandEglClientHwIntegration/%%FULLVER%%/QtWaylandEglClientHwIntegration/private/qwaylandeglinclude_p.h +%%QT_INCDIR%%/QtWaylandEglClientHwIntegration/%%FULLVER%%/QtWaylandEglClientHwIntegration/private/qwaylandeglwindow_p.h +%%QT_INCDIR%%/QtWaylandEglClientHwIntegration/%%FULLVER%%/QtWaylandEglClientHwIntegration/private/qwaylandglcontext_p.h +%%QT_INCDIR%%/QtWaylandEglClientHwIntegration/QtWaylandEglClientHwIntegration +%%QT_INCDIR%%/QtWaylandEglClientHwIntegration/QtWaylandEglClientHwIntegrationDepends +%%QT_INCDIR%%/QtWaylandEglClientHwIntegration/QtWaylandEglClientHwIntegrationVersion +%%QT_INCDIR%%/QtWaylandEglClientHwIntegration/qtwaylandeglclienthwintegrationversion.h +%%QT_INCDIR%%/QtWaylandEglCompositorHwIntegration/%%FULLVER%%/QtWaylandEglCompositorHwIntegration/private/waylandeglclientbufferintegration_p.h +%%QT_INCDIR%%/QtWaylandEglCompositorHwIntegration/QtWaylandEglCompositorHwIntegration +%%QT_INCDIR%%/QtWaylandEglCompositorHwIntegration/QtWaylandEglCompositorHwIntegrationDepends +%%QT_INCDIR%%/QtWaylandEglCompositorHwIntegration/QtWaylandEglCompositorHwIntegrationVersion +%%QT_INCDIR%%/QtWaylandEglCompositorHwIntegration/qtwaylandeglcompositorhwintegrationversion.h +%%QT_INCDIR%%/QtWaylandGlobal/%%FULLVER%%/QtWaylandGlobal/private/qtwaylandglobal-config_p.h +%%QT_INCDIR%%/QtWaylandGlobal/QtWaylandGlobal +%%QT_INCDIR%%/QtWaylandGlobal/QtWaylandGlobalDepends +%%QT_INCDIR%%/QtWaylandGlobal/QtWaylandGlobalVersion +%%QT_INCDIR%%/QtWaylandGlobal/qtwaylandglobal-config.h +%%QT_INCDIR%%/QtWaylandGlobal/qtwaylandglobalversion.h +%%QT_INCDIR%%/QtWlShellIntegration/%%FULLVER%%/QtWlShellIntegration/private/qwaylandwlshellintegration_p.h +%%QT_INCDIR%%/QtWlShellIntegration/%%FULLVER%%/QtWlShellIntegration/private/qwaylandwlshellsurface_p.h +%%QT_INCDIR%%/QtWlShellIntegration/QtWlShellIntegration +%%QT_INCDIR%%/QtWlShellIntegration/QtWlShellIntegrationDepends +%%QT_INCDIR%%/QtWlShellIntegration/QtWlShellIntegrationVersion +%%QT_INCDIR%%/QtWlShellIntegration/qtwlshellintegrationversion.h +lib/cmake/Qt6/FindWaylandkms.cmake +lib/cmake/Qt6BuildInternals/StandaloneTests/QtWaylandTestsConfig.cmake +lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QWaylandEglPlatformIntegrationPluginTargets.cmake +lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfig.cmake +lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Gui/Qt6QWaylandIntegrationPluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorIviapplicationAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorIviapplicationConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorIviapplicationConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorIviapplicationConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorIviapplicationTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorIviapplicationTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorPresentationTimeAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorPresentationTimeConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorPresentationTimeConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorPresentationTimeConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorPresentationTimeTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorPresentationTimeTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorQtShellAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorQtShellConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorQtShellConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorQtShellConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorQtShellDependencies.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorQtShellTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorQtShellTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorWLShellAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorWLShellConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorWLShellConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorWLShellConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorWLShellTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorWLShellTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorXdgShellAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorXdgShellConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorXdgShellConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorXdgShellConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorXdgShellTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandCompositorXdgShellTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingExtensionAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingExtensionConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingExtensionConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingExtensionConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingExtensionTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingExtensionTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6WaylandTextureSharingTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qwaylandcompositorpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qwaylandcompositorpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qwaylandcompositorpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qwaylandcompositorpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qwaylandcompositorpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qwaylandcompositorpluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandBradientDecorationPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandEglClientBufferPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandFullScreenShellV1IntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandIviShellIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandIviShellIntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandIviShellIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandIviShellIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandIviShellIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandIviShellIntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandQtShellIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandQtShellIntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandQtShellIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandQtShellIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandQtShellIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandQtShellIntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandWlShellIntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6QWaylandXdgShellIntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6ShmServerBufferPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6VulkanServerBufferPluginTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientConfig.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientConfigVersion.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientConfigVersionImpl.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientDependencies.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientMacros.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientTargets.cmake +lib/cmake/Qt6WaylandClient/Qt6WaylandClientVersionlessTargets.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglClientBufferIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglClientBufferIntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglClientBufferIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglClientBufferIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglClientBufferIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglClientBufferIntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglStreamClientBufferIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglStreamClientBufferIntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglStreamClientBufferIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglStreamClientBufferIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglStreamClientBufferIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandCompositor/Qt6QWaylandEglStreamClientBufferIntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandCompositor/Qt6ShmServerBufferIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandCompositor/Qt6ShmServerBufferIntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandCompositor/Qt6ShmServerBufferIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandCompositor/Qt6ShmServerBufferIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandCompositor/Qt6ShmServerBufferIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandCompositor/Qt6ShmServerBufferIntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandCompositor/Qt6VulkanServerBufferIntegrationPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandCompositor/Qt6VulkanServerBufferIntegrationPluginConfig.cmake +lib/cmake/Qt6WaylandCompositor/Qt6VulkanServerBufferIntegrationPluginConfigVersion.cmake +lib/cmake/Qt6WaylandCompositor/Qt6VulkanServerBufferIntegrationPluginConfigVersionImpl.cmake +lib/cmake/Qt6WaylandCompositor/Qt6VulkanServerBufferIntegrationPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandCompositor/Qt6VulkanServerBufferIntegrationPluginTargets.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorConfig.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorConfigVersion.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorConfigVersionImpl.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorDependencies.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorMacros.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorTargets.cmake +lib/cmake/Qt6WaylandCompositor/Qt6WaylandCompositorVersionlessTargets.cmake +lib/cmake/Qt6WaylandEglClientHwIntegrationPrivate/Qt6WaylandEglClientHwIntegrationPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandEglClientHwIntegrationPrivate/Qt6WaylandEglClientHwIntegrationPrivateConfig.cmake +lib/cmake/Qt6WaylandEglClientHwIntegrationPrivate/Qt6WaylandEglClientHwIntegrationPrivateConfigVersion.cmake +lib/cmake/Qt6WaylandEglClientHwIntegrationPrivate/Qt6WaylandEglClientHwIntegrationPrivateConfigVersionImpl.cmake +lib/cmake/Qt6WaylandEglClientHwIntegrationPrivate/Qt6WaylandEglClientHwIntegrationPrivateDependencies.cmake +lib/cmake/Qt6WaylandEglClientHwIntegrationPrivate/Qt6WaylandEglClientHwIntegrationPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandEglClientHwIntegrationPrivate/Qt6WaylandEglClientHwIntegrationPrivateTargets.cmake +lib/cmake/Qt6WaylandEglClientHwIntegrationPrivate/Qt6WaylandEglClientHwIntegrationPrivateVersionlessTargets.cmake +lib/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate/Qt6WaylandEglCompositorHwIntegrationPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate/Qt6WaylandEglCompositorHwIntegrationPrivateConfig.cmake +lib/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate/Qt6WaylandEglCompositorHwIntegrationPrivateConfigVersion.cmake +lib/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate/Qt6WaylandEglCompositorHwIntegrationPrivateConfigVersionImpl.cmake +lib/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate/Qt6WaylandEglCompositorHwIntegrationPrivateDependencies.cmake +lib/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate/Qt6WaylandEglCompositorHwIntegrationPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate/Qt6WaylandEglCompositorHwIntegrationPrivateTargets.cmake +lib/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate/Qt6WaylandEglCompositorHwIntegrationPrivateVersionlessTargets.cmake +lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateConfig.cmake +lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateConfigVersion.cmake +lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateConfigVersionImpl.cmake +lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateTargets.cmake +lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateVersionlessTargets.cmake +lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfig.cmake +lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfigVersion.cmake +lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfigVersionImpl.cmake +lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsDependencies.cmake +lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsTargets.cmake +lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsVersionlessTargets.cmake +lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateConfig.cmake +lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateConfigVersion.cmake +lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateConfigVersionImpl.cmake +lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateDependencies.cmake +lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateTargets.cmake +lib/cmake/Qt6WlShellIntegrationPrivate/Qt6WlShellIntegrationPrivateVersionlessTargets.cmake +%%QT_LIBDIR%%/libQt6WaylandClient.prl +%%QT_LIBDIR%%/libQt6WaylandClient.so +%%QT_LIBDIR%%/libQt6WaylandClient.so.6 +%%QT_LIBDIR%%/libQt6WaylandClient.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6WaylandCompositor.prl +%%QT_LIBDIR%%/libQt6WaylandCompositor.so +%%QT_LIBDIR%%/libQt6WaylandCompositor.so.6 +%%QT_LIBDIR%%/libQt6WaylandCompositor.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6WaylandEglClientHwIntegration.prl +%%QT_LIBDIR%%/libQt6WaylandEglClientHwIntegration.so +%%QT_LIBDIR%%/libQt6WaylandEglClientHwIntegration.so.6 +%%QT_LIBDIR%%/libQt6WaylandEglClientHwIntegration.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6WaylandEglCompositorHwIntegration.prl +%%QT_LIBDIR%%/libQt6WaylandEglCompositorHwIntegration.so +%%QT_LIBDIR%%/libQt6WaylandEglCompositorHwIntegration.so.6 +%%QT_LIBDIR%%/libQt6WaylandEglCompositorHwIntegration.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6WlShellIntegration.prl +%%QT_LIBDIR%%/libQt6WlShellIntegration.so +%%QT_LIBDIR%%/libQt6WlShellIntegration.so.6 +%%QT_LIBDIR%%/libQt6WlShellIntegration.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6waylandclient_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6waylandcompositor_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6waylandeglclienthwintegrationprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6waylandeglcompositorhwintegrationprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6wlshellintegrationprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_wayland_egl_client_hw_integration_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_wayland_egl_compositor_hw_integration_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_waylandclient.pri +%%QT_MKSPECDIR%%/modules/qt_lib_waylandclient_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_waylandcompositor.pri +%%QT_MKSPECDIR%%/modules/qt_lib_waylandcompositor_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_waylandglobal_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_wl_shell_integration_private.pri +%%QT_PLUGINDIR%%/platforms/libqwayland-egl.so +%%QT_PLUGINDIR%%/platforms/libqwayland-generic.so +%%QT_PLUGINDIR%%/wayland-decoration-client/libbradient.so +%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libqt-plugin-wayland-egl.so +%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libshm-emulation-server.so +%%QT_PLUGINDIR%%/wayland-graphics-integration-client/libvulkan-server.so +%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libqt-wayland-compositor-shm-emulation-server.so +%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libqt-wayland-compositor-vulkan-server.so +%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libqt-wayland-compositor-wayland-egl.so +%%QT_PLUGINDIR%%/wayland-graphics-integration-server/libqt-wayland-compositor-wayland-eglstream-controller.so +%%QT_PLUGINDIR%%/wayland-shell-integration/libfullscreen-shell-v1.so +%%QT_PLUGINDIR%%/wayland-shell-integration/libivi-shell.so +%%QT_PLUGINDIR%%/wayland-shell-integration/libqt-shell.so +%%QT_PLUGINDIR%%/wayland-shell-integration/libwl-shell-plugin.so +%%QT_PLUGINDIR%%/wayland-shell-integration/libxdg-shell.so +%%QT_QMLDIR%%/QtWayland/Client/TextureSharing/libwaylandtexturesharingplugin.so +%%QT_QMLDIR%%/QtWayland/Client/TextureSharing/qmldir +%%QT_QMLDIR%%/QtWayland/Compositor/IviApplication/libwaylandcompositoriviapplicationplugin.so +%%QT_QMLDIR%%/QtWayland/Compositor/IviApplication/plugins.qmltypes +%%QT_QMLDIR%%/QtWayland/Compositor/IviApplication/qmldir +%%QT_QMLDIR%%/QtWayland/Compositor/PresentationTime/libwaylandcompositorpresentationtimeplugin.so +%%QT_QMLDIR%%/QtWayland/Compositor/PresentationTime/qmldir +%%QT_QMLDIR%%/QtWayland/Compositor/QtShell/libwaylandcompositorqtshellplugin.so +%%QT_QMLDIR%%/QtWayland/Compositor/QtShell/plugins.qmltypes +%%QT_QMLDIR%%/QtWayland/Compositor/QtShell/qmldir +%%QT_QMLDIR%%/QtWayland/Compositor/TextureSharingExtension/libwaylandtexturesharingextensionplugin.so +%%QT_QMLDIR%%/QtWayland/Compositor/TextureSharingExtension/qmldir +%%QT_QMLDIR%%/QtWayland/Compositor/WaylandCompositor.qmltypes +%%QT_QMLDIR%%/QtWayland/Compositor/WlShell/libwaylandcompositorwlshellplugin.so +%%QT_QMLDIR%%/QtWayland/Compositor/WlShell/plugins.qmltypes +%%QT_QMLDIR%%/QtWayland/Compositor/WlShell/qmldir +%%QT_QMLDIR%%/QtWayland/Compositor/XdgShell/libwaylandcompositorxdgshellplugin.so +%%QT_QMLDIR%%/QtWayland/Compositor/XdgShell/plugins.qmltypes +%%QT_QMLDIR%%/QtWayland/Compositor/XdgShell/qmldir +%%QT_QMLDIR%%/QtWayland/Compositor/libqwaylandcompositorplugin.so +%%QT_QMLDIR%%/QtWayland/Compositor/qmldir +%%QT_QMLDIR%%/QtWayland/Compositor/qmlfiles/WaylandCursorItem.qml +%%QT_QMLDIR%%/QtWayland/Compositor/qmlfiles/WaylandOutputWindow.qml +libdata/pkgconfig/Qt6WaylandClient.pc +libdata/pkgconfig/Qt6WaylandCompositor.pc +%%QT_LIBEXECDIR%%/qtwaylandscanner +%%QT_DATADIR%%/modules/WaylandClient.json +%%QT_DATADIR%%/modules/WaylandCompositor.json +%%QT_DATADIR%%/modules/WaylandEglClientHwIntegrationPrivate.json +%%QT_DATADIR%%/modules/WaylandEglCompositorHwIntegrationPrivate.json +%%QT_DATADIR%%/modules/WaylandGlobalPrivate.json +%%QT_DATADIR%%/modules/WlShellIntegrationPrivate.json +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6Gui +@dir %%QT_CMAKEDIR%%/Qt6Qml/QmlPlugins +@dir %%QT_CMAKEDIR%%/Qt6WaylandClient +@dir %%QT_CMAKEDIR%%/Qt6WaylandCompositor +@dir %%QT_CMAKEDIR%%/Qt6WaylandEglClientHwIntegrationPrivate +@dir %%QT_CMAKEDIR%%/Qt6WaylandEglCompositorHwIntegrationPrivate +@dir %%QT_CMAKEDIR%%/Qt6WaylandGlobalPrivate +@dir %%QT_CMAKEDIR%%/Qt6WaylandScannerTools +@dir %%QT_CMAKEDIR%%/Qt6WlShellIntegrationPrivate +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6Gui +@dir %%QT_LIBDIR%%/cmake/Qt6Qml/QmlPlugins +@dir %%QT_LIBDIR%%/cmake/Qt6WaylandClient +@dir %%QT_LIBDIR%%/cmake/Qt6WaylandCompositor +@dir %%QT_LIBDIR%%/cmake/Qt6WaylandEglClientHwIntegrationPrivate +@dir %%QT_LIBDIR%%/cmake/Qt6WaylandEglCompositorHwIntegrationPrivate +@dir %%QT_LIBDIR%%/cmake/Qt6WaylandGlobalPrivate +@dir %%QT_LIBDIR%%/cmake/Qt6WaylandScannerTools +@dir %%QT_LIBDIR%%/cmake/Qt6WlShellIntegrationPrivate +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/misc/Makefile b/misc/Makefile index 415382982481..e2c15c34bbe7 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -1,567 +1,568 @@ COMMENT = Miscellaneous utilities SUBDIR += R-cran-mime SUBDIR += R-cran-xfun SUBDIR += aclgen SUBDIR += actiona SUBDIR += adios2 SUBDIR += amanda-client SUBDIR += amanda-perl-wrapper SUBDIR += amanda-server SUBDIR += ansiweather SUBDIR += apparix SUBDIR += artikulate SUBDIR += asbutton SUBDIR += asr-manpages SUBDIR += astc-encoder SUBDIR += bb SUBDIR += bbjd SUBDIR += bdelta SUBDIR += bestfit SUBDIR += bible-kjv SUBDIR += biblesync SUBDIR += bibletime SUBDIR += biblical-curse SUBDIR += binclock SUBDIR += biosfont-demos SUBDIR += birthday SUBDIR += bogosort SUBDIR += bottlerocket SUBDIR += box2d SUBDIR += boxes SUBDIR += broot SUBDIR += bsod SUBDIR += buffer SUBDIR += cheat SUBDIR += chef SUBDIR += chmlib SUBDIR += chrono SUBDIR += cinnamon-translations SUBDIR += cldr-emoji-annotation SUBDIR += clex SUBDIR += clifm SUBDIR += cloc SUBDIR += clpbar SUBDIR += colortail SUBDIR += colwide SUBDIR += compat.el SUBDIR += compat10x SUBDIR += compat11x SUBDIR += compat12x SUBDIR += compat4x SUBDIR += compat5x SUBDIR += compat6x SUBDIR += compat7x SUBDIR += compat8x SUBDIR += compat9x SUBDIR += concourse SUBDIR += copperspice-examples SUBDIR += countrycodes SUBDIR += cpuid SUBDIR += crosti SUBDIR += cryptoballot SUBDIR += cs SUBDIR += cstream SUBDIR += ctm SUBDIR += cuttlefish SUBDIR += dahdi SUBDIR += dahdi-kmod SUBDIR += dahdi-kmod26 SUBDIR += darknet SUBDIR += dartsim SUBDIR += ddate SUBDIR += deco SUBDIR += dejagnu SUBDIR += delay SUBDIR += diction SUBDIR += digitemp SUBDIR += dive SUBDIR += dnetc SUBDIR += dtach SUBDIR += dvorak7min SUBDIR += dynomite SUBDIR += e2fsprogs-libblkid SUBDIR += e2fsprogs-libuuid SUBDIR += edfbrowser SUBDIR += edflib SUBDIR += elki SUBDIR += elscreen SUBDIR += estic SUBDIR += exercism SUBDIR += explosions SUBDIR += ezc3d SUBDIR += far2l SUBDIR += felis SUBDIR += figlet SUBDIR += figlet-fonts SUBDIR += findutils SUBDIR += firestring SUBDIR += flag SUBDIR += fortune-mod-bible SUBDIR += fortune-mod-bofh SUBDIR += fortune-mod-epictetus SUBDIR += fortune-mod-freebsd-classic SUBDIR += fortune-mod-futurama SUBDIR += fortune-mod-psalms SUBDIR += fortuneit SUBDIR += fpc-chm SUBDIR += fq SUBDIR += free42 SUBDIR += freebsd-doc-all SUBDIR += freebsd-doc-bn SUBDIR += freebsd-doc-da SUBDIR += freebsd-doc-de SUBDIR += freebsd-doc-el SUBDIR += freebsd-doc-en SUBDIR += freebsd-doc-es SUBDIR += freebsd-doc-fr SUBDIR += freebsd-doc-hu SUBDIR += freebsd-doc-id SUBDIR += freebsd-doc-it SUBDIR += freebsd-doc-ja SUBDIR += freebsd-doc-ko SUBDIR += freebsd-doc-mn SUBDIR += freebsd-doc-nl SUBDIR += freebsd-doc-pl SUBDIR += freebsd-doc-pt SUBDIR += freebsd-doc-ru SUBDIR += freebsd-doc-tr SUBDIR += freebsd-doc-zh_cn SUBDIR += freebsd-doc-zh_tw SUBDIR += freebsd-release-manifests SUBDIR += freeguide SUBDIR += frugally-deep SUBDIR += ftdi-eeprom SUBDIR += fxload SUBDIR += g810-led SUBDIR += gedkeeper SUBDIR += geekcode SUBDIR += getopt SUBDIR += gimp-help-en SUBDIR += gkrellm-gamma SUBDIR += gkrellm-xkb SUBDIR += gkrellmbgchg2 SUBDIR += gkrellmlaunch2 SUBDIR += gkrellshoot2 SUBDIR += gkx86info2 SUBDIR += global-tz SUBDIR += glow SUBDIR += gnome-devel-docs SUBDIR += gnome-getting-started-docs SUBDIR += gnome-icon-theme SUBDIR += gnome-icon-theme-extras SUBDIR += gnome-mime-data SUBDIR += gnome-user-docs SUBDIR += gnu-watch SUBDIR += gnuls SUBDIR += gobuster SUBDIR += gone SUBDIR += gplink SUBDIR += gpsim SUBDIR += granulate SUBDIR += grc SUBDIR += gwhich SUBDIR += hashdb SUBDIR += hello SUBDIR += help2man SUBDIR += heyu2 SUBDIR += hicolor-icon-theme SUBDIR += histring SUBDIR += hotkeys SUBDIR += hs-hascard SUBDIR += hulgalugha SUBDIR += hwdata SUBDIR += hxtools SUBDIR += ignition-fuel-tools SUBDIR += iio-oscilloscope SUBDIR += imerge SUBDIR += img2xterm SUBDIR += ini_file_manager SUBDIR += inplace SUBDIR += ipa_conv SUBDIR += ipbt SUBDIR += ironscanner SUBDIR += iselect SUBDIR += iso-codes SUBDIR += jargon SUBDIR += jbidwatcher SUBDIR += jojodiff SUBDIR += kbdscan SUBDIR += kcd SUBDIR += kde-thumbnailer-chm SUBDIR += kde-thumbnailer-epub SUBDIR += kde-thumbnailer-fb2 SUBDIR += kdeedu SUBDIR += kdeedu-data SUBDIR += kdeutils SUBDIR += kenny SUBDIR += kf5-purpose SUBDIR += kgeography SUBDIR += klettres SUBDIR += kookbook SUBDIR += ktouch SUBDIR += kwordquiz SUBDIR += lastools SUBDIR += latex-mk SUBDIR += lazyread SUBDIR += lc SUBDIR += lesspipe SUBDIR += lf SUBDIR += libad9361-iio SUBDIR += libcomps SUBDIR += libeatmydata SUBDIR += libemos SUBDIR += libiio SUBDIR += libkeduvocdocument SUBDIR += liblxi SUBDIR += libmetalink SUBDIR += libmodulemd SUBDIR += libpostal SUBDIR += libpredict SUBDIR += libpri SUBDIR += librepo SUBDIR += libsolv SUBDIR += libsupertone SUBDIR += libsweep-lidar SUBDIR += libutf SUBDIR += libxdf SUBDIR += lifelines SUBDIR += lingoteach SUBDIR += locale-en_DK SUBDIR += localedata SUBDIR += logsurfer SUBDIR += lv SUBDIR += lxde-common SUBDIR += lxi-tools SUBDIR += magicpoint SUBDIR += man.el SUBDIR += mate-user-guide SUBDIR += mbuffer SUBDIR += mc SUBDIR += mc-nox11 SUBDIR += mdp SUBDIR += meshoptimizer SUBDIR += metalink-checker SUBDIR += metalink-tools SUBDIR += mime-support SUBDIR += minidnn SUBDIR += mirmon SUBDIR += mmdnn SUBDIR += mmv SUBDIR += mnn SUBDIR += molequeue SUBDIR += morse SUBDIR += mtx SUBDIR += mxnet SUBDIR += najitool SUBDIR += ncnn SUBDIR += netron SUBDIR += nms SUBDIR += nn-insight SUBDIR += nnn SUBDIR += nsf SUBDIR += numchar SUBDIR += nut SUBDIR += ompl SUBDIR += ondir SUBDIR += opencyc SUBDIR += openhab SUBDIR += openhab-addons SUBDIR += openhab2 SUBDIR += openhab2-addons SUBDIR += openhantek SUBDIR += openhmd SUBDIR += openmvg SUBDIR += opennn SUBDIR += openr2 SUBDIR += openvdb SUBDIR += orange3 SUBDIR += orion SUBDIR += orville-write SUBDIR += osinfo-db SUBDIR += ossp-uuid SUBDIR += otter SUBDIR += owrep SUBDIR += p5-Acme-ButFirst SUBDIR += p5-Array-Compare SUBDIR += p5-Array-Diff SUBDIR += p5-Array-FileReader SUBDIR += p5-Array-IntSpan SUBDIR += p5-Array-LineReader SUBDIR += p5-Array-PrintCols SUBDIR += p5-Array-RefElem SUBDIR += p5-Array-Utils SUBDIR += p5-Asterisk-FastAGI SUBDIR += p5-Bot-Training SUBDIR += p5-Bot-Training-MegaHAL SUBDIR += p5-Bot-Training-StarCraft SUBDIR += p5-Business-EDI SUBDIR += p5-Business-Hours SUBDIR += p5-Business-ISBN SUBDIR += p5-Business-ISBN-Data SUBDIR += p5-Business-ISIN SUBDIR += p5-Business-ISMN SUBDIR += p5-Business-ISSN SUBDIR += p5-Business-UPS SUBDIR += p5-Chatbot-Eliza SUBDIR += p5-Data-Buffer SUBDIR += p5-File-CounterFile SUBDIR += p5-File-Sort SUBDIR += p5-Geo-Address-Formatter SUBDIR += p5-Geo-Cache SUBDIR += p5-Geo-Coder-Bing SUBDIR += p5-Geo-Coder-Google SUBDIR += p5-Geo-Coder-Googlev3 SUBDIR += p5-Geo-Coder-Mapquest SUBDIR += p5-Geo-Coder-Multimap SUBDIR += p5-Geo-Coder-Multiple SUBDIR += p5-Geo-Coder-Navteq SUBDIR += p5-Geo-Coder-OSM SUBDIR += p5-Geo-Coder-OpenCage SUBDIR += p5-Geo-Coder-Ovi SUBDIR += p5-Geo-Coder-PlaceFinder SUBDIR += p5-Geo-Coder-TomTom SUBDIR += p5-Geo-GeoNames SUBDIR += p5-Geo-Postcodes SUBDIR += p5-Geo-Postcodes-DK SUBDIR += p5-Geo-Postcodes-NO SUBDIR += p5-Geo-Weather SUBDIR += p5-Geography-Countries SUBDIR += p5-I18N-Charset SUBDIR += p5-I18N-LangTags SUBDIR += p5-LEGO-RCX SUBDIR += p5-List-Compare SUBDIR += p5-List-Util-WeightedRoundRobin SUBDIR += p5-Locale-Codes SUBDIR += p5-Locale-Geocode SUBDIR += p5-Locale-Msgcat SUBDIR += p5-Locale-SubCountry SUBDIR += p5-Locale-US SUBDIR += p5-Net-vCard SUBDIR += p5-OSSP-uuid SUBDIR += p5-Software-License SUBDIR += p5-Software-License-CCpack SUBDIR += p5-Test-Dir SUBDIR += p5-Text-FIGlet SUBDIR += p5-Tie-DxHash SUBDIR += p5-Zen-Koans SUBDIR += p5-asterisk-perl SUBDIR += parley SUBDIR += pastebinit SUBDIR += patchutils SUBDIR += pauker SUBDIR += pciids SUBDIR += pdmenu SUBDIR += pear-Services_Weather SUBDIR += pear-Text_Figlet SUBDIR += pecl-timezonedb SUBDIR += perkeep SUBDIR += pfm SUBDIR += php74-calendar SUBDIR += php80-calendar SUBDIR += php81-calendar SUBDIR += php82-calendar SUBDIR += pinfo SUBDIR += pipe SUBDIR += posixtestsuite SUBDIR += proxyper SUBDIR += pspresent SUBDIR += ptsort SUBDIR += pubs SUBDIR += py-PyUserInput SUBDIR += py-QSpectrumAnalyzer SUBDIR += py-SimpleSoapy SUBDIR += py-SoapySDR SUBDIR += py-alive-progress SUBDIR += py-boost-histogram SUBDIR += py-cinder SUBDIR += py-colorbrewer SUBDIR += py-colored SUBDIR += py-crudini SUBDIR += py-dictdiffer SUBDIR += py-eemeter SUBDIR += py-emoji SUBDIR += py-ezc3d SUBDIR += py-fast-histogram SUBDIR += py-fleep SUBDIR += py-fuzzy SUBDIR += py-gluoncv SUBDIR += py-gluonnlp SUBDIR += py-halo SUBDIR += py-histoprint SUBDIR += py-huepy SUBDIR += py-kartograph SUBDIR += py-log_symbols SUBDIR += py-mffpy SUBDIR += py-molequeue SUBDIR += py-mxnet SUBDIR += py-onnx SUBDIR += py-onnx-tf SUBDIR += py-orange3-associate SUBDIR += py-orange3-datafusion SUBDIR += py-orange3-educational SUBDIR += py-orange3-network SUBDIR += py-orange3-timeseries SUBDIR += py-palettable SUBDIR += py-pexpect SUBDIR += py-powerline-status SUBDIR += py-progressbar SUBDIR += py-progressbar2 SUBDIR += py-pyEDFlib SUBDIR += py-pyfiglet SUBDIR += py-pykml SUBDIR += py-pyprind SUBDIR += py-python-geohash SUBDIR += py-python-utils SUBDIR += py-qiskit-machine-learning SUBDIR += py-scikit-fusion SUBDIR += py-serverfiles SUBDIR += py-soapy_power SUBDIR += py-spdx SUBDIR += py-spdx-lookup SUBDIR += py-spdx-tools SUBDIR += py-spinners SUBDIR += py-tes SUBDIR += py-tflearn SUBDIR += py-tflite SUBDIR += py-tflite-support SUBDIR += py-toil SUBDIR += py-tqdm SUBDIR += py-tvm SUBDIR += py-uhi SUBDIR += py-wurlitzer SUBDIR += py-xgboost SUBDIR += pyobd SUBDIR += qbrew SUBDIR += qlas SUBDIR += qt5-doc SUBDIR += qt5-examples SUBDIR += qt5-l10n SUBDIR += qt5ct + SUBDIR += qt6-doc SUBDIR += quantum++ SUBDIR += raspberrypi-gpioshutdown SUBDIR += raspberrypi-userland SUBDIR += raspbsd-led SUBDIR += ree SUBDIR += rfc SUBDIR += ringtonetools SUBDIR += rname SUBDIR += rpl SUBDIR += rtfm SUBDIR += rubygem-dotenv SUBDIR += rubygem-dotenv-rails-rails4 SUBDIR += rubygem-dotenv-rails-rails5 SUBDIR += rubygem-dotenv-rails-rails50 SUBDIR += rubygem-haversine_distance SUBDIR += rubygem-iesd SUBDIR += rubygem-mime-types SUBDIR += rubygem-mime-types-data SUBDIR += rubygem-mimemagic SUBDIR += rubygem-octicons SUBDIR += rubygem-rabbit SUBDIR += rubygem-vpim SUBDIR += rump SUBDIR += ruut SUBDIR += schilytools SUBDIR += sdformat SUBDIR += seabios SUBDIR += sent SUBDIR += seq2 SUBDIR += sfm SUBDIR += shared-mime-info SUBDIR += shc SUBDIR += shuffle SUBDIR += shuffle-db SUBDIR += since SUBDIR += skyutils SUBDIR += slides SUBDIR += sloccount SUBDIR += sls SUBDIR += smssend SUBDIR += snakemake SUBDIR += soapysdr SUBDIR += solarized SUBDIR += sshbuddy SUBDIR += sssnips SUBDIR += susv2 SUBDIR += susv3 SUBDIR += susv4 SUBDIR += swissfileknife SUBDIR += sword SUBDIR += table.el SUBDIR += talkfilters SUBDIR += tdfiglet SUBDIR += team SUBDIR += tellico SUBDIR += tempcontrol SUBDIR += termatrix SUBDIR += terminfo-db SUBDIR += teseq SUBDIR += thefuck SUBDIR += thrill SUBDIR += timetrace SUBDIR += timezonemap SUBDIR += tkcron SUBDIR += tkinfo SUBDIR += tkregexp SUBDIR += tkrunit SUBDIR += tlci SUBDIR += toilet SUBDIR += translate SUBDIR += ttyrec SUBDIR += tudu SUBDIR += tvbrowser SUBDIR += tvm SUBDIR += tzdiff SUBDIR += uk-phone SUBDIR += uk-postcodes SUBDIR += umodunpack SUBDIR += unclutter SUBDIR += unclutter-xfixes SUBDIR += unicode-emoji SUBDIR += upclient SUBDIR += urbit SUBDIR += urh SUBDIR += usbids SUBDIR += usbrh-libusb SUBDIR += usd SUBDIR += utftools SUBDIR += utouch-kmod SUBDIR += valentina SUBDIR += vdmfec SUBDIR += veles SUBDIR += vera SUBDIR += vfc SUBDIR += vifm SUBDIR += visp SUBDIR += viz SUBDIR += vxl SUBDIR += whichman SUBDIR += window SUBDIR += with SUBDIR += wmScoreBoard SUBDIR += wmcalendar SUBDIR += wmforecast SUBDIR += wmjulia SUBDIR += wmpal SUBDIR += wmtunlo SUBDIR += wmweather+ SUBDIR += wmwork SUBDIR += xd-rust SUBDIR += xdelta SUBDIR += xdelta3 SUBDIR += xfce4-appfinder SUBDIR += xfce4-weather-plugin SUBDIR += xfce4-wm-themes SUBDIR += xgas SUBDIR += xgboost SUBDIR += xiphos SUBDIR += xless SUBDIR += xosd SUBDIR += xplr SUBDIR += xtail SUBDIR += xtar SUBDIR += ytree SUBDIR += zoneinfo .include diff --git a/misc/qt6-doc/Makefile b/misc/qt6-doc/Makefile new file mode 100644 index 000000000000..a4b7bd4f5d65 --- /dev/null +++ b/misc/qt6-doc/Makefile @@ -0,0 +1,16 @@ +PORTNAME= doc +DISTVERSION= ${QT6_VERSION} +CATEGORIES= misc +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt 6 module Documentations + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers + +USES= cmake compiler:c++17-lang \ + qt-dist:6 +USE_QT= base declarative tools +#USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/misc/qt6-doc/distinfo b/misc/qt6-doc/distinfo new file mode 100644 index 000000000000..65f0bc718228 --- /dev/null +++ b/misc/qt6-doc/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482609 +SHA256 (KDE/Qt/6.3.1/qtdoc-everywhere-src-6.3.1.tar.xz) = 62cc8cbb4388406cda98c8077f42cc386529544014f4a6473ebf1a9696d870e3 +SIZE (KDE/Qt/6.3.1/qtdoc-everywhere-src-6.3.1.tar.xz) = 7541888 diff --git a/misc/qt6-doc/pkg-descr b/misc/qt6-doc/pkg-descr new file mode 100644 index 000000000000..33cd17f5fe2b --- /dev/null +++ b/misc/qt6-doc/pkg-descr @@ -0,0 +1,6 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Documentation modules. + +WWW: http://qt-project.org diff --git a/misc/qt6-doc/pkg-plist b/misc/qt6-doc/pkg-plist new file mode 100644 index 000000000000..078b625cb33e --- /dev/null +++ b/misc/qt6-doc/pkg-plist @@ -0,0 +1 @@ +%%QT_MKSPECDIR%%/qtdoc_dummy_file.txt diff --git a/net/Makefile b/net/Makefile index 60437b212743..3e4e6873f66e 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1,1614 +1,1615 @@ COMMENT = Networking tools SUBDIR += 3proxy SUBDIR += 44bsd-rdist SUBDIR += 6tunnel SUBDIR += R-cran-pingr SUBDIR += R-cran-twitteR SUBDIR += Sockets SUBDIR += activemq SUBDIR += addrwatch SUBDIR += afpfs-ng SUBDIR += aget SUBDIR += akonadi-calendar SUBDIR += akonadi-contacts SUBDIR += akonadi-mime SUBDIR += akonadi-notes SUBDIR += akonadi-search SUBDIR += aluminum SUBDIR += aoe SUBDIR += apache-commons-net SUBDIR += apinger SUBDIR += aprsc SUBDIR += aquantia-atlantic-kmod SUBDIR += arataga SUBDIR += arp-scan SUBDIR += arp-sk SUBDIR += arpdig SUBDIR += arping SUBDIR += arpoison SUBDIR += arprelease SUBDIR += asio SUBDIR += aslookup SUBDIR += asterisk-chan_sccp SUBDIR += asterisk-g72x SUBDIR += asterisk16 SUBDIR += asterisk18 SUBDIR += astron SUBDIR += avahi SUBDIR += avahi-app SUBDIR += avahi-autoipd SUBDIR += avahi-gtk SUBDIR += avahi-gtk3 SUBDIR += avahi-header SUBDIR += avahi-libdns SUBDIR += avahi-qt5 SUBDIR += avahi-sharp SUBDIR += axa SUBDIR += babeld SUBDIR += balance SUBDIR += bctoolbox SUBDIR += beacon SUBDIR += beanstalkd SUBDIR += belle-sip SUBDIR += bindtest SUBDIR += binkd SUBDIR += bird SUBDIR += bird2 SUBDIR += bittwist SUBDIR += bmon SUBDIR += boinc-client SUBDIR += boinc_curses SUBDIR += bosh-bootloader SUBDIR += bosh-cli SUBDIR += bounce SUBDIR += bredbandskollen SUBDIR += bsdec2-image-upload SUBDIR += bsdrcmds SUBDIR += bwi-firmware-kmod SUBDIR += bwn-firmware-kmod SUBDIR += bwping SUBDIR += c3270 SUBDIR += calendarsupport SUBDIR += ccxstream SUBDIR += ceph14 SUBDIR += cf SUBDIR += charm SUBDIR += chrony SUBDIR += chrony-lite SUBDIR += citrix_ica SUBDIR += cjdns SUBDIR += clash SUBDIR += cloud-init SUBDIR += cloudflared SUBDIR += cloudquery SUBDIR += clusterit SUBDIR += cnd SUBDIR += concourse-fly SUBDIR += corkscrew SUBDIR += corosync2 SUBDIR += corosync3 SUBDIR += courier-authlib-ldap SUBDIR += courier-sox SUBDIR += cpp-pcp-client SUBDIR += cppzmq SUBDIR += croc SUBDIR += cryptcat SUBDIR += csocks SUBDIR += csync2 SUBDIR += ctrace SUBDIR += cvsup-static SUBDIR += cvsync SUBDIR += czmq SUBDIR += czmq4 SUBDIR += daemonlogger SUBDIR += dante SUBDIR += daq SUBDIR += datapipe SUBDIR += dbeacon SUBDIR += delegate SUBDIR += deviceatlas-enterprise-c SUBDIR += dgd SUBDIR += dgd-kernel SUBDIR += dgd-lpmud SUBDIR += dhcp6 SUBDIR += dhcpcd SUBDIR += dhcpcd-ui SUBDIR += dhcpd SUBDIR += dhcpd-pools SUBDIR += dhcpdump SUBDIR += dhcperf SUBDIR += dhcping SUBDIR += dhcprelya SUBDIR += dictd SUBDIR += dimes SUBDIR += dpdk SUBDIR += dpdk-20.11 SUBDIR += dpinger SUBDIR += drawterm SUBDIR += drive SUBDIR += dropbox-api-command SUBDIR += dropbox-uploader SUBDIR += dshell SUBDIR += dtcp SUBDIR += dtcpclient SUBDIR += dual-dhclient SUBDIR += dual-dhclient-daemon SUBDIR += easysoap SUBDIR += echoping SUBDIR += empty SUBDIR += endlessh SUBDIR += enet SUBDIR += eternalterminal SUBDIR += evans SUBDIR += eventviews SUBDIR += exabgp4 SUBDIR += fb303 SUBDIR += fbzmq SUBDIR += fiche SUBDIR += file2pcap SUBDIR += findmtu SUBDIR += findomain SUBDIR += flower SUBDIR += foreman-proxy SUBDIR += fort SUBDIR += fpc-ldap SUBDIR += fpc-libenet SUBDIR += fpc-pcap SUBDIR += fping SUBDIR += freebsd-telnetd SUBDIR += freebsd-uucp SUBDIR += freediameter SUBDIR += freeradius-client SUBDIR += freeradius3 SUBDIR += freerdp SUBDIR += freeswitch SUBDIR += freevrrpd SUBDIR += frp SUBDIR += frr7 SUBDIR += frr7-pythontools SUBDIR += frr8 SUBDIR += frr8-pythontools SUBDIR += fspclient SUBDIR += fspd SUBDIR += fsplib SUBDIR += gamenetworkingsockets SUBDIR += gdrive SUBDIR += gemserv SUBDIR += geoclue SUBDIR += geocode-glib SUBDIR += geoipupdate SUBDIR += gerbera SUBDIR += gfbgraph SUBDIR += gitlab-agent SUBDIR += gitup SUBDIR += glflow SUBDIR += glib-networking SUBDIR += glusterfs SUBDIR += gmid SUBDIR += gnet2 SUBDIR += gnetcat SUBDIR += gnome-connections SUBDIR += gnome-nettool SUBDIR += gnome-online-accounts SUBDIR += gnome-online-miners SUBDIR += gnu-dico SUBDIR += gnu-radius SUBDIR += go-bapu SUBDIR += go-cs SUBDIR += gobgp SUBDIR += gofish SUBDIR += google-cloud-sdk SUBDIR += gopher SUBDIR += goreplay SUBDIR += gorss SUBDIR += gotthard SUBDIR += gq SUBDIR += graphpath SUBDIR += grilo SUBDIR += grilo-plugins SUBDIR += grive2 SUBDIR += grpcox SUBDIR += grpcui SUBDIR += grpcurl SUBDIR += grsync SUBDIR += gscloud SUBDIR += gsk SUBDIR += gsocket SUBDIR += gspoof SUBDIR += gssdp SUBDIR += gssdp14 SUBDIR += gstreamer1-plugins-libmms SUBDIR += gstreamer1-plugins-srtp SUBDIR += gtk-vnc SUBDIR += guacamole-server SUBDIR += gupnp SUBDIR += gupnp-av SUBDIR += gupnp-dlna SUBDIR += gupnp-igd SUBDIR += gupnp-tools SUBDIR += gupnp-ui SUBDIR += gupnp14 SUBDIR += gutenfetch SUBDIR += gwhois SUBDIR += h323plus SUBDIR += hanstunnel SUBDIR += haproxy SUBDIR += haproxy-devel SUBDIR += haproxy17 SUBDIR += haproxy18 SUBDIR += haproxy20 SUBDIR += haproxy22 SUBDIR += haproxy23 SUBDIR += haproxy24 SUBDIR += haproxy25 SUBDIR += hblock SUBDIR += hexinject SUBDIR += hlmaster SUBDIR += honeyd SUBDIR += hostapd SUBDIR += hostapd-devel SUBDIR += hostapd29 SUBDIR += hping3 SUBDIR += hsflowd SUBDIR += htpdate SUBDIR += http_ping SUBDIR += httping SUBDIR += httpry SUBDIR += iaxmodem SUBDIR += icmpinfo SUBDIR += icpld SUBDIR += ifdepd SUBDIR += iffinder SUBDIR += ifstat SUBDIR += ifstated SUBDIR += igmpproxy SUBDIR += iipsrv SUBDIR += ilbc SUBDIR += imapproxy SUBDIR += incidenceeditor SUBDIR += intel-em-kmod SUBDIR += intel-ix-kmod SUBDIR += intel-ixl-kmod SUBDIR += iodine SUBDIR += ip2location SUBDIR += ip2proxy SUBDIR += ip6_int SUBDIR += ipdecap SUBDIR += ipgrab SUBDIR += ipinfo-cli SUBDIR += ipsumdump SUBDIR += ipsvd SUBDIR += ipxe SUBDIR += irrd SUBDIR += isboot-kmod SUBDIR += isc-dhcp44-client SUBDIR += isc-dhcp44-relay SUBDIR += isc-dhcp44-server SUBDIR += istgt SUBDIR += iwnet SUBDIR += java-beepcore SUBDIR += jcifs SUBDIR += jgroups SUBDIR += jicmp SUBDIR += jicmp6 SUBDIR += jose SUBDIR += jotta-cli SUBDIR += jrdesktop SUBDIR += jsch SUBDIR += jumpgate SUBDIR += jwhois SUBDIR += k6 SUBDIR += kafka SUBDIR += kamailio SUBDIR += kcalutils SUBDIR += kcat SUBDIR += kdenetwork SUBDIR += kdenetwork-filesharing SUBDIR += kea SUBDIR += keycloak SUBDIR += kf5-kcalendarcore SUBDIR += kf5-kcontacts SUBDIR += kf5-kdav SUBDIR += kf5-kholidays SUBDIR += kf5-kxmlrpcclient SUBDIR += kf5-syndication SUBDIR += kget SUBDIR += kidentitymanagement SUBDIR += kimap SUBDIR += kio-gdrive SUBDIR += kio-zeroconf SUBDIR += kippo SUBDIR += kitinerary SUBDIR += kldap SUBDIR += kmailtransport SUBDIR += kmbox SUBDIR += kmime SUBDIR += knc SUBDIR += knxd SUBDIR += kontactinterface SUBDIR += kpeoplevcard SUBDIR += kpimtextedit SUBDIR += krdc SUBDIR += krfb SUBDIR += krill SUBDIR += ksmtp SUBDIR += ktnef SUBDIR += kube-controller-manager SUBDIR += kube-scheduler SUBDIR += l2tpd SUBDIR += ladvd SUBDIR += lambdamoo SUBDIR += landrop SUBDIR += latd SUBDIR += ldap-stats SUBDIR += ldapbrowser SUBDIR += ldapdiff SUBDIR += ldapscripts SUBDIR += ldapsdk SUBDIR += ldapsh SUBDIR += leproxy SUBDIR += lft SUBDIR += libarcus SUBDIR += libarms SUBDIR += libbgpdump SUBDIR += libcapn SUBDIR += libcharon SUBDIR += libcmis SUBDIR += libcoap SUBDIR += libdaq SUBDIR += libdmapsharing SUBDIR += libdnet SUBDIR += libexosip2 SUBDIR += libfabric SUBDIR += libfb SUBDIR += libfixbuf SUBDIR += libgravatar SUBDIR += libgrss SUBDIR += libgweather SUBDIR += libgweather4 SUBDIR += libilbc SUBDIR += libiscsi SUBDIR += libkgapi SUBDIR += libksieve SUBDIR += libkvkontakte SUBDIR += liblinphone SUBDIR += libmaia SUBDIR += libmateweather SUBDIR += libmaxminddb SUBDIR += libmdf SUBDIR += libmediawiki SUBDIR += libmms SUBDIR += libnatpmp SUBDIR += libnet SUBDIR += libnfs SUBDIR += libngtcp2 SUBDIR += libnids SUBDIR += libnpupnp SUBDIR += libnss-cache SUBDIR += libnss-mysql SUBDIR += libnss-pgsql SUBDIR += liboauth SUBDIR += libopennet SUBDIR += liboping SUBDIR += libosip2 SUBDIR += libpaho-mqtt3 SUBDIR += libpcap SUBDIR += libpcapnav SUBDIR += libpfctl SUBDIR += libproxy SUBDIR += libproxy-gnome3 SUBDIR += libproxy-kde SUBDIR += libproxy-pacrunner SUBDIR += libproxy-perl SUBDIR += libproxy-python SUBDIR += libproxy-webkit3 SUBDIR += librdkafka SUBDIR += librespeed-cli SUBDIR += librespeed-go SUBDIR += librsync SUBDIR += libsignal-protocol-c SUBDIR += libslirp SUBDIR += libsrtp2 SUBDIR += libtnl SUBDIR += libtrace SUBDIR += libunp SUBDIR += libusipp SUBDIR += libusrsctp SUBDIR += libutp SUBDIR += libvncserver SUBDIR += libwebsockets SUBDIR += libyang SUBDIR += libyang2 SUBDIR += libzapojit SUBDIR += libzmq2 SUBDIR += libzmq3 SUBDIR += libzmq4 SUBDIR += liferea SUBDIR += linknx SUBDIR += linphone SUBDIR += linux-c7-avahi-libs SUBDIR += linux-c7-openldap SUBDIR += linux-c7-tcp_wrappers-libs SUBDIR += liveMedia SUBDIR += lla SUBDIR += lualdap SUBDIR += luasocket SUBDIR += mDNSResponder SUBDIR += macchanger SUBDIR += mad_fcl SUBDIR += madonctl SUBDIR += mailcommon SUBDIR += mailimporter SUBDIR += malo-firmware-kmod SUBDIR += mcjoin SUBDIR += mdns-repeater SUBDIR += measurement-kit SUBDIR += mediastreamer SUBDIR += megacmd SUBDIR += megatools SUBDIR += messagelib SUBDIR += mgen SUBDIR += micro_inetd SUBDIR += micro_proxy SUBDIR += microsocks SUBDIR += minidlna SUBDIR += minisapserver SUBDIR += minissdpd SUBDIR += miniupnpc SUBDIR += miniupnpd SUBDIR += miredo SUBDIR += miruo SUBDIR += mlvpn SUBDIR += mobile-broadband-provider-info SUBDIR += mod_amd SUBDIR += mopd SUBDIR += mosh SUBDIR += mosquitto SUBDIR += motsognir SUBDIR += mpd-l2tp-ipv6pd-client SUBDIR += mpd5 SUBDIR += mpich SUBDIR += mpifx SUBDIR += mping SUBDIR += mptsd SUBDIR += mrouted SUBDIR += mrtparse SUBDIR += msend SUBDIR += msoak SUBDIR += mtr SUBDIR += mtr-nox11 SUBDIR += multicat SUBDIR += mvfst SUBDIR += nakenchat SUBDIR += nanomsg SUBDIR += nast SUBDIR += nats-nkeys SUBDIR += nats-nsc SUBDIR += nats-server SUBDIR += nats-streaming-server SUBDIR += nats-top SUBDIR += natscli SUBDIR += nbd-server SUBDIR += nbdkit SUBDIR += nc SUBDIR += ncp SUBDIR += ndisc6 SUBDIR += ndpi SUBDIR += ndproxy SUBDIR += neatvnc SUBDIR += nemesis SUBDIR += nepenthes SUBDIR += net6 SUBDIR += netatalk3 SUBDIR += netcat SUBDIR += netembryo SUBDIR += nethogs SUBDIR += netmap SUBDIR += netpipes SUBDIR += netscript SUBDIR += netsed SUBDIR += netselect SUBDIR += netstrain SUBDIR += netwib SUBDIR += nfs-ganesha-kmod SUBDIR += nfsshell SUBDIR += nfstrace SUBDIR += ng_mikrotik_eoip SUBDIR += ngrep SUBDIR += nifmon SUBDIR += nitroshare SUBDIR += nload SUBDIR += nmsg SUBDIR += nncp SUBDIR += nng SUBDIR += norm SUBDIR += ns3 SUBDIR += nsq SUBDIR += nss-pam-ldapd SUBDIR += nss-pam-ldapd-sasl SUBDIR += nss_ldap SUBDIR += nsscache SUBDIR += ntimed SUBDIR += ntopng SUBDIR += ntp SUBDIR += ntpa SUBDIR += ntpsec SUBDIR += ntraceroute SUBDIR += nusoap SUBDIR += nuster SUBDIR += nxproxy SUBDIR += nyancat SUBDIR += nylon SUBDIR += ocserv SUBDIR += oha SUBDIR += olsrd SUBDIR += omnitty SUBDIR += onedrive SUBDIR += onenetd SUBDIR += onioncat SUBDIR += onionprobe SUBDIR += ooni-mini SUBDIR += ooni-probe-cli SUBDIR += opal SUBDIR += open-isns SUBDIR += openbgpd SUBDIR += openbgpd6 SUBDIR += openbgpd7 SUBDIR += openldap24-client SUBDIR += openldap24-server SUBDIR += openldap25-client SUBDIR += openldap25-server SUBDIR += openldap26-client SUBDIR += openldap26-server SUBDIR += openmdns SUBDIR += openmpi SUBDIR += openmpi3 SUBDIR += openntpd SUBDIR += opennx SUBDIR += openpgm SUBDIR += openradius SUBDIR += openrsync SUBDIR += opensips31 SUBDIR += openslp SUBDIR += opentracker SUBDIR += openvswitch SUBDIR += ortp SUBDIR += osrtspproxy SUBDIR += ossp-sa SUBDIR += owamp SUBDIR += p5-Acme-HTTP SUBDIR += p5-AddressBook SUBDIR += p5-Amazon-SQS-Simple SUBDIR += p5-AnyEvent-MPRPC SUBDIR += p5-AnyEvent-MQTT SUBDIR += p5-AnyEvent-RabbitMQ SUBDIR += p5-AnyEvent-Twitter SUBDIR += p5-AnyEvent-Twitter-Stream SUBDIR += p5-AnyMQ-AMQP SUBDIR += p5-Apache2-SOAP SUBDIR += p5-BBS-Client SUBDIR += p5-BBS-UserInfo SUBDIR += p5-BBS-UserInfo-Maple3 SUBDIR += p5-BBS-UserInfo-Maple3itoc SUBDIR += p5-BBS-UserInfo-Ptt SUBDIR += p5-BBS-UserInfo-SOB SUBDIR += p5-BBS-UserInfo-Wretch SUBDIR += p5-Beanstalk-Client SUBDIR += p5-Cisco-IPPhone SUBDIR += p5-Crypt-DH-GMP SUBDIR += p5-Daemon-Generic SUBDIR += p5-Data-IPV4-Range-Parse SUBDIR += p5-EasyTCP SUBDIR += p5-Event-tcp SUBDIR += p5-File-Rsync SUBDIR += p5-File-RsyncP SUBDIR += p5-Frontier-RPC SUBDIR += p5-Geo-IP-PurePerl SUBDIR += p5-Geo-IPfree SUBDIR += p5-GeoIP2 SUBDIR += p5-Google-SAML-Request SUBDIR += p5-Google-SAML-Response SUBDIR += p5-Growl-GNTP SUBDIR += p5-IO-Interface SUBDIR += p5-IO-Socket-INET6 SUBDIR += p5-IO-Socket-IP SUBDIR += p5-IO-Socket-Multicast SUBDIR += p5-IO-Socket-Multicast6 SUBDIR += p5-IO-Socket-Socks SUBDIR += p5-IO-Socket-Socks-Wrapper SUBDIR += p5-IO-Socket-Timeout SUBDIR += p5-IO-Socket-UNIX-Util SUBDIR += p5-IP-Anonymous SUBDIR += p5-IP-Country SUBDIR += p5-IPC-Session SUBDIR += p5-IPv6-Address SUBDIR += p5-JavaScript-RPC SUBDIR += p5-Kafka SUBDIR += p5-MaxMind-DB-Common SUBDIR += p5-MaxMind-DB-Reader SUBDIR += p5-MaxMind-DB-Reader-XS SUBDIR += p5-MaxMind-DB-Writer SUBDIR += p5-Mojo-RabbitMQ-Client SUBDIR += p5-Net SUBDIR += p5-Net-ACME2 SUBDIR += p5-Net-AMQP SUBDIR += p5-Net-AMQP-RabbitMQ SUBDIR += p5-Net-APNS SUBDIR += p5-Net-APNs-Extended SUBDIR += p5-Net-ARP SUBDIR += p5-Net-Address-Ethernet SUBDIR += p5-Net-Address-IPv4-Local SUBDIR += p5-Net-Amazon SUBDIR += p5-Net-Amazon-AWSSign SUBDIR += p5-Net-Amazon-EC2 SUBDIR += p5-Net-Amazon-MechanicalTurk SUBDIR += p5-Net-Amazon-S3 SUBDIR += p5-Net-Amazon-Signature SUBDIR += p5-Net-Amazon-Signature-V3 SUBDIR += p5-Net-Amazon-Signature-V4 SUBDIR += p5-Net-Amazon-Thumbnail SUBDIR += p5-Net-Analysis SUBDIR += p5-Net-Appliance-Phrasebook SUBDIR += p5-Net-Appliance-Session SUBDIR += p5-Net-BGP SUBDIR += p5-Net-Blogger SUBDIR += p5-Net-CIDR-Lite SUBDIR += p5-Net-CIDR-MobileJP SUBDIR += p5-Net-CIDR-Set SUBDIR += p5-Net-CLI-Interact SUBDIR += p5-Net-CSTA SUBDIR += p5-Net-CascadeCopy SUBDIR += p5-Net-Cassandra SUBDIR += p5-Net-Cassandra-Easy SUBDIR += p5-Net-Connection SUBDIR += p5-Net-Connection-Match SUBDIR += p5-Net-Connection-Sort SUBDIR += p5-Net-Connection-lsof SUBDIR += p5-Net-Connection-ncnetstat SUBDIR += p5-Net-DAV-Server SUBDIR += p5-Net-DHCP SUBDIR += p5-Net-DHCP-Watch SUBDIR += p5-Net-DHCPClient SUBDIR += p5-Net-DLookup SUBDIR += p5-Net-Daemon SUBDIR += p5-Net-Delicious SUBDIR += p5-Net-Dict SUBDIR += p5-Net-Divert SUBDIR += p5-Net-Dropbox-API SUBDIR += p5-Net-EPP SUBDIR += p5-Net-EPP-Proxy SUBDIR += p5-Net-FS-Flickr SUBDIR += p5-Net-FS-Gmail SUBDIR += p5-Net-FTP-AutoReconnect SUBDIR += p5-Net-FTP-File SUBDIR += p5-Net-Finger SUBDIR += p5-Net-Flow SUBDIR += p5-Net-Frame SUBDIR += p5-Net-Frame-Device SUBDIR += p5-Net-Frame-Dump SUBDIR += p5-Net-Frame-Layer-ICMPv6 SUBDIR += p5-Net-Frame-Layer-IPv6 SUBDIR += p5-Net-Frame-Simple SUBDIR += p5-Net-GitHub SUBDIR += p5-Net-Gnats SUBDIR += p5-Net-Google SUBDIR += p5-Net-Google-Analytics SUBDIR += p5-Net-Google-AuthSub SUBDIR += p5-Net-Google-Calendar SUBDIR += p5-Net-Google-Code SUBDIR += p5-Net-Google-DataAPI SUBDIR += p5-Net-Google-PicasaWeb SUBDIR += p5-Net-Google-SafeBrowsing2 SUBDIR += p5-Net-Google-Spreadsheets SUBDIR += p5-Net-Growl SUBDIR += p5-Net-GrowlClient SUBDIR += p5-Net-HL7 SUBDIR += p5-Net-HTTP SUBDIR += p5-Net-HTTP-Spore SUBDIR += p5-Net-HTTP-Spore-Middleware-Header SUBDIR += p5-Net-HTTPS-Any SUBDIR += p5-Net-HTTPS-NB SUBDIR += p5-Net-Hiveminder SUBDIR += p5-Net-INET6Glue SUBDIR += p5-Net-IP-Minimal SUBDIR += p5-Net-IP-RangeCompare SUBDIR += p5-Net-IPTrie SUBDIR += p5-Net-IRR SUBDIR += p5-Net-Ident SUBDIR += p5-Net-Ifconfig-Wrapper SUBDIR += p5-Net-Interface SUBDIR += p5-Net-Jifty SUBDIR += p5-Net-LDAP-AutoDNs SUBDIR += p5-Net-LDAP-AutoServer SUBDIR += p5-Net-LDAP-Express SUBDIR += p5-Net-LDAP-FilterBuilder SUBDIR += p5-Net-LDAP-LDAPhash SUBDIR += p5-Net-LDAP-Makepath SUBDIR += p5-Net-LDAP-Server SUBDIR += p5-Net-LDAP-Server-Test SUBDIR += p5-Net-LDAP-posixAccount SUBDIR += p5-Net-LDAP-posixGroup SUBDIR += p5-Net-Libdnet SUBDIR += p5-Net-Libdnet6 SUBDIR += p5-Net-LimeLight-Purge SUBDIR += p5-Net-MAC SUBDIR += p5-Net-MAC-Vendor SUBDIR += p5-Net-MQTT SUBDIR += p5-Net-Mosso-CloudFiles SUBDIR += p5-Net-MovableType SUBDIR += p5-Net-NBName SUBDIR += p5-Net-NBsocket SUBDIR += p5-Net-NIS SUBDIR += p5-Net-NIS-Listgroup SUBDIR += p5-Net-NTP SUBDIR += p5-Net-Nessus-XMLRPC SUBDIR += p5-Net-Netcat SUBDIR += p5-Net-Nmsg SUBDIR += p5-Net-OAuth SUBDIR += p5-Net-OAuth-Simple SUBDIR += p5-Net-OAuth2 SUBDIR += p5-Net-OpenID-Consumer SUBDIR += p5-Net-OpenSSH SUBDIR += p5-Net-OpenSSH-Parallel SUBDIR += p5-Net-OpenStack-Attack SUBDIR += p5-Net-Packet SUBDIR += p5-Net-Packet-Target SUBDIR += p5-Net-ParseWhois SUBDIR += p5-Net-Patricia SUBDIR += p5-Net-Pcap SUBDIR += p5-Net-PcapUtils SUBDIR += p5-Net-Ping SUBDIR += p5-Net-Ping-External SUBDIR += p5-Net-Proxy SUBDIR += p5-Net-PubSubHubbub-Publisher SUBDIR += p5-Net-RTP SUBDIR += p5-Net-RabbitFoot SUBDIR += p5-Net-RabbitMQ SUBDIR += p5-Net-Radius SUBDIR += p5-Net-Random SUBDIR += p5-Net-RawIP SUBDIR += p5-Net-Rendezvous-Publish SUBDIR += p5-Net-Riak SUBDIR += p5-Net-Rsh SUBDIR += p5-Net-SAP SUBDIR += p5-Net-SCP SUBDIR += p5-Net-SCP-Expect SUBDIR += p5-Net-SDP SUBDIR += p5-Net-SFTP SUBDIR += p5-Net-SFTP-Foreign SUBDIR += p5-Net-SIP SUBDIR += p5-Net-SMPP SUBDIR += p5-Net-SMS-Clickatell SUBDIR += p5-Net-SMS-Mollie SUBDIR += p5-Net-SMS-PChome SUBDIR += p5-Net-SNPP SUBDIR += p5-Net-SPDY SUBDIR += p5-Net-SSH SUBDIR += p5-Net-SSH-Expect SUBDIR += p5-Net-SSH-Mechanize SUBDIR += p5-Net-SSH-Perl SUBDIR += p5-Net-SSH2 SUBDIR += p5-Net-STOMP-Client SUBDIR += p5-Net-Server SUBDIR += p5-Net-Server-Coro SUBDIR += p5-Net-Server-SS-PreFork SUBDIR += p5-Net-Subnet SUBDIR += p5-Net-Syslog SUBDIR += p5-Net-TCLink SUBDIR += p5-Net-TacacsPlus SUBDIR += p5-Net-TcpDumpLog SUBDIR += p5-Net-Telnet SUBDIR += p5-Net-Telnet-Netscreen SUBDIR += p5-Net-TiVo SUBDIR += p5-Net-Todoist SUBDIR += p5-Net-Traceroute SUBDIR += p5-Net-Traceroute-PurePerl SUBDIR += p5-Net-Traceroute6 SUBDIR += p5-Net-Trackback SUBDIR += p5-Net-Twitter SUBDIR += p5-Net-Twitter-Lite SUBDIR += p5-Net-VNC SUBDIR += p5-Net-Wake SUBDIR += p5-Net-WhitePages SUBDIR += p5-Net-Whois SUBDIR += p5-Net-Whois-ARIN SUBDIR += p5-Net-Whois-IP SUBDIR += p5-Net-Whois-RIPE SUBDIR += p5-Net-Whois-Raw SUBDIR += p5-Net-Works SUBDIR += p5-Net-Write SUBDIR += p5-Net-XWhois SUBDIR += p5-Net-Yadis SUBDIR += p5-Net-Z3950-SimpleServer SUBDIR += p5-Net-Z3950-ZOOM SUBDIR += p5-Net-ext SUBDIR += p5-Net-sFlow SUBDIR += p5-Net-uFTP SUBDIR += p5-NetAddr-IP-Count SUBDIR += p5-NetAddr-MAC SUBDIR += p5-NetPacket SUBDIR += p5-OAI-Harvester SUBDIR += p5-OurNet-BBS SUBDIR += p5-OurNet-BBSAgent SUBDIR += p5-POE-Component-Client-Ident SUBDIR += p5-POE-Component-Client-Keepalive SUBDIR += p5-POE-Component-Client-Ping SUBDIR += p5-POE-Component-Client-Telnet SUBDIR += p5-POE-Component-Client-Traceroute SUBDIR += p5-POE-Component-Client-Twitter SUBDIR += p5-POE-Component-Client-Whois SUBDIR += p5-POE-Component-ControlPort SUBDIR += p5-POE-Component-Generic SUBDIR += p5-POE-Component-Jabber SUBDIR += p5-POE-Component-Pcap SUBDIR += p5-POE-Component-PubSub SUBDIR += p5-POE-Component-Server-Twirc SUBDIR += p5-POEx-Role-TCPServer SUBDIR += p5-POSIX-Socket SUBDIR += p5-POSIX-getpeername SUBDIR += p5-Parallel-Pvm SUBDIR += p5-Parse-Netstat SUBDIR += p5-Phone-Info SUBDIR += p5-PlRPC SUBDIR += p5-Queue-Beanstalk SUBDIR += p5-REST-Application SUBDIR += p5-REST-Google SUBDIR += p5-RPC-EPC-Service SUBDIR += p5-RPC-Simple SUBDIR += p5-RPC-XML SUBDIR += p5-ResourcePool-Resource-Net-LDAP SUBDIR += p5-ResourcePool-Resource-SOAP-Lite SUBDIR += p5-Rose-URI SUBDIR += p5-S3 SUBDIR += p5-SOAP SUBDIR += p5-SOAP-Amazon-S3 SUBDIR += p5-SOAP-Data-Builder SUBDIR += p5-SOAP-Lite SUBDIR += p5-SOAP-MySOAP SUBDIR += p5-SOAP-XML-Client SUBDIR += p5-Samba-LDAP SUBDIR += p5-Server-Starter SUBDIR += p5-Socket SUBDIR += p5-Socket-Class SUBDIR += p5-Socket-GetAddrInfo SUBDIR += p5-Socket-Multicast6 SUBDIR += p5-Socket6 SUBDIR += p5-Socks SUBDIR += p5-Sort-Key-IPv4 SUBDIR += p5-TFTP SUBDIR += p5-Test-URI SUBDIR += p5-Text-Authinfo SUBDIR += p5-Twitter-API SUBDIR += p5-URI SUBDIR += p5-URI-Based SUBDIR += p5-URI-Encode-XS SUBDIR += p5-URI-Fast SUBDIR += p5-URI-FromHash SUBDIR += p5-URI-Match SUBDIR += p5-URI-Nested SUBDIR += p5-URI-OpenURL SUBDIR += p5-URI-Query SUBDIR += p5-URI-SmartURI SUBDIR += p5-URI-Template SUBDIR += p5-URI-Template-Restrict SUBDIR += p5-URI-cpan SUBDIR += p5-URI-db SUBDIR += p5-URI-ws SUBDIR += p5-VM-EC2 SUBDIR += p5-VM-EC2-Security-CredentialCache SUBDIR += p5-Validate-Net SUBDIR += p5-WebService-Dropbox SUBDIR += p5-WebService-Prowl SUBDIR += p5-What SUBDIR += p5-X500-DN SUBDIR += p5-XML-Compile-SOAP SUBDIR += p5-XML-Compile-SOAP-AnyEvent SUBDIR += p5-XML-Compile-SOAP-Daemon SUBDIR += p5-XML-Compile-SOAP-WSA SUBDIR += p5-XML-Compile-WSDL11 SUBDIR += p5-XML-Fast SUBDIR += p5-XML-RPC SUBDIR += p5-XML-RPC-Fast SUBDIR += p5-XMLRPC-Lite SUBDIR += p5-XPC SUBDIR += p5-ZMQ-FFI SUBDIR += p5-ip2location-perl SUBDIR += p5-ldap2pf SUBDIR += p5-ldap2pw SUBDIR += p5-perl-ldap SUBDIR += p5-srv2pf SUBDIR += pacemaker1 SUBDIR += pacemaker2 SUBDIR += packetdrill SUBDIR += packter-agent SUBDIR += parpd SUBDIR += pathneck SUBDIR += pbnc SUBDIR += pear-Auth_RADIUS SUBDIR += pear-File_Bittorrent2 SUBDIR += pear-Horde_Kolab_Server SUBDIR += pear-Horde_Kolab_Session SUBDIR += pear-Horde_Ldap SUBDIR += pear-Horde_Rpc SUBDIR += pear-Horde_Scribe SUBDIR += pear-Horde_Socket_Client SUBDIR += pear-Horde_Url SUBDIR += pear-Net_CDDB SUBDIR += pear-Net_CheckIP SUBDIR += pear-Net_DIME SUBDIR += pear-Net_DNSBL SUBDIR += pear-Net_Dict SUBDIR += pear-Net_Finger SUBDIR += pear-Net_Geo SUBDIR += pear-Net_GeoIP SUBDIR += pear-Net_Growl SUBDIR += pear-Net_IDNA SUBDIR += pear-Net_IPv4 SUBDIR += pear-Net_IPv6 SUBDIR += pear-Net_Ident SUBDIR += pear-Net_LDAP SUBDIR += pear-Net_LDAP2 SUBDIR += pear-Net_MAC SUBDIR += pear-Net_NNTP SUBDIR += pear-Net_Nmap SUBDIR += pear-Net_POP3 SUBDIR += pear-Net_Ping SUBDIR += pear-Net_SMS SUBDIR += pear-Net_SMTP SUBDIR += pear-Net_Server SUBDIR += pear-Net_Sieve SUBDIR += pear-Net_Socket SUBDIR += pear-Net_Traceroute SUBDIR += pear-Net_URL SUBDIR += pear-Net_URL2 SUBDIR += pear-Net_URL_Mapper SUBDIR += pear-Net_UserAgent_Detect SUBDIR += pear-Net_UserAgent_Mobile SUBDIR += pear-Net_Vpopmaild SUBDIR += pear-Net_Whois SUBDIR += pear-SOAP SUBDIR += pear-Services_Pingback SUBDIR += pear-Services_Twitter SUBDIR += pear-URI_Template SUBDIR += pear-XML_RPC SUBDIR += pear-XML_RPC2 SUBDIR += pecl-amqp SUBDIR += pecl-mosquitto SUBDIR += pecl-oauth2 SUBDIR += pecl-radius SUBDIR += pecl-rdkafka SUBDIR += pecl-smbclient SUBDIR += pecl-xmlrpc SUBDIR += pecl-zmq SUBDIR += pen SUBDIR += php74-ldap SUBDIR += php74-soap SUBDIR += php74-sockets SUBDIR += php74-xmlrpc SUBDIR += php80-ldap SUBDIR += php80-soap SUBDIR += php80-sockets SUBDIR += php81-ldap SUBDIR += php81-soap SUBDIR += php81-sockets SUBDIR += php82-ldap SUBDIR += php82-soap SUBDIR += php82-sockets SUBDIR += phpldapadmin SUBDIR += pichi SUBDIR += pimcommon SUBDIR += pimd SUBDIR += pimdd SUBDIR += pjsip SUBDIR += pkt-gen SUBDIR += pktanon SUBDIR += pload SUBDIR += plugdaemon SUBDIR += poptop SUBDIR += portfwd SUBDIR += pptpclient SUBDIR += proby SUBDIR += proftpd-mod_ldap SUBDIR += prosearch SUBDIR += proxy-suite SUBDIR += proxychains SUBDIR += proxychains-ng SUBDIR += prtunnel SUBDIR += ptpd2 SUBDIR += ptunnel SUBDIR += pvm SUBDIR += pwhois SUBDIR += pwnat SUBDIR += pxe SUBDIR += pxe-pdhcp SUBDIR += py-DTLSSocket SUBDIR += py-GeoIP2 SUBDIR += py-aiocoap SUBDIR += py-aiohttp-socks SUBDIR += py-amqp SUBDIR += py-amqplib SUBDIR += py-avahi SUBDIR += py-cepa SUBDIR += py-cjdns SUBDIR += py-cloudflare-scrape SUBDIR += py-cloudflare-scrape-js2py SUBDIR += py-cloudscraper SUBDIR += py-confluent-kafka SUBDIR += py-cymruwhois SUBDIR += py-dpkt SUBDIR += py-duet SUBDIR += py-dugong SUBDIR += py-ec2-cli-tools SUBDIR += py-errbot SUBDIR += py-eventlet SUBDIR += py-gdown SUBDIR += py-geopy SUBDIR += py-gntp SUBDIR += py-gspread SUBDIR += py-h11 SUBDIR += py-haproxy-log-analysis SUBDIR += py-haproxyctl SUBDIR += py-httpstat SUBDIR += py-ifaddr SUBDIR += py-impacket SUBDIR += py-iplib SUBDIR += py-iptools SUBDIR += py-kafka-python SUBDIR += py-kombu SUBDIR += py-ldap SUBDIR += py-ldap0 SUBDIR += py-ldap3 SUBDIR += py-ldappool SUBDIR += py-libcloud SUBDIR += py-libdnet SUBDIR += py-magic-wormhole SUBDIR += py-matrix-synapse-ldap3 SUBDIR += py-maxminddb SUBDIR += py-miniupnpc SUBDIR += py-mpi4py SUBDIR += py-msrplib SUBDIR += py-ndg-httpsclient SUBDIR += py-netaddr SUBDIR += py-netif SUBDIR += py-netifaces SUBDIR += py-netsnmpagent SUBDIR += py-nnpy SUBDIR += py-ntplib SUBDIR += py-oauth SUBDIR += py-oauth2 SUBDIR += py-paho-mqtt SUBDIR += py-pamqp SUBDIR += py-pcapy SUBDIR += py-pcapy-ng SUBDIR += py-port-for SUBDIR += py-portend SUBDIR += py-pyenet SUBDIR += py-pyfixbuf SUBDIR += py-pygeoip SUBDIR += py-pyicap SUBDIR += py-pynamecheap SUBDIR += py-pynmsg SUBDIR += py-pynsq SUBDIR += py-pypacker SUBDIR += py-pypcap SUBDIR += py-pyroute2 SUBDIR += py-pyroute2.minimal SUBDIR += py-pyroute2.protocols SUBDIR += py-pysendfile SUBDIR += py-pyshark SUBDIR += py-pysmb SUBDIR += py-pysocks SUBDIR += py-pystun SUBDIR += py-python-barbicanclient SUBDIR += py-python-bitcoinrpc SUBDIR += py-python-ceilometerclient SUBDIR += py-python-cinderclient SUBDIR += py-python-designateclient SUBDIR += py-python-glanceclient SUBDIR += py-python-heatclient SUBDIR += py-python-keystoneclient SUBDIR += py-python-neutronclient SUBDIR += py-python-novaclient SUBDIR += py-python-openstackclient SUBDIR += py-python-socks SUBDIR += py-python-twitter SUBDIR += py-pytradfri SUBDIR += py-pyu2f SUBDIR += py-pyvmomi SUBDIR += py-pyzmq SUBDIR += py-qt5-networkauth SUBDIR += py-rabbitpy SUBDIR += py-radix SUBDIR += py-raet SUBDIR += py-ripe.atlas.cousteau SUBDIR += py-ripe.atlas.sagan SUBDIR += py-ripe.atlas.tools SUBDIR += py-s3cmd SUBDIR += py-s3transfer SUBDIR += py-s4cmd SUBDIR += py-saltyrtc.server SUBDIR += py-sbws SUBDIR += py-shodan SUBDIR += py-siosocks SUBDIR += py-smart-open SUBDIR += py-smbpasswd SUBDIR += py-smbprotocol SUBDIR += py-soap2py SUBDIR += py-socketio-client SUBDIR += py-socksio SUBDIR += py-softlayer SUBDIR += py-speedtest-cli SUBDIR += py-sshtunnel SUBDIR += py-sshuttle SUBDIR += py-stomp.py SUBDIR += py-suds SUBDIR += py-tacacs_plus SUBDIR += py-terminado SUBDIR += py-tofu SUBDIR += py-transip SUBDIR += py-trio SUBDIR += py-tweepy SUBDIR += py-twitter-tools SUBDIR += py-txamqp SUBDIR += py-txrestapi SUBDIR += py-uritemplate SUBDIR += py-uritools SUBDIR += py-url-normalize SUBDIR += py-urlextract SUBDIR += py-urllib3 SUBDIR += py-whois SUBDIR += py-wmi-query SUBDIR += py-wsdd SUBDIR += py-wsproto SUBDIR += py-zeep SUBDIR += py-zeroconf SUBDIR += py-zope.proxy SUBDIR += pyrad SUBDIR += qadsl SUBDIR += qoauth-qt5 SUBDIR += qt5-network SUBDIR += qt5-networkauth + SUBDIR += qt6-networkauth SUBDIR += quagga SUBDIR += quiche SUBDIR += quiterss SUBDIR += quoted SUBDIR += rabbiteer SUBDIR += rabbitmq SUBDIR += rabbitmq-c SUBDIR += rabbitmq-c-devel SUBDIR += radcli SUBDIR += raddump SUBDIR += radiator SUBDIR += radiusclient SUBDIR += radreport SUBDIR += radsecproxy SUBDIR += radvd SUBDIR += rclone SUBDIR += rclone-browser SUBDIR += rdapper SUBDIR += rdesktop SUBDIR += rdist6 SUBDIR += read_bbrlog SUBDIR += realtek-re-kmod SUBDIR += reaver SUBDIR += recvnet SUBDIR += redir SUBDIR += relayd SUBDIR += remarkable-devd SUBDIR += remmina SUBDIR += remotebox SUBDIR += remotedesk SUBDIR += repeater SUBDIR += rfbproxy SUBDIR += rinetd SUBDIR += ripe-whois SUBDIR += rospo SUBDIR += routinator SUBDIR += rp-pppoe SUBDIR += rpki-client SUBDIR += rscsi SUBDIR += rsocket-cpp SUBDIR += rsplib SUBDIR += rssguard SUBDIR += rsync SUBDIR += rsync-bpc SUBDIR += rtg SUBDIR += rtpproxy SUBDIR += rtptools SUBDIR += rubygem-activestorage52 SUBDIR += rubygem-activestorage60 SUBDIR += rubygem-activestorage61 SUBDIR += rubygem-activestorage70 SUBDIR += rubygem-amazon-ec2 SUBDIR += rubygem-amq-protocol SUBDIR += rubygem-amqp SUBDIR += rubygem-amqp-utils SUBDIR += rubygem-apollo_upload_server SUBDIR += rubygem-asset_sync SUBDIR += rubygem-aws-s3 SUBDIR += rubygem-aws-ses SUBDIR += rubygem-azure SUBDIR += rubygem-azure-core SUBDIR += rubygem-beefcake SUBDIR += rubygem-bunny SUBDIR += rubygem-cloudflare SUBDIR += rubygem-connection_pool SUBDIR += rubygem-docker-api SUBDIR += rubygem-dogapi SUBDIR += rubygem-domain_name SUBDIR += rubygem-dropbox-sdk SUBDIR += rubygem-epp-client-afnic SUBDIR += rubygem-epp-client-base SUBDIR += rubygem-epp-client-rgp SUBDIR += rubygem-epp-client-secdns SUBDIR += rubygem-epp-client-smallregistry SUBDIR += rubygem-fog-aliyun SUBDIR += rubygem-fog-atmos SUBDIR += rubygem-fog-aws SUBDIR += rubygem-fog-azure SUBDIR += rubygem-fog-brightbox SUBDIR += rubygem-fog-cloudatcost SUBDIR += rubygem-fog-cloudstack SUBDIR += rubygem-fog-digitalocean SUBDIR += rubygem-fog-dnsimple SUBDIR += rubygem-fog-dynect SUBDIR += rubygem-fog-ecloud SUBDIR += rubygem-fog-google SUBDIR += rubygem-fog-gridscale SUBDIR += rubygem-fog-internet-archive SUBDIR += rubygem-fog-joyent SUBDIR += rubygem-fog-local SUBDIR += rubygem-fog-openstack SUBDIR += rubygem-fog-ovirt SUBDIR += rubygem-fog-powerdns SUBDIR += rubygem-fog-profitbricks SUBDIR += rubygem-fog-rackspace SUBDIR += rubygem-fog-radosgw SUBDIR += rubygem-fog-riakcs SUBDIR += rubygem-fog-sakuracloud SUBDIR += rubygem-fog-serverlove SUBDIR += rubygem-fog-softlayer SUBDIR += rubygem-fog-storm_on_demand SUBDIR += rubygem-fog-terremark SUBDIR += rubygem-fog-vmfusion SUBDIR += rubygem-fog-voxel SUBDIR += rubygem-fog-vsphere SUBDIR += rubygem-fog-xenserver SUBDIR += rubygem-gitaly SUBDIR += rubygem-gitaly-proto SUBDIR += rubygem-gitlab-fog-azure-rm SUBDIR += rubygem-gitlab-omniauth-openid-connect SUBDIR += rubygem-gitlab_omniauth-ldap SUBDIR += rubygem-google-cloud-bigquery SUBDIR += rubygem-google-cloud-bigtable SUBDIR += rubygem-google-cloud-bigtable-admin-v2 SUBDIR += rubygem-google-cloud-bigtable-v2 SUBDIR += rubygem-google-cloud-core SUBDIR += rubygem-google-cloud-env SUBDIR += rubygem-google-cloud-errors SUBDIR += rubygem-google-cloud-logging SUBDIR += rubygem-google-cloud-logging-v2 SUBDIR += rubygem-google-cloud-pubsub SUBDIR += rubygem-google-cloud-pubsub-v1 SUBDIR += rubygem-google-cloud-spanner SUBDIR += rubygem-google-cloud-spanner-admin-database-v1 SUBDIR += rubygem-google-cloud-spanner-admin-instance-v1 SUBDIR += rubygem-google-cloud-spanner-v1 SUBDIR += rubygem-google-cloud-storage SUBDIR += rubygem-grpc SUBDIR += rubygem-grpc142 SUBDIR += rubygem-hangouts-chat SUBDIR += rubygem-http-parser SUBDIR += rubygem-http_parser.rb SUBDIR += rubygem-httpauth SUBDIR += rubygem-ipaddr SUBDIR += rubygem-ipaddress SUBDIR += rubygem-iproto SUBDIR += rubygem-kas-grpc SUBDIR += rubygem-lita-gems SUBDIR += rubygem-macaddr SUBDIR += rubygem-maxmind-db SUBDIR += rubygem-mqtt SUBDIR += rubygem-nats-pure SUBDIR += rubygem-net-ldap SUBDIR += rubygem-net-netrc SUBDIR += rubygem-net-ntp SUBDIR += rubygem-net-ping SUBDIR += rubygem-net-protocol SUBDIR += rubygem-netrc SUBDIR += rubygem-network_interface SUBDIR += rubygem-nkf SUBDIR += rubygem-no_proxy_fix SUBDIR += rubygem-oauth SUBDIR += rubygem-oauth2 SUBDIR += rubygem-oauth21 SUBDIR += rubygem-octokit SUBDIR += rubygem-octopress-deploy SUBDIR += rubygem-omniauth-auth0 SUBDIR += rubygem-omniauth-authentiq SUBDIR += rubygem-omniauth-azure-activedirectory-v2 SUBDIR += rubygem-omniauth-azure-oauth2 SUBDIR += rubygem-omniauth-facebook SUBDIR += rubygem-omniauth-facebook4 SUBDIR += rubygem-omniauth-github SUBDIR += rubygem-omniauth-github-discourse SUBDIR += rubygem-omniauth-google-oauth2 SUBDIR += rubygem-omniauth-kerberos SUBDIR += rubygem-omniauth-oauth SUBDIR += rubygem-omniauth-oauth2 SUBDIR += rubygem-omniauth-openid SUBDIR += rubygem-omniauth-salesforce SUBDIR += rubygem-omniauth-twitter SUBDIR += rubygem-omniauth-ultraauth SUBDIR += rubygem-omniauth_openid_connect SUBDIR += rubygem-open-uri SUBDIR += rubygem-open-uri-cached SUBDIR += rubygem-openid_connect SUBDIR += rubygem-opennebula SUBDIR += rubygem-orchestrator_client SUBDIR += rubygem-ovirt-engine-sdk SUBDIR += rubygem-packetfu SUBDIR += rubygem-pcaprub SUBDIR += rubygem-private_address_check SUBDIR += rubygem-proxifier SUBDIR += rubygem-qiniu SUBDIR += rubygem-rabbiter SUBDIR += rubygem-rbvmomi SUBDIR += rubygem-right_aws SUBDIR += rubygem-right_flexiscale SUBDIR += rubygem-right_gogrid SUBDIR += rubygem-right_http_connection SUBDIR += rubygem-right_slicehost SUBDIR += rubygem-rsync SUBDIR += rubygem-ruby-growl SUBDIR += rubygem-ruby-openid SUBDIR += rubygem-ruby-yadis SUBDIR += rubygem-ruby_smb SUBDIR += rubygem-rubyntlm SUBDIR += rubygem-rubytter SUBDIR += rubygem-rudy SUBDIR += rubygem-rye SUBDIR += rubygem-serverengine SUBDIR += rubygem-simple_oauth SUBDIR += rubygem-spamcheck SUBDIR += rubygem-stackdriver-core SUBDIR += rubygem-stompserver SUBDIR += rubygem-t SUBDIR += rubygem-train SUBDIR += rubygem-train-core SUBDIR += rubygem-train-winrm SUBDIR += rubygem-tweetstream SUBDIR += rubygem-twitter SUBDIR += rubygem-twitter-stream SUBDIR += rubygem-twitter4r SUBDIR += rubygem-u2f SUBDIR += rubygem-u2f0 SUBDIR += rubygem-uri SUBDIR += rubygem-uri-redis SUBDIR += rubygem-uri_template SUBDIR += rubygem-whois SUBDIR += rubygem-xmlrpc SUBDIR += rude SUBDIR += ryu SUBDIR += s5cmd SUBDIR += sacc SUBDIR += sakisafecli SUBDIR += samba412 SUBDIR += samba413 SUBDIR += samplicator SUBDIR += savvycan SUBDIR += sbd SUBDIR += sbm SUBDIR += scamper SUBDIR += scapy SUBDIR += scr_ipfm SUBDIR += sctplib SUBDIR += sdl2_net SUBDIR += sdl_net SUBDIR += seaweedfs SUBDIR += seda SUBDIR += self-service-password SUBDIR += sems SUBDIR += sendemail SUBDIR += sendsms SUBDIR += sendsnpp SUBDIR += serveez SUBDIR += serviio SUBDIR += sflowtool SUBDIR += shadowsocks-libev SUBDIR += shelldap SUBDIR += shmux SUBDIR += sie-nmsg SUBDIR += simpleproxy SUBDIR += siproxd SUBDIR += sipsak SUBDIR += skstream SUBDIR += sl2tps SUBDIR += slackcat SUBDIR += smb4k SUBDIR += smcroute SUBDIR += smm++ SUBDIR += sngrep SUBDIR += sniffit SUBDIR += sniproxy SUBDIR += sntop SUBDIR += sobby SUBDIR += socat SUBDIR += sock SUBDIR += socketapi SUBDIR += socketbind SUBDIR += socketpipe SUBDIR += socketw SUBDIR += sofia-sip SUBDIR += spiritvnc SUBDIR += spoofer SUBDIR += spread SUBDIR += spread-j SUBDIR += spread4 SUBDIR += sqtop SUBDIR += srelay SUBDIR += ss5 SUBDIR += sshping SUBDIR += ssldump SUBDIR += sslh SUBDIR += ssspl SUBDIR += stone SUBDIR += storj SUBDIR += stund SUBDIR += subnetcalc SUBDIR += suckblow SUBDIR += sup SUBDIR += svnup SUBDIR += syncthing SUBDIR += tableutil SUBDIR += tac_plus4 SUBDIR += tacacs SUBDIR += tapidbus SUBDIR += tayga SUBDIR += tclsoap SUBDIR += tcludp SUBDIR += tcpcat SUBDIR += tcpdump SUBDIR += tcpflow SUBDIR += tcpick SUBDIR += tcpillust SUBDIR += tcping SUBDIR += tcpkali SUBDIR += tcplog_dumper SUBDIR += tcpmssd SUBDIR += tcpproxy SUBDIR += tcpreen SUBDIR += tcprtt SUBDIR += tcpsg SUBDIR += tcpshow SUBDIR += tcpslice SUBDIR += tcpsplit SUBDIR += tcpstat SUBDIR += tcptestsuite SUBDIR += tcptrace SUBDIR += tcptraceroute SUBDIR += tcpview SUBDIR += tcpwatch SUBDIR += tcpxd SUBDIR += tcpxtract SUBDIR += td-system-tools SUBDIR += tdetect SUBDIR += termshark SUBDIR += tftpgrab SUBDIR += thcrut SUBDIR += throttled SUBDIR += tigervnc-server SUBDIR += tigervnc-viewer SUBDIR += tightvnc SUBDIR += timed SUBDIR += tintin++ SUBDIR += tiny-network-utilities SUBDIR += tinyfugue SUBDIR += tinyfugue-devel SUBDIR += tinyldap SUBDIR += tn5250 SUBDIR += toonel SUBDIR += torsocks SUBDIR += traefik SUBDIR += traff SUBDIR += trafshow SUBDIR += trafshow3 SUBDIR += trickle SUBDIR += tsclient SUBDIR += tsctp SUBDIR += tshark SUBDIR += tshark-lite SUBDIR += tsocks SUBDIR += tunneller SUBDIR += turnserver SUBDIR += u6rd SUBDIR += ucarp SUBDIR += udpbroadcastrelay SUBDIR += udptunnel SUBDIR += udpxy SUBDIR += udt SUBDIR += uget SUBDIR += uhttpmock SUBDIR += ulxmlrpcpp SUBDIR += unfs3 SUBDIR += unison SUBDIR += unison232 SUBDIR += unison240 SUBDIR += unison248 SUBDIR += unison251 SUBDIR += unix2tcp SUBDIR += urelay SUBDIR += uriparser SUBDIR += urlendec SUBDIR += usbredir SUBDIR += usockets SUBDIR += utftpd SUBDIR += v2ray SUBDIR += vde SUBDIR += vde2 SUBDIR += vether-kmod SUBDIR += viamillipede SUBDIR += vinagre SUBDIR += vino SUBDIR += vmware-vsphere-cli SUBDIR += vncreflector SUBDIR += vnstat SUBDIR += vortex SUBDIR += vtun SUBDIR += wackamole SUBDIR += wakeonlan SUBDIR += wangle SUBDIR += waypipe SUBDIR += wayvnc SUBDIR += webalizer-geodb SUBDIR += whois SUBDIR += widentd SUBDIR += wifibox SUBDIR += wifibox-alpine SUBDIR += wifibox-core SUBDIR += wireguard SUBDIR += wireguard-go SUBDIR += wireguard-kmod SUBDIR += wireguard-tools SUBDIR += wireproxy SUBDIR += wireshark SUBDIR += wireshark-lite SUBDIR += wlan2eth SUBDIR += wlvncc SUBDIR += wmnd SUBDIR += wmnet SUBDIR += wmping SUBDIR += wmwave SUBDIR += wmwifi SUBDIR += wmwlmon SUBDIR += wol SUBDIR += wpa_supplicant_gui SUBDIR += wping SUBDIR += x11vnc SUBDIR += x2goclient SUBDIR += x2goclient-cli SUBDIR += xisp SUBDIR += xmlrpc-c SUBDIR += xmlrpc-epi SUBDIR += xprobe SUBDIR += xrdesktop2 SUBDIR += xrdp SUBDIR += xrdp-devel SUBDIR += yami4 SUBDIR += yaph SUBDIR += yate SUBDIR += yaz SUBDIR += yaz++ SUBDIR += yazproxy SUBDIR += yconalyzer SUBDIR += yggdrasil SUBDIR += yptransitd SUBDIR += zebra-server SUBDIR += zerotier SUBDIR += zillion SUBDIR += zmap SUBDIR += zsync SUBDIR += zyre .include diff --git a/net/qt6-networkauth/Makefile b/net/qt6-networkauth/Makefile new file mode 100644 index 000000000000..2693bd8ab391 --- /dev/null +++ b/net/qt6-networkauth/Makefile @@ -0,0 +1,22 @@ +PORTNAME= networkauth +DISTVERSION= ${QT6_VERSION} +CATEGORIES= net +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt6 Network authentication module + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ + libicudata.so:devel/icu \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gnome \ + qt-dist:6 +USE_GNOME= glib20 +USE_QT= base +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/net/qt6-networkauth/distinfo b/net/qt6-networkauth/distinfo new file mode 100644 index 000000000000..e6d1a94f0b42 --- /dev/null +++ b/net/qt6-networkauth/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482610 +SHA256 (KDE/Qt/6.3.1/qtnetworkauth-everywhere-src-6.3.1.tar.xz) = d60f54b9d4509fa8bdbf1990bc91f6e260e38cdb57a7b8119fa3861bc5d2fb2a +SIZE (KDE/Qt/6.3.1/qtnetworkauth-everywhere-src-6.3.1.tar.xz) = 145924 diff --git a/net/qt6-networkauth/pkg-descr b/net/qt6-networkauth/pkg-descr new file mode 100644 index 000000000000..a2f46e74575d --- /dev/null +++ b/net/qt6-networkauth/pkg-descr @@ -0,0 +1,6 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Provides support for OAuth-based authorization to online services. + +WWW: http://qt-project.org diff --git a/net/qt6-networkauth/pkg-plist b/net/qt6-networkauth/pkg-plist new file mode 100644 index 000000000000..a1478ac663d7 --- /dev/null +++ b/net/qt6-networkauth/pkg-plist @@ -0,0 +1,51 @@ +%%QT_INCDIR%%/QtNetworkAuth/%%FULLVER%%/QtNetworkAuth/private/qabstractoauth2_p.h +%%QT_INCDIR%%/QtNetworkAuth/%%FULLVER%%/QtNetworkAuth/private/qabstractoauth_p.h +%%QT_INCDIR%%/QtNetworkAuth/%%FULLVER%%/QtNetworkAuth/private/qabstractoauthreplyhandler_p.h +%%QT_INCDIR%%/QtNetworkAuth/%%FULLVER%%/QtNetworkAuth/private/qoauth1_p.h +%%QT_INCDIR%%/QtNetworkAuth/%%FULLVER%%/QtNetworkAuth/private/qoauth1signature_p.h +%%QT_INCDIR%%/QtNetworkAuth/%%FULLVER%%/QtNetworkAuth/private/qoauth2authorizationcodeflow_p.h +%%QT_INCDIR%%/QtNetworkAuth/%%FULLVER%%/QtNetworkAuth/private/qoauthhttpserverreplyhandler_p.h +%%QT_INCDIR%%/QtNetworkAuth/QAbstractOAuth +%%QT_INCDIR%%/QtNetworkAuth/QAbstractOAuth2 +%%QT_INCDIR%%/QtNetworkAuth/QAbstractOAuthReplyHandler +%%QT_INCDIR%%/QtNetworkAuth/QOAuth1 +%%QT_INCDIR%%/QtNetworkAuth/QOAuth1Signature +%%QT_INCDIR%%/QtNetworkAuth/QOAuth2AuthorizationCodeFlow +%%QT_INCDIR%%/QtNetworkAuth/QOAuthHttpServerReplyHandler +%%QT_INCDIR%%/QtNetworkAuth/QOAuthOobReplyHandler +%%QT_INCDIR%%/QtNetworkAuth/QtNetworkAuth +%%QT_INCDIR%%/QtNetworkAuth/QtNetworkAuthDepends +%%QT_INCDIR%%/QtNetworkAuth/QtNetworkAuthVersion +%%QT_INCDIR%%/QtNetworkAuth/qabstractoauth.h +%%QT_INCDIR%%/QtNetworkAuth/qabstractoauth2.h +%%QT_INCDIR%%/QtNetworkAuth/qabstractoauthreplyhandler.h +%%QT_INCDIR%%/QtNetworkAuth/qoauth1.h +%%QT_INCDIR%%/QtNetworkAuth/qoauth1signature.h +%%QT_INCDIR%%/QtNetworkAuth/qoauth2authorizationcodeflow.h +%%QT_INCDIR%%/QtNetworkAuth/qoauthglobal.h +%%QT_INCDIR%%/QtNetworkAuth/qoauthhttpserverreplyhandler.h +%%QT_INCDIR%%/QtNetworkAuth/qoauthoobreplyhandler.h +%%QT_INCDIR%%/QtNetworkAuth/qtnetworkauthversion.h +lib/cmake/Qt6BuildInternals/StandaloneTests/QtNetworkAuthTestsConfig.cmake +lib/cmake/Qt6NetworkAuth/Qt6NetworkAuthAdditionalTargetInfo.cmake +lib/cmake/Qt6NetworkAuth/Qt6NetworkAuthConfig.cmake +lib/cmake/Qt6NetworkAuth/Qt6NetworkAuthConfigVersion.cmake +lib/cmake/Qt6NetworkAuth/Qt6NetworkAuthConfigVersionImpl.cmake +lib/cmake/Qt6NetworkAuth/Qt6NetworkAuthDependencies.cmake +lib/cmake/Qt6NetworkAuth/Qt6NetworkAuthTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6NetworkAuth/Qt6NetworkAuthTargets.cmake +lib/cmake/Qt6NetworkAuth/Qt6NetworkAuthVersionlessTargets.cmake +%%QT_LIBDIR%%/libQt6NetworkAuth.prl +%%QT_LIBDIR%%/libQt6NetworkAuth.so +%%QT_LIBDIR%%/libQt6NetworkAuth.so.6 +%%QT_LIBDIR%%/libQt6NetworkAuth.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6networkauth_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_networkauth.pri +%%QT_MKSPECDIR%%/modules/qt_lib_networkauth_private.pri +libdata/pkgconfig/Qt6NetworkAuth.pc +%%QT_DATADIR%%/modules/NetworkAuth.json +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6NetworkAuth +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6NetworkAuth +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/www/Makefile b/www/Makefile index e9e72f33e9d5..c35844d41ddd 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,2384 +1,2385 @@ COMMENT = Ports related to the World Wide Web SUBDIR += R-cran-RgoogleMaps SUBDIR += R-cran-Rook SUBDIR += R-cran-bslib SUBDIR += R-cran-crosstalk SUBDIR += R-cran-downloader SUBDIR += R-cran-gh SUBDIR += R-cran-htmlwidgets SUBDIR += R-cran-httpuv SUBDIR += R-cran-httr SUBDIR += R-cran-jquerylib SUBDIR += R-cran-rvest SUBDIR += R-cran-scrapeR SUBDIR += R-cran-selectr SUBDIR += R-cran-servr SUBDIR += R-cran-shiny SUBDIR += R-cran-webshot SUBDIR += Stikked SUBDIR += UniversalFeedCreator SUBDIR += adguardhome SUBDIR += adzap SUBDIR += alef-webfont SUBDIR += amfora SUBDIR += amphetadesk SUBDIR += analog SUBDIR += anyremote2html SUBDIR += anyterm SUBDIR += apache-mode.el SUBDIR += apache24 SUBDIR += apt-cacher-ng SUBDIR += aquatone SUBDIR += archiva SUBDIR += aria2 SUBDIR += asql SUBDIR += authelia SUBDIR += awffull SUBDIR += awstats SUBDIR += axis2 SUBDIR += bacula-web SUBDIR += baculum-api SUBDIR += baculum-common SUBDIR += baculum-web SUBDIR += baikal SUBDIR += bareos-webui SUBDIR += bareos18-webui SUBDIR += bareos19-webui SUBDIR += bareos20-webui SUBDIR += beehive SUBDIR += bkmrkconv SUBDIR += bluefish SUBDIR += bolt SUBDIR += bozohttpd SUBDIR += browsh SUBDIR += bugzilla2atom SUBDIR += buku SUBDIR += butterfly SUBDIR += c-icap SUBDIR += c-icap-modules SUBDIR += cadaver SUBDIR += caddy SUBDIR += calamaris SUBDIR += calamaris-devel SUBDIR += caldavzap SUBDIR += carbonapi SUBDIR += castget SUBDIR += castor SUBDIR += cgi-lib SUBDIR += cgi-lib.pl SUBDIR += cgicc SUBDIR += cgichk SUBDIR += cgiwrap SUBDIR += checkbot SUBDIR += chems SUBDIR += chisel SUBDIR += choqok SUBDIR += chpasswd SUBDIR += chrome-gnome-shell SUBDIR += chromium SUBDIR += cinny SUBDIR += civetweb SUBDIR += ckeditor SUBDIR += cl-lml SUBDIR += cl-lml-sbcl SUBDIR += clearsilver SUBDIR += closure-compiler SUBDIR += cntlm SUBDIR += codeigniter SUBDIR += colly SUBDIR += coppermine SUBDIR += cplanet SUBDIR += cpp-httplib SUBDIR += cpr SUBDIR += crawl SUBDIR += css-mode.el SUBDIR += cssed SUBDIR += csso SUBDIR += csstidy SUBDIR += ctemplate SUBDIR += cutelyst SUBDIR += darkhttpd SUBDIR += davical SUBDIR += davix SUBDIR += dddbl SUBDIR += ddgr SUBDIR += deno SUBDIR += devd SUBDIR += dfileserver SUBDIR += dhttpd SUBDIR += dillo2 SUBDIR += dojo SUBDIR += dokuwiki SUBDIR += dolibarr SUBDIR += dolibarr13 SUBDIR += dolibarr14 SUBDIR += domoticz SUBDIR += dooble SUBDIR += drupal7 SUBDIR += drupal7-wysiwyg SUBDIR += drupal8 SUBDIR += drupal9 SUBDIR += drush SUBDIR += dtse SUBDIR += dufs SUBDIR += e107 SUBDIR += e2guardian SUBDIR += edbrowse SUBDIR += eden SUBDIR += element-web SUBDIR += elgg SUBDIR += elinks SUBDIR += emacs-w3m SUBDIR += encode-explorer SUBDIR += envoy SUBDIR += eolie SUBDIR += ephemera SUBDIR += epiphany SUBDIR += fabio SUBDIR += falkon SUBDIR += fancybox SUBDIR += faup SUBDIR += fcgi SUBDIR += fcgiwrap SUBDIR += ffproxy SUBDIR += ffsend SUBDIR += fgallery SUBDIR += filtron SUBDIR += firedm SUBDIR += firefox SUBDIR += firefox-esr SUBDIR += flat-frog SUBDIR += flexget SUBDIR += flickcurl SUBDIR += fnord SUBDIR += formication SUBDIR += foswiki SUBDIR += fpc-fastcgi SUBDIR += fpc-googleapi SUBDIR += fpc-httpd22 SUBDIR += fpc-httpd24 SUBDIR += fpc-libmicrohttpd SUBDIR += fpc-webidl SUBDIR += free-sa-devel SUBDIR += fswiki SUBDIR += fusionpbx SUBDIR += g-cows SUBDIR += g-gcl SUBDIR += gallery-dl SUBDIR += gallery2 SUBDIR += garage SUBDIR += gatling SUBDIR += gauche-makiki SUBDIR += geckodriver SUBDIR += geneweb SUBDIR += geolizer SUBDIR += get_flash_videos SUBDIR += gist SUBDIR += gitea SUBDIR += gitlab-ce SUBDIR += gitlab-pages SUBDIR += gitlab-workhorse SUBDIR += glassfish SUBDIR += glassfish4 SUBDIR += glewlwyd SUBDIR += glpi SUBDIR += gnome-user-share SUBDIR += go-www SUBDIR += gobuffalo SUBDIR += gohugo SUBDIR += googlebook_dl SUBDIR += googler SUBDIR += goose SUBDIR += gophernicus SUBDIR += gopherus SUBDIR += gotty SUBDIR += gpx2map SUBDIR += grafana7 SUBDIR += grafana8 SUBDIR += grafana9 SUBDIR += grails SUBDIR += gregarius SUBDIR += groupoffice SUBDIR += grr SUBDIR += gstreamer1-plugins-neon SUBDIR += gtkhtml4 SUBDIR += guacamole-client SUBDIR += guile-www SUBDIR += gurl SUBDIR += gwsocket SUBDIR += h2c SUBDIR += h2o SUBDIR += h2o-devel SUBDIR += habari SUBDIR += hiawatha SUBDIR += hiawatha-monitor SUBDIR += horde-ansel SUBDIR += horde-base SUBDIR += horde-passwd SUBDIR += horde-trean SUBDIR += horde-wicked SUBDIR += hotcrp SUBDIR += hs-DAV SUBDIR += hs-hjsmin SUBDIR += hs-postgrest SUBDIR += hs-wai-app-static SUBDIR += hs-yesod-bin SUBDIR += htdigest SUBDIR += htdump SUBDIR += html2hdml SUBDIR += html2wml SUBDIR += htmlcompressor SUBDIR += htmlcxx SUBDIR += httest SUBDIR += http-parser SUBDIR += http_get SUBDIR += http_load SUBDIR += http_post SUBDIR += httpasyncclient SUBDIR += httpclient SUBDIR += httpcore SUBDIR += httptunnel SUBDIR += httrack SUBDIR += hypermail SUBDIR += igal2 SUBDIR += ikiwiki SUBDIR += ilias SUBDIR += ilias6 SUBDIR += interchange SUBDIR += iridium SUBDIR += itop SUBDIR += janus SUBDIR += jericho-html SUBDIR += jesred SUBDIR += jetty8 SUBDIR += jetty9 SUBDIR += jira-cli SUBDIR += jitsi-meet SUBDIR += jmeter SUBDIR += joomla3 SUBDIR += joomla4 SUBDIR += jwt-cli SUBDIR += kanboard SUBDIR += kannel SUBDIR += kannel-sqlbox SUBDIR += kcgi SUBDIR += kdsoap SUBDIR += kf5-kdewebkit SUBDIR += kf5-khtml SUBDIR += kf5-kjs SUBDIR += kf5-kjsembed SUBDIR += kineto SUBDIR += kiwix-tools SUBDIR += kohana SUBDIR += kristall SUBDIR += lagrange SUBDIR += larbin SUBDIR += libapreq2 SUBDIR += libdatachannel SUBDIR += libdom SUBDIR += libecap SUBDIR += libepc SUBDIR += libevhtp SUBDIR += libhsts SUBDIR += libhubbub SUBDIR += libjwt SUBDIR += libmicrohttpd SUBDIR += libnghttp2 SUBDIR += libnghttp3 SUBDIR += libresonic-standalone SUBDIR += librespeed SUBDIR += librtcdcpp SUBDIR += libwpe SUBDIR += libwww SUBDIR += lightsquid SUBDIR += lighttpd SUBDIR += lighttpd-mod_h264_streaming SUBDIR += limesurvey SUBDIR += linklint SUBDIR += links SUBDIR += links1 SUBDIR += linux-c7-qtwebkit SUBDIR += linux-opera SUBDIR += litmus SUBDIR += ljdeps SUBDIR += llhttp SUBDIR += logswan SUBDIR += logtools SUBDIR += ls-qpack SUBDIR += lua-resty-core SUBDIR += lua-resty-http SUBDIR += lua-resty-lrucache SUBDIR += luakit SUBDIR += luakit-devel SUBDIR += lux SUBDIR += lychee SUBDIR += lynx SUBDIR += lynx-current SUBDIR += madsonic SUBDIR += man2web SUBDIR += mathjax SUBDIR += mathjax3 SUBDIR += mathopd SUBDIR += matomo SUBDIR += mattermost-server SUBDIR += mattermost-webapp SUBDIR += mediawiki135 SUBDIR += mediawiki136 SUBDIR += mediawiki137 SUBDIR += mediawiki138 SUBDIR += mergelog SUBDIR += mhonarc SUBDIR += micro_httpd SUBDIR += middleman SUBDIR += midori SUBDIR += mimetex SUBDIR += mini_httpd SUBDIR += miniflux SUBDIR += minio SUBDIR += minio-client SUBDIR += miniserve SUBDIR += mirrorselect SUBDIR += mitmproxy SUBDIR += mknmz-wwwoffle SUBDIR += mnogosearch SUBDIR += mod_amazon_proxy SUBDIR += mod_asn SUBDIR += mod_auth_cas SUBDIR += mod_auth_cookie_mysql2 SUBDIR += mod_auth_gssapi SUBDIR += mod_auth_kerb2 SUBDIR += mod_auth_mellon SUBDIR += mod_auth_mysql2 SUBDIR += mod_auth_mysql_another SUBDIR += mod_auth_openid SUBDIR += mod_auth_openidc SUBDIR += mod_auth_pam2 SUBDIR += mod_auth_pgsql2 SUBDIR += mod_auth_pubtkt SUBDIR += mod_auth_tkt SUBDIR += mod_auth_xradius SUBDIR += mod_authn_dovecot SUBDIR += mod_authnz_external24 SUBDIR += mod_cfg_ldap SUBDIR += mod_cloudflare SUBDIR += mod_dav_svn SUBDIR += mod_defensible SUBDIR += mod_dnssd SUBDIR += mod_evasive SUBDIR += mod_fastcgi SUBDIR += mod_fcgid SUBDIR += mod_fileiri SUBDIR += mod_gnutls SUBDIR += mod_h264_streaming SUBDIR += mod_http2 SUBDIR += mod_jk SUBDIR += mod_limitipconn2 SUBDIR += mod_log_sql SUBDIR += mod_maxminddb SUBDIR += mod_memcache SUBDIR += mod_memcache_block SUBDIR += mod_mono SUBDIR += mod_mpm_itk SUBDIR += mod_perl2 SUBDIR += mod_php74 SUBDIR += mod_php80 SUBDIR += mod_php81 SUBDIR += mod_php82 SUBDIR += mod_proctitle SUBDIR += mod_qos SUBDIR += mod_realdoc SUBDIR += mod_reproxy SUBDIR += mod_rivet SUBDIR += mod_rpaf2 SUBDIR += mod_scgi SUBDIR += mod_security SUBDIR += mod_setenvifplus SUBDIR += mod_tidy SUBDIR += mod_umask SUBDIR += mod_webauth SUBDIR += mod_webkit SUBDIR += mod_wsgi4 SUBDIR += mod_xsendfile SUBDIR += mohawk SUBDIR += moinmoin SUBDIR += moinmoincli SUBDIR += mongoose SUBDIR += mongrel2 SUBDIR += monolith SUBDIR += moodle310 SUBDIR += moodle311 SUBDIR += moodle39 SUBDIR += moodle40 SUBDIR += morty SUBDIR += mozplugger SUBDIR += multisort SUBDIR += multiwatch SUBDIR += mybb SUBDIR += mysqlphp2postgres SUBDIR += mythplugin-mythweb SUBDIR += nanoblogger SUBDIR += nanoblogger-extra SUBDIR += neon SUBDIR += netrik SUBDIR += netstiff SUBDIR += netsurf SUBDIR += newsboat SUBDIR += nextcloud SUBDIR += nextcloud-appointments SUBDIR += nextcloud-calendar SUBDIR += nextcloud-contacts SUBDIR += nextcloud-deck SUBDIR += nextcloud-forms SUBDIR += nextcloud-groupfolders SUBDIR += nextcloud-notes SUBDIR += nextcloud-tasks SUBDIR += nghttp2 SUBDIR += nginx SUBDIR += nginx-devel SUBDIR += nginx-full SUBDIR += nginx-lite SUBDIR += nginx-naxsi SUBDIR += nginx-prometheus-exporter SUBDIR += nginx-ultimate-bad-bot-blocker SUBDIR += nginx-vts-exporter SUBDIR += nibbleblog SUBDIR += nift SUBDIR += node SUBDIR += node14 SUBDIR += node16 SUBDIR += nostromo SUBDIR += novnc SUBDIR += novnc-websockify SUBDIR += npapi-xine SUBDIR += npc SUBDIR += npm SUBDIR += npm-node14 SUBDIR += npm-node16 SUBDIR += npm-node18 SUBDIR += oauth2-proxy SUBDIR += obhttpd SUBDIR += oneshot SUBDIR += onionbalance SUBDIR += onionshare SUBDIR += onionshare-cli SUBDIR += onlyoffice-documentserver SUBDIR += opencart SUBDIR += openresty SUBDIR += orangehrm SUBDIR += osrm-backend SUBDIR += osticket SUBDIR += ot-recorder SUBDIR += otrs SUBDIR += otter-browser SUBDIR += owncast SUBDIR += owncloud SUBDIR += p5-AMF-Perl SUBDIR += p5-Acme-Monta SUBDIR += p5-Amon2 SUBDIR += p5-Amon2-Lite SUBDIR += p5-Amon2-Plugin-LogDispatch SUBDIR += p5-Amon2-Plugin-Web-CSRFDefender SUBDIR += p5-Amon2-Plugin-Web-MobileAgent SUBDIR += p5-Any-Template SUBDIR += p5-Any-URI-Escape SUBDIR += p5-AnyEvent-HTTP SUBDIR += p5-AnyEvent-HTTP-LWP-UserAgent SUBDIR += p5-AnyEvent-HTTPD SUBDIR += p5-AnyEvent-ReverseHTTP SUBDIR += p5-AnyEvent-SCGI SUBDIR += p5-AnyEvent-WebSocket-Client SUBDIR += p5-Apache-ASP SUBDIR += p5-Apache-Admin-Config SUBDIR += p5-Apache-AuthCookie SUBDIR += p5-Apache-AuthTicket SUBDIR += p5-Apache-Clean2 SUBDIR += p5-Apache-Config-Preproc SUBDIR += p5-Apache-ConfigFile SUBDIR += p5-Apache-ConfigParser SUBDIR += p5-Apache-DB SUBDIR += p5-Apache-DBI SUBDIR += p5-Apache-Defaults SUBDIR += p5-Apache-Htgroup SUBDIR += p5-Apache-LogFormat-Compiler SUBDIR += p5-Apache-MP3 SUBDIR += p5-Apache-ParseFormData SUBDIR += p5-Apache-Profiler SUBDIR += p5-Apache-Session SUBDIR += p5-Apache-Session-PHP SUBDIR += p5-Apache-Session-SQLite3 SUBDIR += p5-Apache-Session-SharedMem SUBDIR += p5-Apache-Session-Wrapper SUBDIR += p5-Apache-SessionX SUBDIR += p5-Apache-Singleton SUBDIR += p5-Apache2-SiteControl SUBDIR += p5-ApacheBench SUBDIR += p5-App-Nopaste SUBDIR += p5-App-gist SUBDIR += p5-Ark SUBDIR += p5-Bigtop SUBDIR += p5-Blog-Spam SUBDIR += p5-Browser-Open SUBDIR += p5-Business-PayPal SUBDIR += p5-CGI SUBDIR += p5-CGI-Ajax SUBDIR += p5-CGI-Application SUBDIR += p5-CGI-Application-Dispatch SUBDIR += p5-CGI-Application-Dispatch-Server SUBDIR += p5-CGI-Application-PSGI SUBDIR += p5-CGI-Application-Plugin-AnyTemplate SUBDIR += p5-CGI-Application-Plugin-Apache SUBDIR += p5-CGI-Application-Plugin-Authentication SUBDIR += p5-CGI-Application-Plugin-Authorization SUBDIR += p5-CGI-Application-Plugin-AutoRunmode SUBDIR += p5-CGI-Application-Plugin-Config-YAML SUBDIR += p5-CGI-Application-Plugin-ConfigAuto SUBDIR += p5-CGI-Application-Plugin-DBH SUBDIR += p5-CGI-Application-Plugin-DebugScreen SUBDIR += p5-CGI-Application-Plugin-DevPopup SUBDIR += p5-CGI-Application-Plugin-Forward SUBDIR += p5-CGI-Application-Plugin-HTDot SUBDIR += p5-CGI-Application-Plugin-HTMLPrototype SUBDIR += p5-CGI-Application-Plugin-HtmlTidy SUBDIR += p5-CGI-Application-Plugin-JSON SUBDIR += p5-CGI-Application-Plugin-LinkIntegrity SUBDIR += p5-CGI-Application-Plugin-LogDispatch SUBDIR += p5-CGI-Application-Plugin-MessageStack SUBDIR += p5-CGI-Application-Plugin-Redirect SUBDIR += p5-CGI-Application-Plugin-Session SUBDIR += p5-CGI-Application-Plugin-Stream SUBDIR += p5-CGI-Application-Plugin-TT SUBDIR += p5-CGI-Application-Plugin-ValidateRM SUBDIR += p5-CGI-Application-Plugin-ViewCode SUBDIR += p5-CGI-Application-Server SUBDIR += p5-CGI-ArgChecker SUBDIR += p5-CGI-Builder SUBDIR += p5-CGI-Builder-TT2 SUBDIR += p5-CGI-Cache SUBDIR += p5-CGI-Compile SUBDIR += p5-CGI-Compress-Gzip SUBDIR += p5-CGI-Cookie-Splitter SUBDIR += p5-CGI-Cookie-XS SUBDIR += p5-CGI-Deurl-XS SUBDIR += p5-CGI-Emulate-PSGI SUBDIR += p5-CGI-EncryptForm SUBDIR += p5-CGI-Enurl SUBDIR += p5-CGI-Ex SUBDIR += p5-CGI-Expand SUBDIR += p5-CGI-ExtDirect SUBDIR += p5-CGI-FCKeditor SUBDIR += p5-CGI-Fast SUBDIR += p5-CGI-FastTemplate SUBDIR += p5-CGI-FormBuilder SUBDIR += p5-CGI-Framework SUBDIR += p5-CGI-Kwiki SUBDIR += p5-CGI-Lite SUBDIR += p5-CGI-Minimal SUBDIR += p5-CGI-PSGI SUBDIR += p5-CGI-Pager SUBDIR += p5-CGI-Prototype SUBDIR += p5-CGI-Response SUBDIR += p5-CGI-SSI SUBDIR += p5-CGI-Session SUBDIR += p5-CGI-Session-ExpireSessions SUBDIR += p5-CGI-Simple SUBDIR += p5-CGI-SpeedyCGI SUBDIR += p5-CGI-Struct SUBDIR += p5-CGI-Thin SUBDIR += p5-CGI-Tiny SUBDIR += p5-CGI-Untaint SUBDIR += p5-CGI-Untaint-date SUBDIR += p5-CGI-Untaint-email SUBDIR += p5-CGI-Upload SUBDIR += p5-CGI-Utils SUBDIR += p5-CGI-XMLApplication SUBDIR += p5-CIF-Client SUBDIR += p5-CSS-DOM SUBDIR += p5-CSS-Inliner SUBDIR += p5-Catalyst-Action-REST SUBDIR += p5-Catalyst-Action-RenderView SUBDIR += p5-Catalyst-Action-Serialize-XML-Hash-LX SUBDIR += p5-Catalyst-ActionRole-ACL SUBDIR += p5-Catalyst-Authentication-Credential-HTTP SUBDIR += p5-Catalyst-Authentication-Credential-OpenID SUBDIR += p5-Catalyst-Authentication-Store-DBIx-Class SUBDIR += p5-Catalyst-Authentication-Store-LDAP SUBDIR += p5-Catalyst-Component-ACCEPT_CONTEXT SUBDIR += p5-Catalyst-Component-InstancePerContext SUBDIR += p5-Catalyst-Controller-ActionRole SUBDIR += p5-Catalyst-Controller-BindLex SUBDIR += p5-Catalyst-Controller-FormBuilder SUBDIR += p5-Catalyst-Controller-HTML-FormFu SUBDIR += p5-Catalyst-Controller-RateLimit SUBDIR += p5-Catalyst-Controller-RequestToken SUBDIR += p5-Catalyst-Controller-SOAP SUBDIR += p5-Catalyst-Devel SUBDIR += p5-Catalyst-DispatchType-Regex SUBDIR += p5-Catalyst-Engine-Apache SUBDIR += p5-Catalyst-Engine-HTTP-Prefork SUBDIR += p5-Catalyst-Engine-PSGI SUBDIR += p5-Catalyst-Enzyme SUBDIR += p5-Catalyst-Helper-Controller-Scaffold SUBDIR += p5-Catalyst-Manual SUBDIR += p5-Catalyst-Model-Adaptor SUBDIR += p5-Catalyst-Model-CDBI SUBDIR += p5-Catalyst-Model-CDBI-Plain SUBDIR += p5-Catalyst-Model-CDBI-Sweet SUBDIR += p5-Catalyst-Model-DBIC-Plain SUBDIR += p5-Catalyst-Model-DBIC-Schema SUBDIR += p5-Catalyst-Model-DynamicAdaptor SUBDIR += p5-Catalyst-Model-LDAP SUBDIR += p5-Catalyst-Model-Memcached SUBDIR += p5-Catalyst-Model-Oryx SUBDIR += p5-Catalyst-Model-Tarantool SUBDIR += p5-Catalyst-Model-XML-Feed SUBDIR += p5-Catalyst-Model-Xapian SUBDIR += p5-Catalyst-Plugin-AtomServer SUBDIR += p5-Catalyst-Plugin-Authentication SUBDIR += p5-Catalyst-Plugin-Authentication-CDBI SUBDIR += p5-Catalyst-Plugin-Authentication-OpenID SUBDIR += p5-Catalyst-Plugin-Authentication-Store-Htpasswd SUBDIR += p5-Catalyst-Plugin-Authorization-ACL SUBDIR += p5-Catalyst-Plugin-Authorization-Roles SUBDIR += p5-Catalyst-Plugin-AutoCRUD SUBDIR += p5-Catalyst-Plugin-Browser SUBDIR += p5-Catalyst-Plugin-C3 SUBDIR += p5-Catalyst-Plugin-Cache SUBDIR += p5-Catalyst-Plugin-Cache-FastMmap SUBDIR += p5-Catalyst-Plugin-Cache-Memcached SUBDIR += p5-Catalyst-Plugin-Cache-Memcached-Fast SUBDIR += p5-Catalyst-Plugin-Captcha SUBDIR += p5-Catalyst-Plugin-ConfigLoader SUBDIR += p5-Catalyst-Plugin-ConfigLoader-Environment SUBDIR += p5-Catalyst-Plugin-CookiedSession SUBDIR += p5-Catalyst-Plugin-DateTime SUBDIR += p5-Catalyst-Plugin-DefaultEnd SUBDIR += p5-Catalyst-Plugin-Email SUBDIR += p5-Catalyst-Plugin-ErrorCatcher SUBDIR += p5-Catalyst-Plugin-FillInForm SUBDIR += p5-Catalyst-Plugin-FormBuilder SUBDIR += p5-Catalyst-Plugin-FormValidator SUBDIR += p5-Catalyst-Plugin-I18N SUBDIR += p5-Catalyst-Plugin-Log-Dispatch SUBDIR += p5-Catalyst-Plugin-Log-Handler SUBDIR += p5-Catalyst-Plugin-LogWarnings SUBDIR += p5-Catalyst-Plugin-PageCache SUBDIR += p5-Catalyst-Plugin-Params-Nested SUBDIR += p5-Catalyst-Plugin-Pluggable SUBDIR += p5-Catalyst-Plugin-Prototype SUBDIR += p5-Catalyst-Plugin-RunAfterRequest SUBDIR += p5-Catalyst-Plugin-Scheduler SUBDIR += p5-Catalyst-Plugin-Server SUBDIR += p5-Catalyst-Plugin-Session SUBDIR += p5-Catalyst-Plugin-Session-FastMmap SUBDIR += p5-Catalyst-Plugin-Session-PerUser SUBDIR += p5-Catalyst-Plugin-Session-State-Cookie SUBDIR += p5-Catalyst-Plugin-Session-State-URI SUBDIR += p5-Catalyst-Plugin-Session-Store-Cache SUBDIR += p5-Catalyst-Plugin-Session-Store-DBI SUBDIR += p5-Catalyst-Plugin-Session-Store-DBIC SUBDIR += p5-Catalyst-Plugin-Session-Store-Delegate SUBDIR += p5-Catalyst-Plugin-Session-Store-FastMmap SUBDIR += p5-Catalyst-Plugin-Session-Store-File SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached SUBDIR += p5-Catalyst-Plugin-Session-Store-Memcached-Fast SUBDIR += p5-Catalyst-Plugin-Setenv SUBDIR += p5-Catalyst-Plugin-SmartURI SUBDIR += p5-Catalyst-Plugin-StackTrace SUBDIR += p5-Catalyst-Plugin-Static SUBDIR += p5-Catalyst-Plugin-Static-Simple SUBDIR += p5-Catalyst-Plugin-StatusMessage SUBDIR += p5-Catalyst-Plugin-SubRequest SUBDIR += p5-Catalyst-Plugin-Textile SUBDIR += p5-Catalyst-Plugin-Unicode SUBDIR += p5-Catalyst-Plugin-XMLRPC SUBDIR += p5-Catalyst-Runtime SUBDIR += p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging SUBDIR += p5-Catalyst-TraitFor-Request-BrowserDetect SUBDIR += p5-Catalyst-View-ClearSilver SUBDIR += p5-Catalyst-View-Email SUBDIR += p5-Catalyst-View-GraphViz SUBDIR += p5-Catalyst-View-HTML-Template SUBDIR += p5-Catalyst-View-HTML-Template-Compiled SUBDIR += p5-Catalyst-View-JSON SUBDIR += p5-Catalyst-View-Jemplate SUBDIR += p5-Catalyst-View-Mason SUBDIR += p5-Catalyst-View-REST-XML SUBDIR += p5-Catalyst-View-RRDGraph SUBDIR += p5-Catalyst-View-TT SUBDIR += p5-Catalyst-View-TT-Alloy SUBDIR += p5-Catalyst-View-TT-ControllerLocal SUBDIR += p5-Catalyst-View-Template-Declare SUBDIR += p5-Catalyst-View-Templated SUBDIR += p5-Catalyst-View-XML-Feed SUBDIR += p5-Catalyst-View-XML-Simple SUBDIR += p5-Catalyst-View-XSLT SUBDIR += p5-Catalyst-View-vCard SUBDIR += p5-CatalystX-AppBuilder SUBDIR += p5-CatalystX-Component-Traits SUBDIR += p5-CatalystX-InjectComponent SUBDIR += p5-CatalystX-LeakChecker SUBDIR += p5-CatalystX-Profile SUBDIR += p5-CatalystX-REPL SUBDIR += p5-CatalystX-RoleApplicator SUBDIR += p5-CatalystX-SimpleLogin SUBDIR += p5-CatalystX-VirtualComponents SUBDIR += p5-Class-DBI-FromForm SUBDIR += p5-ClearSilver SUBDIR += p5-Compress-LeadingBlankSpaces SUBDIR += p5-Continuity SUBDIR += p5-Cookie-Baker SUBDIR += p5-Corona SUBDIR += p5-Dancer SUBDIR += p5-Dancer-Logger-Log4perl SUBDIR += p5-Dancer-Plugin-CORS SUBDIR += p5-Dancer-Plugin-ExtDirect SUBDIR += p5-Dancer-Plugin-Feed SUBDIR += p5-Dancer-Plugin-FlashMessage SUBDIR += p5-Dancer-Plugin-Lexicon SUBDIR += p5-Dancer-Plugin-Memcached SUBDIR += p5-Dancer-Plugin-REST SUBDIR += p5-Dancer-Plugin-RPC SUBDIR += p5-Dancer-Plugin-SiteMap SUBDIR += p5-Dancer-Plugin-Swagger SUBDIR += p5-Dancer-Plugin-ValidationClass SUBDIR += p5-Dancer-Session-Cookie SUBDIR += p5-Dancer-Template-Xslate SUBDIR += p5-Dancer2 SUBDIR += p5-Dancer2-Plugin-Ajax SUBDIR += p5-Dancer2-Plugin-Deferred SUBDIR += p5-Dancer2-Plugin-FormValidator SUBDIR += p5-Dancer2-Plugin-Interchange6 SUBDIR += p5-Dancer2-Plugin-Path-Class SUBDIR += p5-Data-TreeDumper-Renderer-DHTML SUBDIR += p5-Data-Validate-URI SUBDIR += p5-Emplacken SUBDIR += p5-FAQ-OMatic SUBDIR += p5-FCGI SUBDIR += p5-FCGI-Async SUBDIR += p5-FCGI-Client SUBDIR += p5-FCGI-Engine SUBDIR += p5-FCGI-ProcManager SUBDIR += p5-FCGI-Spawn SUBDIR += p5-FEAR-API SUBDIR += p5-Facebook-Graph SUBDIR += p5-Feed-Find SUBDIR += p5-Feersum SUBDIR += p5-File-Mork SUBDIR += p5-Firefox-Marionette SUBDIR += p5-Flea SUBDIR += p5-Flickr-API SUBDIR += p5-Flickr-Upload SUBDIR += p5-Fliggy SUBDIR += p5-Furl SUBDIR += p5-FurlX-Coro SUBDIR += p5-Gantry SUBDIR += p5-Gazelle SUBDIR += p5-Geo-Caching SUBDIR += p5-Google-Search SUBDIR += p5-Gungho SUBDIR += p5-GunghoX-FollowLinks SUBDIR += p5-HTML-Adsense SUBDIR += p5-HTML-Breadcrumbs SUBDIR += p5-HTML-CalendarMonthSimple SUBDIR += p5-HTML-Chunks SUBDIR += p5-HTML-Clean SUBDIR += p5-HTML-ContentExtractor SUBDIR += p5-HTML-DOM SUBDIR += p5-HTML-Declare SUBDIR += p5-HTML-Defaultify SUBDIR += p5-HTML-Diff SUBDIR += p5-HTML-Display SUBDIR += p5-HTML-Element-Extended SUBDIR += p5-HTML-Element-Library SUBDIR += p5-HTML-Element-Replacer SUBDIR += p5-HTML-Encoding SUBDIR += p5-HTML-Escape SUBDIR += p5-HTML-ExtractContent SUBDIR += p5-HTML-ExtractMain SUBDIR += p5-HTML-Field SUBDIR += p5-HTML-FillInForm SUBDIR += p5-HTML-FillInForm-ForceUTF8 SUBDIR += p5-HTML-FillInForm-Lite SUBDIR += p5-HTML-Form SUBDIR += p5-HTML-FormFu SUBDIR += p5-HTML-FormFu-Imager SUBDIR += p5-HTML-FormFu-Model-DBIC SUBDIR += p5-HTML-FormFu-MultiForm SUBDIR += p5-HTML-FormHandler SUBDIR += p5-HTML-FromANSI SUBDIR += p5-HTML-FromText SUBDIR += p5-HTML-GenToc SUBDIR += p5-HTML-GenerateUtil SUBDIR += p5-HTML-GoogleMaps SUBDIR += p5-HTML-Gumbo SUBDIR += p5-HTML-Highlight SUBDIR += p5-HTML-LinkExtractor SUBDIR += p5-HTML-LinkList SUBDIR += p5-HTML-Lint SUBDIR += p5-HTML-Location SUBDIR += p5-HTML-Macro SUBDIR += p5-HTML-Mason SUBDIR += p5-HTML-Mason-PSGIHandler SUBDIR += p5-HTML-MobileConverter SUBDIR += p5-HTML-Pager SUBDIR += p5-HTML-Parser SUBDIR += p5-HTML-Parser-Simple SUBDIR += p5-HTML-Perlinfo SUBDIR += p5-HTML-PrettyPrinter SUBDIR += p5-HTML-Prototype SUBDIR += p5-HTML-Query SUBDIR += p5-HTML-QuickCheck SUBDIR += p5-HTML-RSSAutodiscovery SUBDIR += p5-HTML-ResolveLink SUBDIR += p5-HTML-Restrict SUBDIR += p5-HTML-RobotsMETA SUBDIR += p5-HTML-Scrubber SUBDIR += p5-HTML-Seamstress SUBDIR += p5-HTML-Selector-XPath SUBDIR += p5-HTML-Shakan SUBDIR += p5-HTML-SimpleLinkExtor SUBDIR += p5-HTML-SimpleParse SUBDIR += p5-HTML-StickyQuery SUBDIR += p5-HTML-StickyQuery-DoCoMoGUID SUBDIR += p5-HTML-Stream SUBDIR += p5-HTML-Strip SUBDIR += p5-HTML-StripScripts SUBDIR += p5-HTML-StripScripts-Parser SUBDIR += p5-HTML-Summary SUBDIR += p5-HTML-Table SUBDIR += p5-HTML-TableContentParser SUBDIR += p5-HTML-TableExtract SUBDIR += p5-HTML-TableLayout SUBDIR += p5-HTML-TableParser SUBDIR += p5-HTML-TableTiler SUBDIR += p5-HTML-TagCloud SUBDIR += p5-HTML-TagCloud-Extended SUBDIR += p5-HTML-TagParser SUBDIR += p5-HTML-Tagset SUBDIR += p5-HTML-Template SUBDIR += p5-HTML-Template-Associate SUBDIR += p5-HTML-Template-Compiled SUBDIR += p5-HTML-Template-Expr SUBDIR += p5-HTML-Template-HashWrapper SUBDIR += p5-HTML-Template-JIT SUBDIR += p5-HTML-Template-Pluggable SUBDIR += p5-HTML-Template-Pro SUBDIR += p5-HTML-Toc SUBDIR += p5-HTML-TokeParser-Simple SUBDIR += p5-HTML-Tree SUBDIR += p5-HTML-TreeBuilder-LibXML SUBDIR += p5-HTML-TreeBuilder-XPath SUBDIR += p5-HTML-Widgets-SelectLayers SUBDIR += p5-HTML-WikiConverter SUBDIR += p5-HTML-WikiConverter-DokuWiki SUBDIR += p5-HTML-WikiConverter-GoogleCode SUBDIR += p5-HTML-WikiConverter-Kwiki SUBDIR += p5-HTML-WikiConverter-Markdown SUBDIR += p5-HTML-WikiConverter-MediaWiki SUBDIR += p5-HTML-WikiConverter-MoinMoin SUBDIR += p5-HTML-WikiConverter-Oddmuse SUBDIR += p5-HTML-WikiConverter-PbWiki SUBDIR += p5-HTML-WikiConverter-PhpWiki SUBDIR += p5-HTML-WikiConverter-PmWiki SUBDIR += p5-HTML-WikiConverter-SnipSnap SUBDIR += p5-HTML-WikiConverter-Socialtext SUBDIR += p5-HTML-WikiConverter-TikiWiki SUBDIR += p5-HTML-WikiConverter-UseMod SUBDIR += p5-HTML-WikiConverter-WakkaWiki SUBDIR += p5-HTML-WikiConverter-WikkaWiki SUBDIR += p5-HTML5-DOM SUBDIR += p5-HTTP-AnyUA SUBDIR += p5-HTTP-Async SUBDIR += p5-HTTP-Body SUBDIR += p5-HTTP-BrowserDetect SUBDIR += p5-HTTP-Cache-Transparent SUBDIR += p5-HTTP-CookieJar SUBDIR += p5-HTTP-Cookies SUBDIR += p5-HTTP-Cookies-Mozilla SUBDIR += p5-HTTP-Cookies-iCab SUBDIR += p5-HTTP-Cookies-w3m SUBDIR += p5-HTTP-DAV SUBDIR += p5-HTTP-Daemon SUBDIR += p5-HTTP-Daemon-SSL SUBDIR += p5-HTTP-Date SUBDIR += p5-HTTP-Engine SUBDIR += p5-HTTP-Engine-Middleware SUBDIR += p5-HTTP-Entity-Parser SUBDIR += p5-HTTP-Exception SUBDIR += p5-HTTP-HeaderParser-XS SUBDIR += p5-HTTP-Headers-ActionPack SUBDIR += p5-HTTP-Headers-Fast SUBDIR += p5-HTTP-Link-Parser SUBDIR += p5-HTTP-Lite SUBDIR += p5-HTTP-MHTTP SUBDIR += p5-HTTP-Message SUBDIR += p5-HTTP-MobileAgent SUBDIR += p5-HTTP-MobileAgent-Plugin-Charset SUBDIR += p5-HTTP-MobileAgent-Plugin-Locator SUBDIR += p5-HTTP-MultiPartParser SUBDIR += p5-HTTP-Negotiate SUBDIR += p5-HTTP-Parser SUBDIR += p5-HTTP-Parser-XS SUBDIR += p5-HTTP-Proxy SUBDIR += p5-HTTP-ProxyPAC SUBDIR += p5-HTTP-Recorder SUBDIR += p5-HTTP-Request-AsCGI SUBDIR += p5-HTTP-Request-Params SUBDIR += p5-HTTP-Response-Encoding SUBDIR += p5-HTTP-Router SUBDIR += p5-HTTP-Server-Simple SUBDIR += p5-HTTP-Server-Simple-Authen SUBDIR += p5-HTTP-Server-Simple-Mason SUBDIR += p5-HTTP-Server-Simple-PSGI SUBDIR += p5-HTTP-Server-Simple-Recorder SUBDIR += p5-HTTP-Server-Simple-Static SUBDIR += p5-HTTP-Session SUBDIR += p5-HTTP-Session-State-MobileAgentID SUBDIR += p5-HTTP-Session-Store-DBI SUBDIR += p5-HTTP-Session2 SUBDIR += p5-HTTP-Simple SUBDIR += p5-HTTP-SimpleLinkChecker SUBDIR += p5-HTTP-Size SUBDIR += p5-HTTP-Thin SUBDIR += p5-HTTP-Throwable SUBDIR += p5-HTTP-Tiny SUBDIR += p5-HTTP-Tiny-Multipart SUBDIR += p5-HTTP-Tiny-SPDY SUBDIR += p5-HTTP-Tiny-UA SUBDIR += p5-HTTP-Tiny-UNIX SUBDIR += p5-HTTP-WebTest SUBDIR += p5-HTTP-XSCookies SUBDIR += p5-HTTPD-Log-Filter SUBDIR += p5-HTTPD-User-Manage SUBDIR += p5-Hijk SUBDIR += p5-I18N-AcceptLanguage SUBDIR += p5-IMDB-Film SUBDIR += p5-Image-Delivery SUBDIR += p5-Interchange6 SUBDIR += p5-JE SUBDIR += p5-JSON-API SUBDIR += p5-JSON-WebToken SUBDIR += p5-Jemplate SUBDIR += p5-Jifty SUBDIR += p5-LWP-Authen-Negotiate SUBDIR += p5-LWP-Authen-OAuth SUBDIR += p5-LWP-Authen-OAuth2 SUBDIR += p5-LWP-Authen-Wsse SUBDIR += p5-LWP-ConnCache-MaxKeepAliveRequests SUBDIR += p5-LWP-MediaTypes SUBDIR += p5-LWP-Online SUBDIR += p5-LWP-Protocol-PSGI SUBDIR += p5-LWP-Protocol-connect SUBDIR += p5-LWP-Protocol-http10 SUBDIR += p5-LWP-Protocol-https SUBDIR += p5-LWP-Protocol-socks SUBDIR += p5-LWP-UserAgent-Determined SUBDIR += p5-LWP-UserAgent-POE SUBDIR += p5-LWP-UserAgent-WithCache SUBDIR += p5-LWPx-ParanoidAgent SUBDIR += p5-LWPx-TimedHTTP SUBDIR += p5-Markup-Perl SUBDIR += p5-Mason SUBDIR += p5-MasonX-Interp-WithCallbacks SUBDIR += p5-MasonX-Profiler SUBDIR += p5-MasonX-Request-WithApacheSession SUBDIR += p5-MasonX-WebApp SUBDIR += p5-Maypole SUBDIR += p5-Maypole-Authentication-UserSessionCookie SUBDIR += p5-Maypole-Component SUBDIR += p5-McBain SUBDIR += p5-McBain-WithPSGI SUBDIR += p5-MediaWiki SUBDIR += p5-MediaWiki-API SUBDIR += p5-Mobile-UserAgent SUBDIR += p5-ModPerl-VersionUtil SUBDIR += p5-Mojo-IOLoop-Delay SUBDIR += p5-Mojo-IOLoop-ForkCall SUBDIR += p5-Mojo-Server-FastCGI SUBDIR += p5-Mojo-Weixin SUBDIR += p5-MojoMojo SUBDIR += p5-MojoX-Log-Dispatch-Simple SUBDIR += p5-MojoX-Renderer-Xslate SUBDIR += p5-Mojolicious SUBDIR += p5-Mojolicious-Plugin-Authentication SUBDIR += p5-Mojolicious-Plugin-Database SUBDIR += p5-Mojolicious-Plugin-HamlRenderer SUBDIR += p5-Mojolicious-Plugin-Mongodb SUBDIR += p5-Mojolicious-Plugin-SetUserGroup SUBDIR += p5-Mojolicious-Plugin-TtRenderer SUBDIR += p5-Mojolicious-Plugin-YamlConfig SUBDIR += p5-Monoceros SUBDIR += p5-Mozilla-CA SUBDIR += p5-Net-Akismet SUBDIR += p5-Net-Amazon-AWIS SUBDIR += p5-Net-Async-FastCGI SUBDIR += p5-Net-Async-HTTP SUBDIR += p5-Net-Curl SUBDIR += p5-Net-FastCGI SUBDIR += p5-Net-FireEagle SUBDIR += p5-Net-Flickr-API SUBDIR += p5-Net-Flickr-Backup SUBDIR += p5-Net-Flickr-RDF SUBDIR += p5-Net-FreshBooks-API SUBDIR += p5-Net-GeoPlanet SUBDIR += p5-Net-Plurk SUBDIR += p5-Net-STF-Client SUBDIR += p5-Net-Trac SUBDIR += p5-Net-UPS SUBDIR += p5-Net-YAP SUBDIR += p5-Net-eBay SUBDIR += p5-Newsletter SUBDIR += p5-Nginx-ReadBody SUBDIR += p5-Nginx-Simple SUBDIR += p5-PHP-Session SUBDIR += p5-POE-Component-Client-HTTP SUBDIR += p5-POE-Component-Client-UserAgent SUBDIR += p5-POE-Component-Server-HTTP SUBDIR += p5-POE-Component-Server-HTTPServer SUBDIR += p5-POE-Component-Server-PSGI SUBDIR += p5-POE-Component-Server-SOAP SUBDIR += p5-POE-Component-Server-SimpleHTTP SUBDIR += p5-POE-Filter-HTTP-Parser SUBDIR += p5-POEx-Role-PSGIServer SUBDIR += p5-PSGI SUBDIR += p5-ParallelUserAgent SUBDIR += p5-Parse-HTTP-UserAgent SUBDIR += p5-Path-Class-URI SUBDIR += p5-Perlanet SUBDIR += p5-Perlbal-Plugin-PSGI SUBDIR += p5-Plack SUBDIR += p5-Plack-App-Proxy SUBDIR += p5-Plack-Builder-Conditionals SUBDIR += p5-Plack-Handler-AnyEvent-HTTPD SUBDIR += p5-Plack-Handler-AnyEvent-ReverseHTTP SUBDIR += p5-Plack-Handler-AnyEvent-SCGI SUBDIR += p5-Plack-Handler-CLI SUBDIR += p5-Plack-Handler-SCGI SUBDIR += p5-Plack-Middleware-AMF SUBDIR += p5-Plack-Middleware-AddDefaultCharset SUBDIR += p5-Plack-Middleware-Auth-Digest SUBDIR += p5-Plack-Middleware-AutoRefresh SUBDIR += p5-Plack-Middleware-ConsoleLogger SUBDIR += p5-Plack-Middleware-CrossOrigin SUBDIR += p5-Plack-Middleware-DBIx-DisconnectAll SUBDIR += p5-Plack-Middleware-Debug SUBDIR += p5-Plack-Middleware-Deflater SUBDIR += p5-Plack-Middleware-Expires SUBDIR += p5-Plack-Middleware-ExtDirect SUBDIR += p5-Plack-Middleware-File-Sass SUBDIR += p5-Plack-Middleware-FixMissingBodyInRedirect SUBDIR += p5-Plack-Middleware-ForceEnv SUBDIR += p5-Plack-Middleware-Header SUBDIR += p5-Plack-Middleware-IEnosniff SUBDIR += p5-Plack-Middleware-InteractiveDebugger SUBDIR += p5-Plack-Middleware-JSConcat SUBDIR += p5-Plack-Middleware-MemoryUsage SUBDIR += p5-Plack-Middleware-MethodOverride SUBDIR += p5-Plack-Middleware-NoMultipleSlashes SUBDIR += p5-Plack-Middleware-Precompressed SUBDIR += p5-Plack-Middleware-RemoveRedundantBody SUBDIR += p5-Plack-Middleware-Reproxy SUBDIR += p5-Plack-Middleware-ReverseProxy SUBDIR += p5-Plack-Middleware-Rewrite SUBDIR += p5-Plack-Middleware-ServerStatus-Lite SUBDIR += p5-Plack-Middleware-Session SUBDIR += p5-Plack-Middleware-SocketIO SUBDIR += p5-Plack-Middleware-Status SUBDIR += p5-Plack-Middleware-Test-StashWarnings SUBDIR += p5-Plack-Middleware-Throttle SUBDIR += p5-Plack-Middleware-XForwardedFor SUBDIR += p5-Plack-Server-Coro SUBDIR += p5-Plack-Server-POE SUBDIR += p5-Plack-Server-ReverseHTTP SUBDIR += p5-Plack-Test-ExternalServer SUBDIR += p5-PocketIO SUBDIR += p5-Pod-Site SUBDIR += p5-PodToHTML SUBDIR += p5-Protocol-HTTP2 SUBDIR += p5-Protocol-SocketIO SUBDIR += p5-Protocol-WebSocket SUBDIR += p5-Protocol-XMLRPC SUBDIR += p5-REST-Client SUBDIR += p5-REST-Google-Apps-Provisioning SUBDIR += p5-RPC-ExtDirect SUBDIR += p5-RT-Client-REST SUBDIR += p5-RT-Extension-CommandByMail SUBDIR += p5-RT-Extension-Gravatar SUBDIR += p5-RT-Extension-LDAPImport SUBDIR += p5-RT-Extension-MandatoryOnTransition SUBDIR += p5-RT-Extension-RepeatTicket SUBDIR += p5-RT-Extension-RepeatTicket2 SUBDIR += p5-RTx-Calendar SUBDIR += p5-Reaction SUBDIR += p5-Reddit SUBDIR += p5-Reddit-Client SUBDIR += p5-Role-REST-Client SUBDIR += p5-Rose-HTML-Objects SUBDIR += p5-Router-Boom SUBDIR += p5-Router-Simple SUBDIR += p5-Router-Simple-Sinatraish SUBDIR += p5-SCGI SUBDIR += p5-SOAP-Transport-HTTP-Plack SUBDIR += p5-SRU SUBDIR += p5-STF-Dispatcher-PSGI SUBDIR += p5-SWF-Chart SUBDIR += p5-Scrappy SUBDIR += p5-Selenium-Remote-Driver SUBDIR += p5-Session-Storage-Secure SUBDIR += p5-Squatting SUBDIR += p5-Squatting-On-PSGI SUBDIR += p5-Starlet SUBDIR += p5-Starman SUBDIR += p5-Syntax-Highlight-HTML SUBDIR += p5-Syntax-Highlight-Shell SUBDIR += p5-Task-Catalyst SUBDIR += p5-Task-Plack SUBDIR += p5-Tatsumaki SUBDIR += p5-Template-Alloy SUBDIR += p5-Template-GD SUBDIR += p5-Template-Iterator-AlzaboWrapperCursor SUBDIR += p5-Template-Multilingual SUBDIR += p5-Template-Mustache SUBDIR += p5-Template-Plugin-Class SUBDIR += p5-Template-Plugin-Clickable SUBDIR += p5-Template-Plugin-Clickable-Email SUBDIR += p5-Template-Plugin-Comma SUBDIR += p5-Template-Plugin-FillInForm SUBDIR += p5-Template-Plugin-Gettext SUBDIR += p5-Template-Plugin-JSON SUBDIR += p5-Template-Plugin-JavaScript SUBDIR += p5-Template-Plugin-MP3 SUBDIR += p5-Template-Plugin-Markdown SUBDIR += p5-Template-Plugin-Monta SUBDIR += p5-Template-Plugin-Number-Format SUBDIR += p5-Template-Plugin-StripScripts SUBDIR += p5-Template-Plugin-Subst SUBDIR += p5-Template-Plugin-VMethods SUBDIR += p5-Template-Provider-Encoding SUBDIR += p5-Template-Provider-FromDATA SUBDIR += p5-Template-Simple SUBDIR += p5-Template-Stash-AutoEscape SUBDIR += p5-Template-Timer SUBDIR += p5-Template-Toolkit SUBDIR += p5-Template-Toolkit-Simple SUBDIR += p5-Tenjin SUBDIR += p5-Test-HTTP SUBDIR += p5-Test-HTTP-LocalServer SUBDIR += p5-Test-HTTP-Server-Simple SUBDIR += p5-Test-LWP-UserAgent SUBDIR += p5-Test-Nginx SUBDIR += p5-TestGen4Web-Runner SUBDIR += p5-Text-MultiMarkdown-ApacheHandler SUBDIR += p5-Tie-TinyURL SUBDIR += p5-Toader SUBDIR += p5-Toadfarm SUBDIR += p5-Twiggy SUBDIR += p5-Twiggy-TLS SUBDIR += p5-URI-Encode SUBDIR += p5-URI-Escape-JavaScript SUBDIR += p5-URI-Escape-XS SUBDIR += p5-URI-Fetch SUBDIR += p5-URI-Normalize SUBDIR += p5-URI-ParseSearchString SUBDIR += p5-URI-Sequin SUBDIR += p5-URI-Title SUBDIR += p5-URI-ToDisk SUBDIR += p5-URL-Encode SUBDIR += p5-URL-Encode-XS SUBDIR += p5-VUser-Google-ProvisioningAPI SUBDIR += p5-W3C-LinkChecker SUBDIR += p5-W3C-LogValidator SUBDIR += p5-WWW-AtMovies-TV SUBDIR += p5-WWW-Babelfish SUBDIR += p5-WWW-Baseball-NPB SUBDIR += p5-WWW-Comic SUBDIR += p5-WWW-Contact SUBDIR += p5-WWW-Curl SUBDIR += p5-WWW-DHL SUBDIR += p5-WWW-Dilbert SUBDIR += p5-WWW-Facebook-API SUBDIR += p5-WWW-Form-UrlEncoded SUBDIR += p5-WWW-FreeProxy SUBDIR += p5-WWW-GitHub-Gist SUBDIR += p5-WWW-Google-Calculator SUBDIR += p5-WWW-Google-News SUBDIR += p5-WWW-Google-News-TW SUBDIR += p5-WWW-Google-PageRank SUBDIR += p5-WWW-HatenaDiary SUBDIR += p5-WWW-HatenaLogin SUBDIR += p5-WWW-HatenaStar SUBDIR += p5-WWW-IMDb SUBDIR += p5-WWW-Instapaper-Client SUBDIR += p5-WWW-LongURL SUBDIR += p5-WWW-Mechanize SUBDIR += p5-WWW-Mechanize-CGI SUBDIR += p5-WWW-Mechanize-DecodedContent SUBDIR += p5-WWW-Mechanize-FormFiller SUBDIR += p5-WWW-Mechanize-GZip SUBDIR += p5-WWW-Mechanize-Meta SUBDIR += p5-WWW-Mechanize-Pluggable SUBDIR += p5-WWW-Mechanize-Plugin-phpBB SUBDIR += p5-WWW-Mechanize-Shell SUBDIR += p5-WWW-Mechanize-SpamCop SUBDIR += p5-WWW-Mechanize-TreeBuilder SUBDIR += p5-WWW-Mediawiki-Client SUBDIR += p5-WWW-Mixi SUBDIR += p5-WWW-Mixi-Scraper SUBDIR += p5-WWW-Myspace SUBDIR += p5-WWW-NicoVideo-Download SUBDIR += p5-WWW-NioTV SUBDIR += p5-WWW-OAuth SUBDIR += p5-WWW-OpenSVN SUBDIR += p5-WWW-OpenSearch SUBDIR += p5-WWW-Pastebin-PastebinCom-Create SUBDIR += p5-WWW-Plurk SUBDIR += p5-WWW-Robot SUBDIR += p5-WWW-RobotRules SUBDIR += p5-WWW-RobotRules-Parser SUBDIR += p5-WWW-Salesforce SUBDIR += p5-WWW-Scraper-ISBN SUBDIR += p5-WWW-Scraper-ISBN-Amazon_Driver SUBDIR += p5-WWW-Scraper-ISBN-ORA_Driver SUBDIR += p5-WWW-Scripter SUBDIR += p5-WWW-Scripter-Plugin-Ajax SUBDIR += p5-WWW-Scripter-Plugin-JavaScript SUBDIR += p5-WWW-Search SUBDIR += p5-WWW-Search-AltaVista SUBDIR += p5-WWW-Search-Google SUBDIR += p5-WWW-Search-MSN SUBDIR += p5-WWW-Shorten SUBDIR += p5-WWW-Shorten-0rz SUBDIR += p5-WWW-Shorten-Bitly SUBDIR += p5-WWW-Shorten-Googl SUBDIR += p5-WWW-Shorten-Yourls SUBDIR += p5-WWW-SourceForge SUBDIR += p5-WWW-Spinn3r SUBDIR += p5-WWW-TV SUBDIR += p5-WWW-TWSMS SUBDIR += p5-WWW-Telegram-BotAPI SUBDIR += p5-WWW-TinySong SUBDIR += p5-WWW-Tumblr SUBDIR += p5-WWW-VenusEnvy SUBDIR += p5-WWW-WebArchive SUBDIR += p5-WWW-Wikipedia SUBDIR += p5-WWW-Yandex-TIC SUBDIR += p5-WWW-iTunesConnect SUBDIR += p5-Web-Machine SUBDIR += p5-Web-Query SUBDIR += p5-Web-Scraper SUBDIR += p5-Web-Scraper-Config SUBDIR += p5-Web-Simple SUBDIR += p5-Web-oEmbed SUBDIR += p5-WebDAO SUBDIR += p5-WebDriver-Tiny SUBDIR += p5-WebService-Basecamp SUBDIR += p5-WebService-Bloglines SUBDIR += p5-WebService-BuzzurlAPI SUBDIR += p5-WebService-CIA SUBDIR += p5-WebService-GData SUBDIR += p5-WebService-Google-Reader SUBDIR += p5-WebService-Google-Sets SUBDIR += p5-WebService-IMDB SUBDIR += p5-WebService-ISBNDB SUBDIR += p5-WebService-Linode SUBDIR += p5-WebService-MoviePosterDB SUBDIR += p5-WebService-MusicBrainz SUBDIR += p5-WebService-NoPaste SUBDIR += p5-WebService-Pushover SUBDIR += p5-WebService-Rakuten SUBDIR += p5-WebService-Redmine SUBDIR += p5-WebService-Simple SUBDIR += p5-WebService-Technorati SUBDIR += p5-WebService-YouTube SUBDIR += p5-Woothee SUBDIR += p5-WordPress-XMLRPC SUBDIR += p5-Yahoo-Search SUBDIR += p5-chklinks SUBDIR += p5-jQuery-File-Upload SUBDIR += p5-libapreq2 SUBDIR += p5-libservlet SUBDIR += p5-libwww SUBDIR += p5-pQuery SUBDIR += p5-webservice-validator-css-w3c SUBDIR += p5-webservice-validator-html-w3c SUBDIR += payara SUBDIR += pear-HTML_AJAX SUBDIR += pear-HTML_TagCloud SUBDIR += pear-HTTP SUBDIR += pear-HTTP_Client SUBDIR += pear-HTTP_Download SUBDIR += pear-HTTP_FloodControl SUBDIR += pear-HTTP_Header SUBDIR += pear-HTTP_Request SUBDIR += pear-HTTP_Request2 SUBDIR += pear-HTTP_Server SUBDIR += pear-HTTP_Session2 SUBDIR += pear-HTTP_Upload SUBDIR += pear-HTTP_WebDAV_Client SUBDIR += pear-HTTP_WebDAV_Server SUBDIR += pear-Horde_Browser SUBDIR += pear-Horde_Css_Parser SUBDIR += pear-Horde_Dav SUBDIR += pear-Horde_Editor SUBDIR += pear-Horde_Feed SUBDIR += pear-Horde_Form SUBDIR += pear-Horde_Http SUBDIR += pear-Horde_Routes SUBDIR += pear-Horde_Service_Facebook SUBDIR += pear-Horde_Service_Gravatar SUBDIR += pear-Horde_Service_Twitter SUBDIR += pear-Horde_Service_UrlShortener SUBDIR += pear-Horde_Service_Weather SUBDIR += pear-Horde_SessionHandler SUBDIR += pear-Horde_Template SUBDIR += pear-Services_Amazon SUBDIR += pear-Services_Amazon_S3 SUBDIR += pear-Services_Blogging SUBDIR += pear-Services_Compete SUBDIR += pear-Services_Delicious SUBDIR += pear-Services_Digg SUBDIR += pear-Services_Facebook SUBDIR += pear-Services_GeoNames SUBDIR += pear-Services_Google SUBDIR += pear-Services_OpenSearch SUBDIR += pear-Services_ShortURL SUBDIR += pear-Services_TinyURL SUBDIR += pear-Services_TwitPic SUBDIR += pear-Services_W3C_CSSValidator SUBDIR += pear-Services_W3C_HTMLValidator SUBDIR += pear-Services_Yadis SUBDIR += pear-Services_Yahoo SUBDIR += pear-Services_urlTea SUBDIR += pear-Structures_DataGrid_Renderer_Flexy SUBDIR += pear-Structures_DataGrid_Renderer_Pager SUBDIR += pear-Structures_DataGrid_Renderer_Smarty SUBDIR += pear-Text_Wiki SUBDIR += pear-UDDI SUBDIR += pear-XML_GRDDL SUBDIR += pear-twig SUBDIR += pecl-http SUBDIR += pecl-solr SUBDIR += pecl-yaf SUBDIR += pecl-yar SUBDIR += perlbal SUBDIR += persepolis SUBDIR += pglogd SUBDIR += phalcon SUBDIR += phalcon4 SUBDIR += php74-opcache SUBDIR += php74-session SUBDIR += php74-tidy SUBDIR += php80-opcache SUBDIR += php80-session SUBDIR += php80-tidy SUBDIR += php81-opcache SUBDIR += php81-session SUBDIR += php81-tidy SUBDIR += php82-opcache SUBDIR += php82-session SUBDIR += php82-tidy SUBDIR += phpbb SUBDIR += phpbb3 SUBDIR += phpgroupware SUBDIR += phpmustache SUBDIR += phpmyfaq SUBDIR += phprecipebook SUBDIR += phpsysinfo SUBDIR += phpvirtualbox SUBDIR += phpvirtualbox-legacy SUBDIR += piwigo SUBDIR += plasma5-plasma-browser-integration SUBDIR += pmwiki SUBDIR += pnews SUBDIR += podcastamatic SUBDIR += polipo SUBDIR += pomerium SUBDIR += pound SUBDIR += privatebin SUBDIR += privoxy SUBDIR += protovis SUBDIR += proxygen SUBDIR += pserv SUBDIR += publicfile SUBDIR += punbb SUBDIR += py-Tenjin SUBDIR += py-WebError SUBDIR += py-WebFlash SUBDIR += py-WebTest SUBDIR += py-adblock SUBDIR += py-aioh2 SUBDIR += py-aiohttp SUBDIR += py-aiohttp-middlewares SUBDIR += py-aiohttp-wsgi SUBDIR += py-aiohttp_cors SUBDIR += py-aioquic SUBDIR += py-arxiv SUBDIR += py-asgiref SUBDIR += py-autobahn SUBDIR += py-azure-common SUBDIR += py-azure-storage SUBDIR += py-beaker SUBDIR += py-beautifulsoup SUBDIR += py-beautifulsoup449 SUBDIR += py-betamax SUBDIR += py-biscuits SUBDIR += py-bjoern SUBDIR += py-bleach SUBDIR += py-bokeh SUBDIR += py-boto3 SUBDIR += py-botocore-stubs SUBDIR += py-bottle SUBDIR += py-bottle-cork SUBDIR += py-branca SUBDIR += py-cachecontrol SUBDIR += py-cachelib SUBDIR += py-caldav SUBDIR += py-cheroot SUBDIR += py-cherrypy SUBDIR += py-cookies SUBDIR += py-crossplane SUBDIR += py-css-parser SUBDIR += py-csscompressor SUBDIR += py-cssmin SUBDIR += py-cssselect SUBDIR += py-cssutils SUBDIR += py-dj-database-url SUBDIR += py-dj40-django-auth-ldap SUBDIR += py-dj40-django-cors-headers SUBDIR += py-dj40-django-debug-toolbar SUBDIR += py-dj40-django-filter SUBDIR += py-dj40-django-graphiql-debug-toolbar SUBDIR += py-dj40-django-js-asset SUBDIR += py-dj40-django-mptt SUBDIR += py-dj40-django-prometheus SUBDIR += py-dj40-django-redis SUBDIR += py-dj40-django-tables2 SUBDIR += py-dj40-django-taggit SUBDIR += py-dj40-django-timezone-field SUBDIR += py-dj40-djangorestframework SUBDIR += py-dj40-drf-yasg SUBDIR += py-django-admin-rangefilter SUBDIR += py-django-advanced-filters SUBDIR += py-django-allauth SUBDIR += py-django-annoying SUBDIR += py-django-appconf SUBDIR += py-django-assets SUBDIR += py-django-auth-ldap SUBDIR += py-django-autocomplete-light SUBDIR += py-django-bakery SUBDIR += py-django-bitfield SUBDIR += py-django-bleach SUBDIR += py-django-bootstrap-pagination SUBDIR += py-django-bootstrap3 SUBDIR += py-django-bootstrap4 SUBDIR += py-django-braces SUBDIR += py-django-cacheops SUBDIR += py-django-ckeditor-5 SUBDIR += py-django-classy-tags SUBDIR += py-django-cms SUBDIR += py-django-configurations SUBDIR += py-django-constance SUBDIR += py-django-contact-form SUBDIR += py-django-context-decorator SUBDIR += py-django-contrib-comments SUBDIR += py-django-cors-headers SUBDIR += py-django-countries SUBDIR += py-django-crispy-forms SUBDIR += py-django-cron SUBDIR += py-django-csp SUBDIR += py-django-debreach SUBDIR += py-django-debug-toolbar SUBDIR += py-django-dpaste SUBDIR += py-django-extensions SUBDIR += py-django-filer SUBDIR += py-django-filter SUBDIR += py-django-formset-js-improved SUBDIR += py-django-formtools SUBDIR += py-django-graphiql-debug-toolbar SUBDIR += py-django-gravatar2 SUBDIR += py-django-guardian SUBDIR += py-django-hashid-field SUBDIR += py-django-haystack SUBDIR += py-django-hierarkey SUBDIR += py-django-hijack SUBDIR += py-django-htmlmin SUBDIR += py-django-i18nfield SUBDIR += py-django-jquery-js SUBDIR += py-django-js-asset SUBDIR += py-django-jsonview SUBDIR += py-django-ldapdb SUBDIR += py-django-libsass SUBDIR += py-django-markdownx SUBDIR += py-django-markwhat SUBDIR += py-django-mezzanine-filebrowser SUBDIR += py-django-mezzanine-grappelli SUBDIR += py-django-model-utils SUBDIR += py-django-modelcluster SUBDIR += py-django-mptt SUBDIR += py-django-netfields SUBDIR += py-django-object-actions SUBDIR += py-django-otp SUBDIR += py-django-otp-yubikey SUBDIR += py-django-permissionedforms SUBDIR += py-django-pglocks SUBDIR += py-django-photologue SUBDIR += py-django-picklefield SUBDIR += py-django-pipeline SUBDIR += py-django-polymorphic SUBDIR += py-django-post_office SUBDIR += py-django-prometheus SUBDIR += py-django-pyscss SUBDIR += py-django-radius SUBDIR += py-django-ranged-response SUBDIR += py-django-recaptcha SUBDIR += py-django-redis SUBDIR += py-django-registration SUBDIR += py-django-registration-redux SUBDIR += py-django-reversion SUBDIR += py-django-reversion-compare SUBDIR += py-django-rich SUBDIR += py-django-sekizai SUBDIR += py-django-simple-captcha SUBDIR += py-django-simple-history SUBDIR += py-django-smart-selects SUBDIR += py-django-solo SUBDIR += py-django-sortedm2m SUBDIR += py-django-star-ratings SUBDIR += py-django-statici18n SUBDIR += py-django-staticinline SUBDIR += py-django-storages SUBDIR += py-django-tables2 SUBDIR += py-django-tagging SUBDIR += py-django-taggit SUBDIR += py-django-tastypie SUBDIR += py-django-templatetag-sugar SUBDIR += py-django-timezone-field SUBDIR += py-django-tinymce SUBDIR += py-django-treebeard SUBDIR += py-django-voting SUBDIR += py-django-webpack-loader SUBDIR += py-django-widget-tweaks SUBDIR += py-django32 SUBDIR += py-django40 SUBDIR += py-django41 SUBDIR += py-django_compressor SUBDIR += py-djangocms-admin-style SUBDIR += py-djangoql SUBDIR += py-djangorestframework SUBDIR += py-djangorestframework-csv SUBDIR += py-djangorestframework-filters SUBDIR += py-djangorestframework-xml SUBDIR += py-draftjs-exporter SUBDIR += py-drf-yasg SUBDIR += py-dtflickr SUBDIR += py-enmerkar SUBDIR += py-fake-useragent SUBDIR += py-falcon SUBDIR += py-fastapi SUBDIR += py-fastapi-users SUBDIR += py-feedgenerator SUBDIR += py-flask SUBDIR += py-flask-admin SUBDIR += py-flask-api SUBDIR += py-flask-apscheduler SUBDIR += py-flask-assets SUBDIR += py-flask-babelex SUBDIR += py-flask-bootstrap SUBDIR += py-flask-cache SUBDIR += py-flask-caching SUBDIR += py-flask-collect SUBDIR += py-flask-compress SUBDIR += py-flask-cors SUBDIR += py-flask-flatpages SUBDIR += py-flask-json SUBDIR += py-flask-jwt-extended SUBDIR += py-flask-login SUBDIR += py-flask-marshmallow SUBDIR += py-flask-migrate SUBDIR += py-flask-moment SUBDIR += py-flask-mongoengine SUBDIR += py-flask-oauthlib SUBDIR += py-flask-peewee SUBDIR += py-flask-principal SUBDIR += py-flask-restful SUBDIR += py-flask-restx SUBDIR += py-flask-script SUBDIR += py-flask-security SUBDIR += py-flask-smorest SUBDIR += py-flask-socketio SUBDIR += py-flask-sockets SUBDIR += py-flask-uploads SUBDIR += py-flask-wtf SUBDIR += py-flup6 SUBDIR += py-folium SUBDIR += py-forcediphttpsadapter SUBDIR += py-formencode SUBDIR += py-fqdn SUBDIR += py-freenit SUBDIR += py-frozen-flask SUBDIR += py-gandi.cli SUBDIR += py-gevent-websocket SUBDIR += py-ghp-import SUBDIR += py-google SUBDIR += py-google-api-core SUBDIR += py-google-api-python-client SUBDIR += py-google-cloud-appengine-logging SUBDIR += py-google-cloud-audit-log SUBDIR += py-google-cloud-bigtable SUBDIR += py-google-cloud-core SUBDIR += py-google-cloud-datastore SUBDIR += py-google-cloud-dlp SUBDIR += py-google-cloud-logging SUBDIR += py-google-cloud-speech SUBDIR += py-google-cloud-storage SUBDIR += py-google-cloud-translate SUBDIR += py-google-cloud-vision SUBDIR += py-google-resumable-media SUBDIR += py-grafana-dashboard-manager SUBDIR += py-graphite-api SUBDIR += py-grequests SUBDIR += py-grip SUBDIR += py-gunicorn SUBDIR += py-h2 SUBDIR += py-habanero SUBDIR += py-horizon SUBDIR += py-hpack SUBDIR += py-hstspreload SUBDIR += py-html3 SUBDIR += py-html5-parser SUBDIR += py-html5lib SUBDIR += py-httmock SUBDIR += py-http-parser SUBDIR += py-httpbin SUBDIR += py-httpcore SUBDIR += py-httpie SUBDIR += py-httplib2 SUBDIR += py-httpretty SUBDIR += py-httptools SUBDIR += py-httpx SUBDIR += py-httpx-gssapi SUBDIR += py-httpx-oauth SUBDIR += py-httpx-socks SUBDIR += py-httpx013 SUBDIR += py-hypercorn SUBDIR += py-hyperframe SUBDIR += py-hyperlink SUBDIR += py-imdbpy SUBDIR += py-inlinestyler SUBDIR += py-instabot SUBDIR += py-internetarchive SUBDIR += py-jonpy SUBDIR += py-jsonfield SUBDIR += py-lektor SUBDIR += py-lesscpy SUBDIR += py-libsass SUBDIR += py-livereload SUBDIR += py-mechanicalsoup SUBDIR += py-mechanize SUBDIR += py-multidict SUBDIR += py-mwoauth SUBDIR += py-nevow SUBDIR += py-notebook SUBDIR += py-openbrokerapi SUBDIR += py-pafy SUBDIR += py-paste SUBDIR += py-pastedeploy SUBDIR += py-path-and-address SUBDIR += py-pecan SUBDIR += py-pelican SUBDIR += py-planet SUBDIR += py-postorius SUBDIR += py-praw SUBDIR += py-prawcore SUBDIR += py-priority SUBDIR += py-priority1 SUBDIR += py-protego SUBDIR += py-puppetboard SUBDIR += py-py-restclient SUBDIR += py-pygsheets SUBDIR += py-pyjwt SUBDIR += py-pyjwt1 SUBDIR += py-pylsqpack SUBDIR += py-pyocclient SUBDIR += py-pyramid SUBDIR += py-pyramid-mako SUBDIR += py-pyramid_rpc SUBDIR += py-pysmartdl SUBDIR += py-python-digitalocean SUBDIR += py-python-dotenv SUBDIR += py-python-multipart SUBDIR += py-pyweblib SUBDIR += py-pywikibot SUBDIR += py-qt5-webengine SUBDIR += py-quilt3 SUBDIR += py-recaptcha SUBDIR += py-requests SUBDIR += py-requests-aws4auth SUBDIR += py-requests-cache SUBDIR += py-requests-cache93 SUBDIR += py-requests-file SUBDIR += py-requests-futures SUBDIR += py-requests-mock SUBDIR += py-requests-oauthlib SUBDIR += py-requests-toolbelt SUBDIR += py-requests-unixsocket SUBDIR += py-requests_ntlm SUBDIR += py-respx SUBDIR += py-restclient SUBDIR += py-rfc3986 SUBDIR += py-rfc3987 SUBDIR += py-rollbar SUBDIR += py-routes SUBDIR += py-rules SUBDIR += py-scgi SUBDIR += py-scrapy SUBDIR += py-seafdav SUBDIR += py-seafobj SUBDIR += py-secure-cookie SUBDIR += py-selector SUBDIR += py-selenium SUBDIR += py-semiphemeral SUBDIR += py-sentinelhub SUBDIR += py-slimit SUBDIR += py-slumber SUBDIR += py-social-auth-app-django SUBDIR += py-sockjs-tornado SUBDIR += py-soupsieve SUBDIR += py-splinter SUBDIR += py-spyne SUBDIR += py-sseclient SUBDIR += py-starlette SUBDIR += py-swapper SUBDIR += py-textile SUBDIR += py-tornado SUBDIR += py-tornado4 SUBDIR += py-tornado5 SUBDIR += py-treq SUBDIR += py-ttrv SUBDIR += py-tuir SUBDIR += py-turbogears2 SUBDIR += py-tvdb_api SUBDIR += py-txrequests SUBDIR += py-urlgrabber SUBDIR += py-urlman SUBDIR += py-urlobject SUBDIR += py-urlwatch SUBDIR += py-user_agent SUBDIR += py-utidylib SUBDIR += py-uvicorn SUBDIR += py-w3lib SUBDIR += py-wagtail SUBDIR += py-waitress SUBDIR += py-webargs SUBDIR += py-webassets SUBDIR += py-webob SUBDIR += py-websocket-client SUBDIR += py-webunit SUBDIR += py-werkzeug SUBDIR += py-wfuzz SUBDIR += py-whitenoise SUBDIR += py-wikipedia SUBDIR += py-wikitools SUBDIR += py-woob SUBDIR += py-woob-qt SUBDIR += py-ws4py SUBDIR += py-wsaccel SUBDIR += py-wsgidav SUBDIR += py-yarl SUBDIR += pydio-cells SUBDIR += qdecoder SUBDIR += qhttpengine SUBDIR += qt5-webchannel SUBDIR += qt5-webengine SUBDIR += qt5-webglplugin SUBDIR += qt5-webkit SUBDIR += qt5-websockets SUBDIR += qt5-websockets-qml SUBDIR += qt5-webview + SUBDIR += qt6-webengine SUBDIR += quark SUBDIR += qutebrowser SUBDIR += radicale SUBDIR += rearx SUBDIR += redmine42 SUBDIR += rejik SUBDIR += reportmagic SUBDIR += repos-style SUBDIR += reproxy SUBDIR += resin3 SUBDIR += restbed SUBDIR += retawq SUBDIR += rss-bridge SUBDIR += rsskit SUBDIR += rssroll SUBDIR += rsstail SUBDIR += rsstool SUBDIR += rt44 SUBDIR += rt50 SUBDIR += rubygem-ace-rails-ap SUBDIR += rubygem-actioncable5 SUBDIR += rubygem-actioncable50 SUBDIR += rubygem-actioncable52 SUBDIR += rubygem-actioncable60 SUBDIR += rubygem-actioncable61 SUBDIR += rubygem-actioncable70 SUBDIR += rubygem-actionpack4 SUBDIR += rubygem-actionpack5 SUBDIR += rubygem-actionpack50 SUBDIR += rubygem-actionpack52 SUBDIR += rubygem-actionpack60 SUBDIR += rubygem-actionpack61 SUBDIR += rubygem-actionpack70 SUBDIR += rubygem-activeresource SUBDIR += rubygem-activeresource4 SUBDIR += rubygem-acts-as-taggable-on SUBDIR += rubygem-acts_as_taggable SUBDIR += rubygem-addressable SUBDIR += rubygem-adsf SUBDIR += rubygem-akami SUBDIR += rubygem-amazon-ecs SUBDIR += rubygem-anemone SUBDIR += rubygem-asana SUBDIR += rubygem-async-http SUBDIR += rubygem-async-pool SUBDIR += rubygem-async-rest SUBDIR += rubygem-async-websocket SUBDIR += rubygem-async_sinatra SUBDIR += rubygem-atlassian-jwt SUBDIR += rubygem-best_in_place SUBDIR += rubygem-best_in_place-rails5 SUBDIR += rubygem-bluecloth SUBDIR += rubygem-bootstrap-sass SUBDIR += rubygem-browser SUBDIR += rubygem-cal-heatmap-rails SUBDIR += rubygem-cal-heatmap-rails-rails4 SUBDIR += rubygem-carrierwave SUBDIR += rubygem-cgi SUBDIR += rubygem-cgi_multipart_eof_fix SUBDIR += rubygem-chosen-rails SUBDIR += rubygem-chromedriver-helper SUBDIR += rubygem-cookiejar SUBDIR += rubygem-crass SUBDIR += rubygem-cssbundling-rails SUBDIR += rubygem-cuba SUBDIR += rubygem-d3_rails SUBDIR += rubygem-d3_rails-rails4 SUBDIR += rubygem-davclient SUBDIR += rubygem-deckar01-task_list SUBDIR += rubygem-domainatrix SUBDIR += rubygem-dropzonejs-rails SUBDIR += rubygem-em-http-request SUBDIR += rubygem-em-socksify SUBDIR += rubygem-em-twitter SUBDIR += rubygem-em-websocket SUBDIR += rubygem-emk-sinatra-url-for SUBDIR += rubygem-erubi SUBDIR += rubygem-erubi19 SUBDIR += rubygem-erubis SUBDIR += rubygem-ethon SUBDIR += rubygem-eventmachine_httpserver SUBDIR += rubygem-faraday SUBDIR += rubygem-faraday-em_http SUBDIR += rubygem-faraday-em_synchrony SUBDIR += rubygem-faraday-http-cache SUBDIR += rubygem-faraday-httpclient SUBDIR += rubygem-faraday-httpclient1 SUBDIR += rubygem-faraday-multipart SUBDIR += rubygem-faraday-net_http SUBDIR += rubygem-faraday-net_http1 SUBDIR += rubygem-faraday-net_http_persistent SUBDIR += rubygem-faraday-net_http_persistent1 SUBDIR += rubygem-faraday-patron SUBDIR += rubygem-faraday-patron1 SUBDIR += rubygem-faraday-rack SUBDIR += rubygem-faraday-rack1 SUBDIR += rubygem-faraday-retry SUBDIR += rubygem-faraday-retry1 SUBDIR += rubygem-faraday0 SUBDIR += rubygem-faraday1 SUBDIR += rubygem-faraday14 SUBDIR += rubygem-faraday_middleware SUBDIR += rubygem-faraday_middleware0 SUBDIR += rubygem-faye SUBDIR += rubygem-faye-websocket SUBDIR += rubygem-fcgi SUBDIR += rubygem-feed-normalizer SUBDIR += rubygem-feedjira SUBDIR += rubygem-flowdock SUBDIR += rubygem-fuzzyurl SUBDIR += rubygem-geminabox SUBDIR += rubygem-gitlab-flowdock-git-hook SUBDIR += rubygem-gitlab-gollum-lib SUBDIR += rubygem-gitlab-gollum-rugged_adapter SUBDIR += rubygem-gitlab-turbolinks-classic SUBDIR += rubygem-goldfinger SUBDIR += rubygem-gollum SUBDIR += rubygem-gollum-grit_adapter SUBDIR += rubygem-gollum-grit_adapter10 SUBDIR += rubygem-gollum-lib SUBDIR += rubygem-gollum-rugged_adapter SUBDIR += rubygem-gon-rails5 SUBDIR += rubygem-gon-rails50 SUBDIR += rubygem-gon-rails60 SUBDIR += rubygem-gon-rails61 SUBDIR += rubygem-hackpad-cli SUBDIR += rubygem-haml SUBDIR += rubygem-haml-coderay SUBDIR += rubygem-haml-contrib SUBDIR += rubygem-haml-rails-rails4 SUBDIR += rubygem-hamlit SUBDIR += rubygem-hamlit-rails SUBDIR += rubygem-hamlit-rails-rails5 SUBDIR += rubygem-hamlit-rails-rails50 SUBDIR += rubygem-hashicorp-checkpoint SUBDIR += rubygem-heroics SUBDIR += rubygem-heroku-api SUBDIR += rubygem-heroku-nav SUBDIR += rubygem-hpricot SUBDIR += rubygem-html2haml SUBDIR += rubygem-http SUBDIR += rubygem-http-accept SUBDIR += rubygem-http-cookie SUBDIR += rubygem-http-form_data SUBDIR += rubygem-http3 SUBDIR += rubygem-http4 SUBDIR += rubygem-http_router SUBDIR += rubygem-httparty SUBDIR += rubygem-httpclient SUBDIR += rubygem-httpi SUBDIR += rubygem-hurley SUBDIR += rubygem-importmap-rails SUBDIR += rubygem-innate SUBDIR += rubygem-jekyll SUBDIR += rubygem-jekyll-sanity SUBDIR += rubygem-jekyll-seo-tag SUBDIR += rubygem-jekyll-watch SUBDIR += rubygem-jekyll3 SUBDIR += rubygem-journey SUBDIR += rubygem-jquery-atwho-rails SUBDIR += rubygem-jquery-rails SUBDIR += rubygem-jquery-rails-rails5 SUBDIR += rubygem-jquery-rails-rails50 SUBDIR += rubygem-jquery-scrollto-rails SUBDIR += rubygem-jquery-turbolinks SUBDIR += rubygem-jquery-ui-rails-rails4 SUBDIR += rubygem-jruby-rack SUBDIR += rubygem-jsbundling-rails SUBDIR += rubygem-jsobfu SUBDIR += rubygem-json-jwt SUBDIR += rubygem-jwt SUBDIR += rubygem-jwt21 SUBDIR += rubygem-kaminari SUBDIR += rubygem-kaminari-actionview SUBDIR += rubygem-kaminari-actionview-rails5 SUBDIR += rubygem-kaminari-actionview-rails50 SUBDIR += rubygem-kaminari-actionview-rails52 SUBDIR += rubygem-kaminari-actionview-rails60 SUBDIR += rubygem-kaminari-actionview-rails61 SUBDIR += rubygem-kaminari-activerecord SUBDIR += rubygem-kaminari-activerecord-rails5 SUBDIR += rubygem-kaminari-activerecord-rails50 SUBDIR += rubygem-kaminari-activerecord-rails52 SUBDIR += rubygem-kaminari-activerecord-rails60 SUBDIR += rubygem-kaminari-activerecord-rails61 SUBDIR += rubygem-kaminari-core SUBDIR += rubygem-kaminari-rails4 SUBDIR += rubygem-kaminari-rails5 SUBDIR += rubygem-kaminari-rails50 SUBDIR += rubygem-kaminari-rails52 SUBDIR += rubygem-kaminari-rails60 SUBDIR += rubygem-kaminari-rails61 SUBDIR += rubygem-kubeclient SUBDIR += rubygem-layout_yullio_generator SUBDIR += rubygem-less SUBDIR += rubygem-lighthouse-api SUBDIR += rubygem-link_header SUBDIR += rubygem-llhttp-ffi SUBDIR += rubygem-lograge SUBDIR += rubygem-lograge-rails5 SUBDIR += rubygem-lograge-rails52 SUBDIR += rubygem-lograge-rails60 SUBDIR += rubygem-lograge-rails61 SUBDIR += rubygem-maruku SUBDIR += rubygem-mechanize SUBDIR += rubygem-merb-assets SUBDIR += rubygem-merb-core SUBDIR += rubygem-merb-haml SUBDIR += rubygem-merb-helpers SUBDIR += rubygem-merb-param-protection SUBDIR += rubygem-mousetrap-rails SUBDIR += rubygem-multipart-post SUBDIR += rubygem-nanoc SUBDIR += rubygem-nanoc-checking SUBDIR += rubygem-nanoc-cli SUBDIR += rubygem-nanoc-core SUBDIR += rubygem-nanoc-deploying SUBDIR += rubygem-nested_form SUBDIR += rubygem-net-http SUBDIR += rubygem-net-http-digest_auth SUBDIR += rubygem-net-http-persistent SUBDIR += rubygem-net-http-persistent2 SUBDIR += rubygem-net-http-pipeline SUBDIR += rubygem-nicovideo SUBDIR += rubygem-ntlm-http SUBDIR += rubygem-octopress SUBDIR += rubygem-oembed SUBDIR += rubygem-ostatus2 SUBDIR += rubygem-pagerduty SUBDIR += rubygem-passenger SUBDIR += rubygem-patron SUBDIR += rubygem-platform-api SUBDIR += rubygem-propshaft SUBDIR += rubygem-protocol-hpack SUBDIR += rubygem-protocol-http SUBDIR += rubygem-protocol-http1 SUBDIR += rubygem-protocol-http2 SUBDIR += rubygem-protocol-websocket SUBDIR += rubygem-puma SUBDIR += rubygem-puma_worker_killer SUBDIR += rubygem-pusher-client SUBDIR += rubygem-rabbirack SUBDIR += rubygem-rack SUBDIR += rubygem-rack-accept SUBDIR += rubygem-rack-attack SUBDIR += rubygem-rack-cache SUBDIR += rubygem-rack-contrib SUBDIR += rubygem-rack-cors SUBDIR += rubygem-rack-mount SUBDIR += rubygem-rack-openid SUBDIR += rubygem-rack-protection SUBDIR += rubygem-rack-protection1 SUBDIR += rubygem-rack-proxy SUBDIR += rubygem-rack-ssl SUBDIR += rubygem-rack-test SUBDIR += rubygem-rack-timeout SUBDIR += rubygem-rack16 SUBDIR += rubygem-rack223 SUBDIR += rubygem-rack_csrf SUBDIR += rubygem-rails-settings-cached SUBDIR += rubygem-rails-settings-cached-rails5 SUBDIR += rubygem-rails-settings-cached-rails50 SUBDIR += rubygem-rails4 SUBDIR += rubygem-rails5 SUBDIR += rubygem-rails50 SUBDIR += rubygem-rails52 SUBDIR += rubygem-rails60 SUBDIR += rubygem-rails61 SUBDIR += rubygem-rails70 SUBDIR += rubygem-rails_12factor SUBDIR += rubygem-rails_autolink SUBDIR += rubygem-rails_serve_static_assets SUBDIR += rubygem-rails_stdout_logging SUBDIR += rubygem-railties4 SUBDIR += rubygem-railties5 SUBDIR += rubygem-railties50 SUBDIR += rubygem-railties52 SUBDIR += rubygem-railties60 SUBDIR += rubygem-railties61 SUBDIR += rubygem-railties70 SUBDIR += rubygem-raindrops SUBDIR += rubygem-ramaze SUBDIR += rubygem-raphael-rails SUBDIR += rubygem-rate_throttle_client SUBDIR += rubygem-rbovirt SUBDIR += rubygem-rdf SUBDIR += rubygem-rdf-normalize SUBDIR += rubygem-redcloth SUBDIR += rubygem-redis-rack SUBDIR += rubygem-redis-rails SUBDIR += rubygem-redis-rails-rails5 SUBDIR += rubygem-redis-rails-rails50 SUBDIR += rubygem-redis-rails-rails52 SUBDIR += rubygem-redis-rails-rails60 SUBDIR += rubygem-redis-rails-rails61 SUBDIR += rubygem-responders SUBDIR += rubygem-responders-rails5 SUBDIR += rubygem-responders-rails52 SUBDIR += rubygem-responders-rails60 SUBDIR += rubygem-responders-rails61 SUBDIR += rubygem-responders-rails70 SUBDIR += rubygem-rest-client SUBDIR += rubygem-rfacebook SUBDIR += rubygem-rfeedfinder SUBDIR += rubygem-rinku SUBDIR += rubygem-rkelly-remix SUBDIR += rubygem-robotex SUBDIR += rubygem-robots SUBDIR += rubygem-roda SUBDIR += rubygem-rqrcode SUBDIR += rubygem-rqrcode-rails3 SUBDIR += rubygem-rss SUBDIR += rubygem-rtlit SUBDIR += rubygem-ruby-oembed SUBDIR += rubygem-ruby-readability SUBDIR += rubygem-savon SUBDIR += rubygem-sawyer SUBDIR += rubygem-select2-rails SUBDIR += rubygem-selenium-webdriver SUBDIR += rubygem-semantic-ui-sass SUBDIR += rubygem-simple-rss SUBDIR += rubygem-sinatra SUBDIR += rubygem-sinatra-contrib SUBDIR += rubygem-sinatra-contrib1 SUBDIR += rubygem-sinatra-r18n SUBDIR += rubygem-sinatra-respond_to SUBDIR += rubygem-sinatra1 SUBDIR += rubygem-smashing SUBDIR += rubygem-socksify SUBDIR += rubygem-stimulus-rails SUBDIR += rubygem-swd SUBDIR += rubygem-tailwindcss-rails SUBDIR += rubygem-task_list SUBDIR += rubygem-thin SUBDIR += rubygem-tinyatom SUBDIR += rubygem-tinymce-rails SUBDIR += rubygem-toml-rb SUBDIR += rubygem-totoridipjp SUBDIR += rubygem-tumblr_client SUBDIR += rubygem-turbo-rails SUBDIR += rubygem-turbolinks SUBDIR += rubygem-turbolinks-source SUBDIR += rubygem-typhoeus SUBDIR += rubygem-uglifier SUBDIR += rubygem-underscore-rails SUBDIR += rubygem-unicorn SUBDIR += rubygem-unicorn-worker-killer SUBDIR += rubygem-url_escape SUBDIR += rubygem-url_mount SUBDIR += rubygem-vcr SUBDIR += rubygem-vegas SUBDIR += rubygem-wasabi SUBDIR += rubygem-webdrivers SUBDIR += rubygem-webmock SUBDIR += rubygem-webrick SUBDIR += rubygem-webrobots SUBDIR += rubygem-websocket SUBDIR += rubygem-websocket-client-simple SUBDIR += rubygem-websocket-driver SUBDIR += rubygem-websocket-extensions SUBDIR += rubygem-yapra SUBDIR += s SUBDIR += sabredav SUBDIR += sahi SUBDIR += samdruckerserver SUBDIR += sarg SUBDIR += scloader SUBDIR += screego SUBDIR += script4rss SUBDIR += seahub SUBDIR += searx SUBDIR += selenium SUBDIR += serendipity SUBDIR += serf SUBDIR += servlet-api SUBDIR += sfeed SUBDIR += sfnt2woff SUBDIR += shellinabox SUBDIR += silicon SUBDIR += simple-web-server SUBDIR += sitecopy SUBDIR += slowcgi SUBDIR += slowhttptest SUBDIR += smarty2 SUBDIR += smarty3 SUBDIR += smb_auth SUBDIR += snarf SUBDIR += so SUBDIR += sogo SUBDIR += sogo-activesync SUBDIR += sogo2 SUBDIR += sogo2-activesync SUBDIR += spawn-fcgi SUBDIR += spreadlogd SUBDIR += sqstat SUBDIR += squid SUBDIR += squid-devel SUBDIR += squid_radius_auth SUBDIR += squidanalyzer SUBDIR += squidclamav SUBDIR += squidguard SUBDIR += squidpurge SUBDIR += squidview SUBDIR += srg SUBDIR += srt SUBDIR += stagit SUBDIR += subsonic-standalone SUBDIR += suphp SUBDIR += surf SUBDIR += swiggle SUBDIR += tcexam SUBDIR += tclhttpd SUBDIR += tclwebtest SUBDIR += tdiary SUBDIR += tdom SUBDIR += template_ SUBDIR += templatelite SUBDIR += thirtybees SUBDIR += threejs SUBDIR += threema-web SUBDIR += thttpd SUBDIR += thumbnail_index SUBDIR += thundercache SUBDIR += thundersnarf SUBDIR += tidy SUBDIR += tidy-devel SUBDIR += tidy-html5 SUBDIR += tidy-lib SUBDIR += tikiwiki SUBDIR += tinymce SUBDIR += tinyproxy SUBDIR += tivoka SUBDIR += tntnet SUBDIR += tokyopromenade SUBDIR += tomcat-devel SUBDIR += tomcat-native SUBDIR += tomcat10 SUBDIR += tomcat85 SUBDIR += tomcat9 SUBDIR += tomee SUBDIR += trac-devel SUBDIR += trafficserver SUBDIR += transmission-web SUBDIR += transproxy SUBDIR += tt-rss SUBDIR += ttf2eot SUBDIR += tuifeed SUBDIR += tusc SUBDIR += tusd SUBDIR += twiki SUBDIR += twiki-BehaviourContrib SUBDIR += twiki-BlogAddOn SUBDIR += twiki-BugzillaLinkPlugin SUBDIR += twiki-ClassicSkin SUBDIR += twiki-CommentPlugin SUBDIR += twiki-EditTablePlugin SUBDIR += twiki-EmptyPlugin SUBDIR += twiki-GluePlugin SUBDIR += twiki-InterwikiPlugin SUBDIR += twiki-JSCalendarContrib SUBDIR += twiki-LDAPPasswordChangerPlugin SUBDIR += twiki-LdapContrib SUBDIR += twiki-LdapNgPlugin SUBDIR += twiki-MailerContrib SUBDIR += twiki-MathModePlugin SUBDIR += twiki-NewUserPlugin SUBDIR += twiki-PatternSkin SUBDIR += twiki-PreferencesPlugin SUBDIR += twiki-RenderListPlugin SUBDIR += twiki-SlideShowPlugin SUBDIR += twiki-SmiliesPlugin SUBDIR += twiki-SpreadSheetPlugin SUBDIR += twiki-SubscribePlugin SUBDIR += twiki-TWikiUserMappingContrib SUBDIR += twiki-TablePlugin SUBDIR += twiki-TagMePlugin SUBDIR += twiki-TinyMCEPlugin SUBDIR += twiki-TipsContrib SUBDIR += twiki-TopicVarsPlugin SUBDIR += twiki-TwistyContrib SUBDIR += twiki-TwistyPlugin SUBDIR += twiki-WysiwygPlugin SUBDIR += twms SUBDIR += typo3-10 SUBDIR += typo3-11 SUBDIR += uchiwa SUBDIR += ufdbguard SUBDIR += ulfius SUBDIR += unit SUBDIR += unit-java SUBDIR += unit-perl SUBDIR += unit-php SUBDIR += unit-python SUBDIR += unit-ruby SUBDIR += uwebsockets SUBDIR += uwsgi SUBDIR += uwsgitop SUBDIR += validator SUBDIR += varnish-ip2location SUBDIR += varnish-ip2proxy SUBDIR += varnish-libvmod-digest SUBDIR += varnish-libvmod-dynamic SUBDIR += varnish-libvmod-geoip2 SUBDIR += varnish-libvmod-maxminddb SUBDIR += varnish-libvmod-querystring SUBDIR += varnish-libvmod-redis SUBDIR += varnish-modules SUBDIR += varnish-nagios SUBDIR += varnish4 SUBDIR += varnish6 SUBDIR += varnish7 SUBDIR += varnish_exporter SUBDIR += vdr-plugin-live SUBDIR += vdradmin-am SUBDIR += vertx SUBDIR += vger SUBDIR += vimb SUBDIR += visitors SUBDIR += volta SUBDIR += vultr-cli SUBDIR += w3m SUBDIR += w3m-img SUBDIR += w3mir SUBDIR += wabt SUBDIR += web2ldap SUBDIR += webalizer SUBDIR += webbrowser SUBDIR += webcopy SUBDIR += webcrawl SUBDIR += webfs SUBDIR += webgrind SUBDIR += webhook SUBDIR += webinject SUBDIR += webkit2-gtk3 SUBDIR += webkit2-gtk4 SUBDIR += weblint++ SUBDIR += webpy SUBDIR += webresolve SUBDIR += websh SUBDIR += websocat SUBDIR += websocketd SUBDIR += webstone SUBDIR += webstone-ssl SUBDIR += webtrees SUBDIR += webtrees20 SUBDIR += wget2 SUBDIR += wgetpaste SUBDIR += wikicalc SUBDIR += wordpress SUBDIR += wpebackend-fdo SUBDIR += writeas-cli SUBDIR += writefreely SUBDIR += wsdlpull SUBDIR += wslay SUBDIR += wsmake SUBDIR += wt SUBDIR += wuzz SUBDIR += wwwoffle SUBDIR += xapian-omega SUBDIR += xapian-omega12 SUBDIR += xcaddy SUBDIR += xfce4-smartbookmark-plugin SUBDIR += xh SUBDIR += xist SUBDIR += xoops SUBDIR += xsp SUBDIR += yabb SUBDIR += yanopaste SUBDIR += yarn SUBDIR += yarn-node14 SUBDIR += yarn-node16 SUBDIR += yarn-node18 SUBDIR += yarr SUBDIR += yaws SUBDIR += you-get SUBDIR += yourls SUBDIR += youtube_dl SUBDIR += yt-dlp SUBDIR += ytdl SUBDIR += yuicompressor SUBDIR += zend-framework SUBDIR += zenphoto SUBDIR += zerowait-httpd SUBDIR += zola .include diff --git a/x11-toolkits/Makefile b/x11-toolkits/Makefile index d34fa4bc269e..0ce4d13b90e2 100644 --- a/x11-toolkits/Makefile +++ b/x11-toolkits/Makefile @@ -1,233 +1,237 @@ COMMENT = X11 toolkits SUBDIR += SoXt SUBDIR += Xaw3d SUBDIR += Xmt SUBDIR += amtk SUBDIR += blt SUBDIR += bwidget SUBDIR += color-widgets-qt5 SUBDIR += copperspice SUBDIR += ctk SUBDIR += fltk SUBDIR += fox14 SUBDIR += fox16 SUBDIR += fox17 SUBDIR += fpc-gtk2 SUBDIR += fpc-xforms SUBDIR += fxscintilla SUBDIR += gdl SUBDIR += girara SUBDIR += gnocl SUBDIR += gnome-pty-helper SUBDIR += gnustep-back SUBDIR += gnustep-gui SUBDIR += granite SUBDIR += granite7 SUBDIR += gstreamer1-plugins-gtk SUBDIR += gstreamer1-plugins-gtk4 SUBDIR += gstreamer1-plugins-pango SUBDIR += gtk-layer-shell SUBDIR += gtk-sharp-beans SUBDIR += gtk-sharp20 SUBDIR += gtk-sharp30 SUBDIR += gtk20 SUBDIR += gtk30 SUBDIR += gtk40 SUBDIR += gtkd SUBDIR += gtkdatabox SUBDIR += gtkextra SUBDIR += gtkglarea2 SUBDIR += gtkglext SUBDIR += gtkglextmm SUBDIR += gtkimageview SUBDIR += gtkmathview SUBDIR += gtkmm24 SUBDIR += gtkmm30 SUBDIR += gtksourceview2 SUBDIR += gtksourceview3 SUBDIR += gtksourceview4 SUBDIR += gtksourceview5 SUBDIR += gtksourceviewmm3 SUBDIR += guile-gnome-platform SUBDIR += irrlicht SUBDIR += itk SUBDIR += iwidgets SUBDIR += kf5-attica SUBDIR += kf5-kcompletion SUBDIR += kf5-kconfigwidgets SUBDIR += kf5-kdesignerplugin SUBDIR += kf5-kguiaddons SUBDIR += kf5-kirigami2 SUBDIR += kf5-kitemviews SUBDIR += kf5-kjobwidgets SUBDIR += kf5-ktextwidgets SUBDIR += kf5-kwidgetsaddons SUBDIR += kf5-kxmlgui SUBDIR += kproperty SUBDIR += lesstif SUBDIR += libXaw SUBDIR += libXmu SUBDIR += libXt SUBDIR += libadwaita SUBDIR += libdazzle SUBDIR += libdecor SUBDIR += libgdiplus SUBDIR += libhandy SUBDIR += libhandy0 SUBDIR += libsexy SUBDIR += libunique3 SUBDIR += libwnck SUBDIR += libwnck3 SUBDIR += libxaw3dxft SUBDIR += linux-c7-gtk2 SUBDIR += linux-c7-gtk3 SUBDIR += linux-c7-openmotif SUBDIR += linux-c7-pango SUBDIR += linux-c7-qt-x11 SUBDIR += linux-c7-tk85 SUBDIR += movingmotif SUBDIR += mowitz SUBDIR += mygui SUBDIR += mygui-dummy SUBDIR += mygui-ogre SUBDIR += mygui-opengl SUBDIR += nanogui SUBDIR += neXtaw SUBDIR += ntk SUBDIR += nuklear SUBDIR += ocaml-lablgtk2 SUBDIR += ocaml-labltk SUBDIR += open-motif SUBDIR += open-motif-devel SUBDIR += osm-gps-map SUBDIR += otk SUBDIR += p5-Alien-wxWidgets SUBDIR += p5-Glade2 SUBDIR += p5-Gtk2 SUBDIR += p5-Gtk2-Chmod SUBDIR += p5-Gtk2-Ex-Dialogs SUBDIR += p5-Gtk2-Ex-FormFactory SUBDIR += p5-Gtk2-Ex-PodViewer SUBDIR += p5-Gtk2-Ex-Simple-List SUBDIR += p5-Gtk2-Ex-Utils SUBDIR += p5-Gtk2-GladeXML SUBDIR += p5-Gtk2-ImageView SUBDIR += p5-Gtk2-PathButtonBar SUBDIR += p5-Gtk2-TrayIcon SUBDIR += p5-Gtk3 SUBDIR += p5-Gtk3-ImageView SUBDIR += p5-Gtk3-SimpleList SUBDIR += p5-Pango SUBDIR += p5-Prima SUBDIR += p5-Tk SUBDIR += p5-Tk-Action SUBDIR += p5-Tk-Autoscroll SUBDIR += p5-Tk-ColourChooser SUBDIR += p5-Tk-Contrib SUBDIR += p5-Tk-CursorControl SUBDIR += p5-Tk-DKW SUBDIR += p5-Tk-Date SUBDIR += p5-Tk-DynaTabFrame SUBDIR += p5-Tk-Enscript SUBDIR += p5-Tk-FileDialog SUBDIR += p5-Tk-FontDialog SUBDIR += p5-Tk-GBARR SUBDIR += p5-Tk-Getopt SUBDIR += p5-Tk-HistEntry SUBDIR += p5-Tk-JComboBox SUBDIR += p5-Tk-ResizeButton SUBDIR += p5-Tk-Role-Dialog SUBDIR += p5-Tk-Role-HasWidgets SUBDIR += p5-Tk-Splashscreen SUBDIR += p5-Tk-Sugar SUBDIR += p5-Tk-TableMatrix SUBDIR += p5-Tk-ToolBar SUBDIR += p5-Tk-WaitBox SUBDIR += pango SUBDIR += pangolin SUBDIR += pangomm SUBDIR += pangox-compat SUBDIR += plasma5-kdeplasma-addons SUBDIR += plib SUBDIR += py-AnyQt SUBDIR += py-Pmw SUBDIR += py-awesometkinter SUBDIR += py-easygui SUBDIR += py-fltk SUBDIR += py-guietta SUBDIR += py-python-xlib SUBDIR += py-qt5-chart SUBDIR += py-tkinter SUBDIR += py-tktreectrl SUBDIR += py-wxPython4 SUBDIR += qml-box2d SUBDIR += qt5-charts SUBDIR += qt5-datavis3d SUBDIR += qt5-declarative SUBDIR += qt5-declarative-test SUBDIR += qt5-gamepad SUBDIR += qt5-gui SUBDIR += qt5-quick3d SUBDIR += qt5-quickcontrols SUBDIR += qt5-quickcontrols2 SUBDIR += qt5-quicktimeline SUBDIR += qt5-uiplugin SUBDIR += qt5-virtualkeyboard SUBDIR += qt5-widgets SUBDIR += qt5pas + SUBDIR += qt6-declarative + SUBDIR += qt6-quick3d + SUBDIR += qt6-quicktimeline + SUBDIR += qt6-shadertools SUBDIR += qtermwidget SUBDIR += qwt5-qt5 SUBDIR += qwt6 SUBDIR += redkite SUBDIR += rep-gtk2 SUBDIR += rubygem-gdk3 SUBDIR += rubygem-gdk4 SUBDIR += rubygem-gtk2 SUBDIR += rubygem-gtk3 SUBDIR += rubygem-gtk4 SUBDIR += rubygem-gtksourceview3 SUBDIR += rubygem-gtksourceview4 SUBDIR += rubygem-pango SUBDIR += rubygem-poppler SUBDIR += rubygem-tk SUBDIR += rubygem-uh SUBDIR += rubygem-vte3 SUBDIR += scintilla SUBDIR += sdl_pango SUBDIR += shared-desktop-ontologies SUBDIR += skinlf SUBDIR += soqt SUBDIR += swt SUBDIR += tepl6 SUBDIR += termit SUBDIR += tix SUBDIR += tk-wrapper SUBDIR += tk85 SUBDIR += tk86 SUBDIR += tk87 SUBDIR += tkdnd SUBDIR += tkshape SUBDIR += tktable SUBDIR += tktray SUBDIR += tktreectrl SUBDIR += unique SUBDIR += vdk SUBDIR += viewklass SUBDIR += vte SUBDIR += vte3 SUBDIR += wlroots SUBDIR += wlroots-devel SUBDIR += wmapp SUBDIR += wxgtk28 SUBDIR += wxgtk28-common SUBDIR += wxgtk28-contrib SUBDIR += wxgtk28-contrib-common SUBDIR += wxgtk30 SUBDIR += wxgtk31 SUBDIR += xbae SUBDIR += xforms SUBDIR += xmhtml SUBDIR += ztoolkit .include diff --git a/x11-toolkits/qt6-declarative/Makefile b/x11-toolkits/qt6-declarative/Makefile new file mode 100644 index 000000000000..05b2eeb9059c --- /dev/null +++ b/x11-toolkits/qt6-declarative/Makefile @@ -0,0 +1,44 @@ +PORTNAME= declarative +DISTVERSION= ${QT6_VERSION} +CATEGORIES= x11-toolkits +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Qt declarative framework for dynamic user interfaces + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicudata.so:devel/icu \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome pkgconfig python:3.5+ xorg \ + qt-dist:6 +USE_GL= gl +USE_GNOME= glib20 +USE_QT= base shadertools +USE_XORG= x11 xau xcb xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +post-patch: + ${REINPLACE_CMD} -e "s#python3#${PYTHON_CMD}#g" ${WRKSRC}/cmake/QtDeclarativeSetup.cmake + +# TODO: do this cleaner +post-install: + ${RM} -vr ${STAGEDIR}${PREFIX}/${QT_LIBDIR_REL}/cmake + # Install symlinks for user-facing tools + ${REINPLACE_CMD} -e "s#^#${STAGEDIR}#" -e "s# # ${STAGEDIR}#" \ + ${WRKDIR}/.build/user_facing_tool_links.txt + while read t; do \ + ${RLN} $$t; \ + done <${WRKDIR}/.build/user_facing_tool_links.txt + +.include diff --git a/x11-toolkits/qt6-declarative/distinfo b/x11-toolkits/qt6-declarative/distinfo new file mode 100644 index 000000000000..8d41b37381bb --- /dev/null +++ b/x11-toolkits/qt6-declarative/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482621 +SHA256 (KDE/Qt/6.3.1/qtdeclarative-everywhere-src-6.3.1.tar.xz) = 03e7694123820fcca397f95ce312e0b7f3039493c8754c836da098a1a04346e8 +SIZE (KDE/Qt/6.3.1/qtdeclarative-everywhere-src-6.3.1.tar.xz) = 30098680 diff --git a/x11-toolkits/qt6-declarative/pkg-descr b/x11-toolkits/qt6-declarative/pkg-descr new file mode 100644 index 000000000000..06bb1d9109d5 --- /dev/null +++ b/x11-toolkits/qt6-declarative/pkg-descr @@ -0,0 +1,7 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Qt Quick is a collection of technologies that are designed to help +developers create intuitive, modern, and fluid user interfaces. + +WWW: http://qt-project.org diff --git a/x11-toolkits/qt6-declarative/pkg-plist b/x11-toolkits/qt6-declarative/pkg-plist new file mode 100644 index 000000000000..f5a0f4402802 --- /dev/null +++ b/x11-toolkits/qt6-declarative/pkg-plist @@ -0,0 +1,2622 @@ +bin/qml6 +bin/qmleasing6 +bin/qmlpreview6 +bin/qmlscene6 +%%QT_INCDIR%%/QtLabsAnimation/%%FULLVER%%/QtLabsAnimation/private/qqmlanimationglobal_p.h +%%QT_INCDIR%%/QtLabsAnimation/%%FULLVER%%/QtLabsAnimation/private/qquickboundaryrule_p.h +%%QT_INCDIR%%/QtLabsAnimation/%%FULLVER%%/QtLabsAnimation/private/qtlabsanimationexports_p.h +%%QT_INCDIR%%/QtLabsAnimation/QtLabsAnimation +%%QT_INCDIR%%/QtLabsAnimation/QtLabsAnimationDepends +%%QT_INCDIR%%/QtLabsAnimation/QtLabsAnimationVersion +%%QT_INCDIR%%/QtLabsAnimation/qtlabsanimationexports.h +%%QT_INCDIR%%/QtLabsAnimation/qtlabsanimationversion.h +%%QT_INCDIR%%/QtLabsFolderListModel/%%FULLVER%%/QtLabsFolderListModel/private/fileinfothread_p.h +%%QT_INCDIR%%/QtLabsFolderListModel/%%FULLVER%%/QtLabsFolderListModel/private/fileproperty_p.h +%%QT_INCDIR%%/QtLabsFolderListModel/%%FULLVER%%/QtLabsFolderListModel/private/qquickfolderlistmodel_p.h +%%QT_INCDIR%%/QtLabsFolderListModel/%%FULLVER%%/QtLabsFolderListModel/private/qquickfolderlistmodelglobal_p.h +%%QT_INCDIR%%/QtLabsFolderListModel/%%FULLVER%%/QtLabsFolderListModel/private/qtlabsfolderlistmodelexports_p.h +%%QT_INCDIR%%/QtLabsFolderListModel/QtLabsFolderListModel +%%QT_INCDIR%%/QtLabsFolderListModel/QtLabsFolderListModelDepends +%%QT_INCDIR%%/QtLabsFolderListModel/QtLabsFolderListModelVersion +%%QT_INCDIR%%/QtLabsFolderListModel/qtlabsfolderlistmodelexports.h +%%QT_INCDIR%%/QtLabsFolderListModel/qtlabsfolderlistmodelversion.h +%%QT_INCDIR%%/QtLabsQmlModels/%%FULLVER%%/QtLabsQmlModels/private/qqmldelegatecomponent_p.h +%%QT_INCDIR%%/QtLabsQmlModels/%%FULLVER%%/QtLabsQmlModels/private/qqmlmodelsglobal_p.h +%%QT_INCDIR%%/QtLabsQmlModels/%%FULLVER%%/QtLabsQmlModels/private/qqmltablemodel_p.h +%%QT_INCDIR%%/QtLabsQmlModels/%%FULLVER%%/QtLabsQmlModels/private/qqmltablemodelcolumn_p.h +%%QT_INCDIR%%/QtLabsQmlModels/%%FULLVER%%/QtLabsQmlModels/private/qtlabsqmlmodelsexports_p.h +%%QT_INCDIR%%/QtLabsQmlModels/QtLabsQmlModels +%%QT_INCDIR%%/QtLabsQmlModels/QtLabsQmlModelsDepends +%%QT_INCDIR%%/QtLabsQmlModels/QtLabsQmlModelsVersion +%%QT_INCDIR%%/QtLabsQmlModels/qtlabsqmlmodelsexports.h +%%QT_INCDIR%%/QtLabsQmlModels/qtlabsqmlmodelsversion.h +%%QT_INCDIR%%/QtLabsSettings/%%FULLVER%%/QtLabsSettings/private/qqmlsettings_p.h +%%QT_INCDIR%%/QtLabsSettings/%%FULLVER%%/QtLabsSettings/private/qqmlsettingsglobal_p.h +%%QT_INCDIR%%/QtLabsSettings/%%FULLVER%%/QtLabsSettings/private/qtlabssettingsexports_p.h +%%QT_INCDIR%%/QtLabsSettings/QtLabsSettings +%%QT_INCDIR%%/QtLabsSettings/QtLabsSettingsDepends +%%QT_INCDIR%%/QtLabsSettings/QtLabsSettingsVersion +%%QT_INCDIR%%/QtLabsSettings/qtlabssettingsexports.h +%%QT_INCDIR%%/QtLabsSettings/qtlabssettingsversion.h +%%QT_INCDIR%%/QtLabsSharedImage/%%FULLVER%%/QtLabsSharedImage/private/qsharedimageloader_p.h +%%QT_INCDIR%%/QtLabsSharedImage/%%FULLVER%%/QtLabsSharedImage/private/qsharedimageprovider_p.h +%%QT_INCDIR%%/QtLabsSharedImage/%%FULLVER%%/QtLabsSharedImage/private/qtlabssharedimageexports_p.h +%%QT_INCDIR%%/QtLabsSharedImage/%%FULLVER%%/QtLabsSharedImage/private/qtlabssharedimageglobal_p.h +%%QT_INCDIR%%/QtLabsSharedImage/QtLabsSharedImage +%%QT_INCDIR%%/QtLabsSharedImage/QtLabsSharedImageDepends +%%QT_INCDIR%%/QtLabsSharedImage/QtLabsSharedImageVersion +%%QT_INCDIR%%/QtLabsSharedImage/qtlabssharedimageexports.h +%%QT_INCDIR%%/QtLabsSharedImage/qtlabssharedimageversion.h +%%QT_INCDIR%%/QtLabsWavefrontMesh/%%FULLVER%%/QtLabsWavefrontMesh/private/qqmlwavefrontmeshglobal_p.h +%%QT_INCDIR%%/QtLabsWavefrontMesh/%%FULLVER%%/QtLabsWavefrontMesh/private/qtlabswavefrontmeshexports_p.h +%%QT_INCDIR%%/QtLabsWavefrontMesh/%%FULLVER%%/QtLabsWavefrontMesh/private/qwavefrontmesh_p.h +%%QT_INCDIR%%/QtLabsWavefrontMesh/QtLabsWavefrontMesh +%%QT_INCDIR%%/QtLabsWavefrontMesh/QtLabsWavefrontMeshDepends +%%QT_INCDIR%%/QtLabsWavefrontMesh/QtLabsWavefrontMeshVersion +%%QT_INCDIR%%/QtLabsWavefrontMesh/qtlabswavefrontmeshexports.h +%%QT_INCDIR%%/QtLabsWavefrontMesh/qtlabswavefrontmeshversion.h +%%QT_INCDIR%%/QtPacketProtocol/%%FULLVER%%/QtPacketProtocol/private/qpacket_p.h +%%QT_INCDIR%%/QtPacketProtocol/%%FULLVER%%/QtPacketProtocol/private/qpacketprotocol_p.h +%%QT_INCDIR%%/QtPacketProtocol/%%FULLVER%%/QtPacketProtocol/private/qversionedpacket_p.h +%%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocol +%%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocolDepends +%%QT_INCDIR%%/QtPacketProtocol/QtPacketProtocolVersion +%%QT_INCDIR%%/QtPacketProtocol/qtpacketprotocolversion.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/inlinecomponentutils_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qabstractanimationjob_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qanimationgroupjob_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qanimationjobutil_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qbipointer_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qcontinuinganimationgroupjob_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qdoubleendedlist_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qfieldlist_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qfinitestack_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qhashedstring_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qintrusivelist_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsengine_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsvalue_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qjsvalueiterator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qlazilyallocated_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qlinkedstringhash_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qml_compile_hash_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qparallelanimationgroupjob_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qpauseanimationjob_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qpodvector_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qprimefornumbits_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlabstractbinding_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlabstractprofileradapter_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlanybinding_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlapplicationengine_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbind_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbinding_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlboundsignal_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlbuiltinfunctions_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcomponent_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcomponentattached_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlconfigurabledebugservice_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlconnections_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcontext_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcontextdata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcppbinding_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcpponassignment_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlcustomparser_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldatablob_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugconnector_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugpluginmanager_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugserver_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugserverconnection_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugservice_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugservicefactory_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugserviceinterfaces_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugstatesdelegate_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldebugtranslationprotocol_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldelayedcallqueue_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldirdata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmldirparser_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlengine_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlenumdata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlenumvalue_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlexpression_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlextensionplugin_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlfileselector_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlfinalizer_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlglobal_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlguard_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlguardedcontextdata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlimport_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlimportresolver_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlincubator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlirbuilder_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlirloader_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljavascriptexpression_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsast_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsastfwd_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsastvisitor_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsdiagnosticmessage_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsengine_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsfixedpoolarray_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsglobal_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsgrammar_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljskeywords_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljslexer_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsmemorypool_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljsparser_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmljssourcelocation_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllist_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllistwrapper_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmllocale_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlloggingcategory_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmetaobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmetatype_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlmetatypedata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlnotifier_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlnullablevalue_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlobjectcreator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlobjectorgadget_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlopenmetaobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlplatform_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpluginimporter_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlprofiler_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlprofilerdefinitions_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlproperty_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertybinding_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertycache_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertycachecreator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertycachemethodarguments_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertycachevector_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertydata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertyindex_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertyresolver_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertyvalidator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlpropertyvalueinterceptor_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlproxymetaobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlrefcount_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlscriptblob_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlscriptdata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlscriptstring_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlsourcecoordinate_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlstringconverters_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltcobjectcreationhelper_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlthread_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltimer_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltype_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltype_p_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypecompiler_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypedata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypeloader_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypeloadernetworkreplyproxy_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypeloaderqmldircontent_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypeloaderthread_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypemodule_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypemoduleversion_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypenamecache_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypenotavailable_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmltypewrapper_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetype_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetypeproxybinding_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvaluetypewrapper_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvme_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlvmemetaobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qqmlxmlhttprequest_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qrecursionwatcher_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qrecyclepool_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qsequentialanimationgroupjob_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qstringhash_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qtqml-config_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qtqmlcompilerglobal_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qtqmlexports_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qtqmlglobal_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4alloca_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4argumentsobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arraybuffer_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arraydata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arrayiterator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4arrayobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4assemblercommon_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4atomics_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4baselineassembler_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4baselinejit_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4booleanobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4bytecodegenerator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4bytecodehandler_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4calldata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4codegen_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilationunitmapper_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compileddata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compiler_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilercontext_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilercontrolflow_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilerglobal_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4compilerscanfunctions_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4context_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4dataview_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4dateobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4debugging_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4domerrors_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4engine_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4enginebase_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4errorobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4estable_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4executableallocator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4executablecompilationunit_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4function_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4functionobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4functiontable_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4generatorobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4global_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4globalobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4heap_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4identifierhash_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4identifierhashdata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4identifiertable_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4include_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4instr_moth_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4internalclass_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4iterator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4jscall_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4jsonobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4lookup_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4managed_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mapiterator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mapobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4math_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mathobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4memberdata_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mm_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4mmdefs_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4module_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4numberobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4object_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4objectiterator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4objectproto_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4persistent_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4profiling_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4promiseobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4property_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4propertykey_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4proxy_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4qmlcontext_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4qobjectwrapper_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4reflect_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4regexp_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4regexpobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4resolvedtypereference_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4runtime_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4runtimeapi_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4runtimecodegen_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4scopedvalue_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4script_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sequenceobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4setiterator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4setobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sparsearray_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4sqlerrors_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4stackframe_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4staticvalue_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4string_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4stringiterator_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4stringobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4stringtoarrayindex_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4symbol_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4typedarray_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4urlobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4util_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4value_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4variantobject_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4vme_moth_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4vtable_p.h +%%QT_INCDIR%%/QtQml/%%FULLVER%%/QtQml/private/qv4writebarrier_p.h +%%QT_INCDIR%%/QtQml/QJSEngine +%%QT_INCDIR%%/QtQml/QJSManagedValue +%%QT_INCDIR%%/QtQml/QJSNumberCoercion +%%QT_INCDIR%%/QtQml/QJSPrimitiveNull +%%QT_INCDIR%%/QtQml/QJSPrimitiveUndefined +%%QT_INCDIR%%/QtQml/QJSPrimitiveValue +%%QT_INCDIR%%/QtQml/QJSValue +%%QT_INCDIR%%/QtQml/QJSValueIterator +%%QT_INCDIR%%/QtQml/QJSValueList +%%QT_INCDIR%%/QtQml/QQmlAbstractUrlInterceptor +%%QT_INCDIR%%/QtQml/QQmlApplicationEngine +%%QT_INCDIR%%/QtQml/QQmlComponent +%%QT_INCDIR%%/QtQml/QQmlContext +%%QT_INCDIR%%/QtQml/QQmlDebuggingEnabler +%%QT_INCDIR%%/QtQml/QQmlEngine +%%QT_INCDIR%%/QtQml/QQmlEngineExtensionInterface +%%QT_INCDIR%%/QtQml/QQmlEngineExtensionPlugin +%%QT_INCDIR%%/QtQml/QQmlError +%%QT_INCDIR%%/QtQml/QQmlExpression +%%QT_INCDIR%%/QtQml/QQmlExtensionInterface +%%QT_INCDIR%%/QtQml/QQmlExtensionPlugin +%%QT_INCDIR%%/QtQml/QQmlFile +%%QT_INCDIR%%/QtQml/QQmlFileSelector +%%QT_INCDIR%%/QtQml/QQmlImageProviderBase +%%QT_INCDIR%%/QtQml/QQmlIncubationController +%%QT_INCDIR%%/QtQml/QQmlIncubator +%%QT_INCDIR%%/QtQml/QQmlInfo +%%QT_INCDIR%%/QtQml/QQmlListProperty +%%QT_INCDIR%%/QtQml/QQmlListReference +%%QT_INCDIR%%/QtQml/QQmlModuleRegistration +%%QT_INCDIR%%/QtQml/QQmlNetworkAccessManagerFactory +%%QT_INCDIR%%/QtQml/QQmlParserStatus +%%QT_INCDIR%%/QtQml/QQmlProperties +%%QT_INCDIR%%/QtQml/QQmlProperty +%%QT_INCDIR%%/QtQml/QQmlPropertyMap +%%QT_INCDIR%%/QtQml/QQmlPropertyValueSource +%%QT_INCDIR%%/QtQml/QQmlScriptString +%%QT_INCDIR%%/QtQml/QQmlTypeInfo +%%QT_INCDIR%%/QtQml/QQmlTypesExtensionInterface +%%QT_INCDIR%%/QtQml/QmlTypeAndRevisionsRegistration +%%QT_INCDIR%%/QtQml/QtQml +%%QT_INCDIR%%/QtQml/QtQmlDepends +%%QT_INCDIR%%/QtQml/QtQmlVersion +%%QT_INCDIR%%/QtQml/qjsengine.h +%%QT_INCDIR%%/QtQml/qjsmanagedvalue.h +%%QT_INCDIR%%/QtQml/qjsnumbercoercion.h +%%QT_INCDIR%%/QtQml/qjsprimitivevalue.h +%%QT_INCDIR%%/QtQml/qjsvalue.h +%%QT_INCDIR%%/QtQml/qjsvalueiterator.h +%%QT_INCDIR%%/QtQml/qqml.h +%%QT_INCDIR%%/QtQml/qqmlabstracturlinterceptor.h +%%QT_INCDIR%%/QtQml/qqmlapplicationengine.h +%%QT_INCDIR%%/QtQml/qqmlcomponent.h +%%QT_INCDIR%%/QtQml/qqmlcontext.h +%%QT_INCDIR%%/QtQml/qqmldebug.h +%%QT_INCDIR%%/QtQml/qqmlengine.h +%%QT_INCDIR%%/QtQml/qqmlerror.h +%%QT_INCDIR%%/QtQml/qqmlexpression.h +%%QT_INCDIR%%/QtQml/qqmlextensioninterface.h +%%QT_INCDIR%%/QtQml/qqmlextensionplugin.h +%%QT_INCDIR%%/QtQml/qqmlfile.h +%%QT_INCDIR%%/QtQml/qqmlfileselector.h +%%QT_INCDIR%%/QtQml/qqmlincubator.h +%%QT_INCDIR%%/QtQml/qqmlinfo.h +%%QT_INCDIR%%/QtQml/qqmllist.h +%%QT_INCDIR%%/QtQml/qqmlmoduleregistration.h +%%QT_INCDIR%%/QtQml/qqmlnetworkaccessmanagerfactory.h +%%QT_INCDIR%%/QtQml/qqmlparserstatus.h +%%QT_INCDIR%%/QtQml/qqmlprivate.h +%%QT_INCDIR%%/QtQml/qqmlproperty.h +%%QT_INCDIR%%/QtQml/qqmlpropertymap.h +%%QT_INCDIR%%/QtQml/qqmlpropertyvaluesource.h +%%QT_INCDIR%%/QtQml/qqmlregistration.h +%%QT_INCDIR%%/QtQml/qqmlscriptstring.h +%%QT_INCDIR%%/QtQml/qtqml-config.h +%%QT_INCDIR%%/QtQml/qtqmlcompilerglobal.h +%%QT_INCDIR%%/QtQml/qtqmlexports.h +%%QT_INCDIR%%/QtQml/qtqmlglobal.h +%%QT_INCDIR%%/QtQml/qtqmlversion.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qcoloroutput_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qdeferredpointer_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsannotation_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljscodegenerator_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljscompilepass_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljscompiler_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsfunctioninitializer_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsimporter_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsimportvisitor_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsliteralbindingcheck_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsloadergenerator_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljslogger_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsmetatypes_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsregistercontent_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsresourcefilemapper_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsscope_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsscopesbyid_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsshadowcheck_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsstoragegeneralizer_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsstreamwriter_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljstypedescriptionreader_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljstypepropagator_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljstypereader_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljstyperesolver_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qqmljsutils_p.h +%%QT_INCDIR%%/QtQmlCompiler/%%FULLVER%%/QtQmlCompiler/private/qresourcerelocater_p.h +%%QT_INCDIR%%/QtQmlCompiler/QtQmlCompiler +%%QT_INCDIR%%/QtQmlCompiler/QtQmlCompilerDepends +%%QT_INCDIR%%/QtQmlCompiler/QtQmlCompilerVersion +%%QT_INCDIR%%/QtQmlCompiler/qtqmlcompilerversion.h +%%QT_INCDIR%%/QtQmlCore/%%FULLVER%%/QtQmlCore/private/qqmlcoreglobal_p.h +%%QT_INCDIR%%/QtQmlCore/%%FULLVER%%/QtQmlCore/private/qqmlstandardpaths_p.h +%%QT_INCDIR%%/QtQmlCore/%%FULLVER%%/QtQmlCore/private/qtqmlcoreexports_p.h +%%QT_INCDIR%%/QtQmlCore/QtQmlCore +%%QT_INCDIR%%/QtQmlCore/QtQmlCoreDepends +%%QT_INCDIR%%/QtQmlCore/QtQmlCoreVersion +%%QT_INCDIR%%/QtQmlCore/qtqmlcoreexports.h +%%QT_INCDIR%%/QtQmlCore/qtqmlcoreversion.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugclient_p_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugconnection_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugmessageclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmldebugtranslationclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginecontrolclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginecontrolclient_p_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginedebugclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlenginedebugclient_p_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlinspectorclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlinspectorclient_p_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlpreviewclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlpreviewclient_p_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerclient_p_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerclientdefinitions_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilerevent_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilereventlocation_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilereventreceiver_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilereventtype_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qqmlprofilertypedevent_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qv4debugclient_p.h +%%QT_INCDIR%%/QtQmlDebug/%%FULLVER%%/QtQmlDebug/private/qv4debugclient_p_p.h +%%QT_INCDIR%%/QtQmlDebug/QtQmlDebug +%%QT_INCDIR%%/QtQmlDebug/QtQmlDebugDepends +%%QT_INCDIR%%/QtQmlDebug/QtQmlDebugVersion +%%QT_INCDIR%%/QtQmlDebug/qtqmldebugversion.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldom_fwd_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomastcreator_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomastdumper_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomattachedinfo_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomcomments_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomcompare_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomconstants_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomelements_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomerrormessage_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomexternalitems_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomfieldfilter_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomfilewriter_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomfunctionref_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomitem_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomlinewriter_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldommock_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldommoduleindex_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomoutwriter_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldompath_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomreformatter_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomstringdumper_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomtop_p.h +%%QT_INCDIR%%/QtQmlDom/%%FULLVER%%/QtQmlDom/private/qqmldomtypesreader_p.h +%%QT_INCDIR%%/QtQmlDom/QtQmlDom +%%QT_INCDIR%%/QtQmlDom/QtQmlDomDepends +%%QT_INCDIR%%/QtQmlDom/QtQmlDomVersion +%%QT_INCDIR%%/QtQmlDom/qqmldom_global.h +%%QT_INCDIR%%/QtQmlDom/qtqmldomversion.h +%%QT_INCDIR%%/QtQmlIntegration/QtQmlIntegration +%%QT_INCDIR%%/QtQmlIntegration/QtQmlIntegrationDepends +%%QT_INCDIR%%/QtQmlIntegration/QtQmlIntegrationVersion +%%QT_INCDIR%%/QtQmlIntegration/qqmlintegration.h +%%QT_INCDIR%%/QtQmlIntegration/qtqmlintegrationversion.h +%%QT_INCDIR%%/QtQmlLint/%%FULLVER%%/QtQmlLint/private/codegen_p.h +%%QT_INCDIR%%/QtQmlLint/%%FULLVER%%/QtQmlLint/private/codegenwarninginterface_p.h +%%QT_INCDIR%%/QtQmlLint/%%FULLVER%%/QtQmlLint/private/findwarnings_p.h +%%QT_INCDIR%%/QtQmlLint/%%FULLVER%%/QtQmlLint/private/qqmllinter_p.h +%%QT_INCDIR%%/QtQmlLint/QtQmlLint +%%QT_INCDIR%%/QtQmlLint/QtQmlLintDepends +%%QT_INCDIR%%/QtQmlLint/QtQmlLintVersion +%%QT_INCDIR%%/QtQmlLint/qtqmllintversion.h +%%QT_INCDIR%%/QtQmlLocalStorage/%%FULLVER%%/QtQmlLocalStorage/private/qqmllocalstorage_p.h +%%QT_INCDIR%%/QtQmlLocalStorage/%%FULLVER%%/QtQmlLocalStorage/private/qqmllocalstorageglobal_p.h +%%QT_INCDIR%%/QtQmlLocalStorage/%%FULLVER%%/QtQmlLocalStorage/private/qtqmllocalstorageexports_p.h +%%QT_INCDIR%%/QtQmlLocalStorage/QtQmlLocalStorage +%%QT_INCDIR%%/QtQmlLocalStorage/QtQmlLocalStorageDepends +%%QT_INCDIR%%/QtQmlLocalStorage/QtQmlLocalStorageVersion +%%QT_INCDIR%%/QtQmlLocalStorage/qtqmllocalstorageexports.h +%%QT_INCDIR%%/QtQmlLocalStorage/qtqmllocalstorageversion.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmlabstractdelegatecomponent_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmladaptormodel_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmlchangeset_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmldelegatemodel_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmldelegatemodel_p_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmlinstantiator_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmlinstantiator_p_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmllistaccessor_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmllistcompositor_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmllistmodel_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmllistmodel_p_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmllistmodelworkeragent_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmlmodelindexvaluetype_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmlmodelsmodule_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmlobjectmodel_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmltableinstancemodel_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qqmltreemodeltotablemodel_p_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qquickpackage_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qtqmlmodels-config_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qtqmlmodelsexports_p.h +%%QT_INCDIR%%/QtQmlModels/%%FULLVER%%/QtQmlModels/private/qtqmlmodelsglobal_p.h +%%QT_INCDIR%%/QtQmlModels/QtQmlModels +%%QT_INCDIR%%/QtQmlModels/QtQmlModelsDepends +%%QT_INCDIR%%/QtQmlModels/QtQmlModelsVersion +%%QT_INCDIR%%/QtQmlModels/qtqmlmodels-config.h +%%QT_INCDIR%%/QtQmlModels/qtqmlmodelsexports.h +%%QT_INCDIR%%/QtQmlModels/qtqmlmodelsglobal.h +%%QT_INCDIR%%/QtQmlModels/qtqmlmodelsversion.h +%%QT_INCDIR%%/QtQmlWorkerScript/%%FULLVER%%/QtQmlWorkerScript/private/qquickworkerscript_p.h +%%QT_INCDIR%%/QtQmlWorkerScript/%%FULLVER%%/QtQmlWorkerScript/private/qtqmlworkerscriptexports_p.h +%%QT_INCDIR%%/QtQmlWorkerScript/%%FULLVER%%/QtQmlWorkerScript/private/qtqmlworkerscriptglobal_p.h +%%QT_INCDIR%%/QtQmlWorkerScript/%%FULLVER%%/QtQmlWorkerScript/private/qv4serialize_p.h +%%QT_INCDIR%%/QtQmlWorkerScript/QtQmlWorkerScript +%%QT_INCDIR%%/QtQmlWorkerScript/QtQmlWorkerScriptDepends +%%QT_INCDIR%%/QtQmlWorkerScript/QtQmlWorkerScriptVersion +%%QT_INCDIR%%/QtQmlWorkerScript/qtqmlworkerscriptexports.h +%%QT_INCDIR%%/QtQmlWorkerScript/qtqmlworkerscriptglobal.h +%%QT_INCDIR%%/QtQmlWorkerScript/qtqmlworkerscriptversion.h +%%QT_INCDIR%%/QtQmlXmlListModel/%%FULLVER%%/QtQmlXmlListModel/private/qqmlxmllistmodel_p.h +%%QT_INCDIR%%/QtQmlXmlListModel/%%FULLVER%%/QtQmlXmlListModel/private/qtqmlxmllistmodelexports_p.h +%%QT_INCDIR%%/QtQmlXmlListModel/%%FULLVER%%/QtQmlXmlListModel/private/qtqmlxmllistmodelglobal_p.h +%%QT_INCDIR%%/QtQmlXmlListModel/QtQmlXmlListModel +%%QT_INCDIR%%/QtQmlXmlListModel/QtQmlXmlListModelDepends +%%QT_INCDIR%%/QtQmlXmlListModel/QtQmlXmlListModelVersion +%%QT_INCDIR%%/QtQmlXmlListModel/qtqmlxmllistmodelexports.h +%%QT_INCDIR%%/QtQmlXmlListModel/qtqmlxmllistmodelversion.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qaccessiblequickitem_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qaccessiblequickview_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qqmldesignermetaobject_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickabstractpaletteprovider_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickaccessibleattached_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickaccessiblefactory_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanchors_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanchors_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedimage_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedimage_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedsprite_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatedsprite_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimation_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimation_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimationcontroller_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimator_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimator_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatorcontroller_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickanimatorjob_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickapplication_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickbehavior_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickborderimage_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickborderimage_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcanvascontext_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcanvasitem_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickclipnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcolorgroup_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2d_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dcommandbuffer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dtexture_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickcontext2dtile_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdeliveryagent_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdeliveryagent_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignercustomobjectdata_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignercustomparserobject_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupport_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportitems_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportmetainfo_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportproperties_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportpropertychanges_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdesignersupportstates_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdrag_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdragaxis_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdraghandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickdroparea_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickevents_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickable_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickable_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflickablebehavior_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickflipable_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfocusscope_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfontloader_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickfontmetrics_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickforeignutils_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickgraphicsconfiguration_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickgraphicsdevice_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickgraphicsinfo_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickgridview_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickhandlerpoint_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickhoverhandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimage_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimage_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimagebase_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimagebase_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimageprovider_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimplicitsizeitem_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickimplicitsizeitem_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitem_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemanimation_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemanimation_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemchangelistener_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemsmodule_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemview_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemview_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemviewfxitem_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickitemviewtransition_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicklistview_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickloader_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickloader_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmousearea_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmousearea_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmultipointhandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmultipointhandler_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickmultipointtoucharea_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpainteditem_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpalette_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpalettecolorprovider_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpaletteproviderprivatebase_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpath_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpath_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathinterpolator_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathview_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpathview_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpincharea_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpincharea_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpinchhandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpixmapcache_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointerdevicehandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointerdevicehandler_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointerhandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointerhandler_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpointhandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpositioners_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpositioners_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickprofiler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickpropertychanges_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrectangle_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrectangle_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrendercontrol_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrendertarget_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrepeater_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickrepeater_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickscalegrid_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickscreen_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickselectable_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffect_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffectmesh_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshadereffectsource_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickshortcut_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksinglepointhandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksinglepointhandler_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksmoothedanimation_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksmoothedanimation_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspringanimation_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksprite_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspriteengine_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspritesequence_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickspritesequence_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstate_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstate_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstatechangescript_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstategroup_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstateoperations_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickstyledtext_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksvgparser_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicksystempalette_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktableview_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktableview_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktaphandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktext_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktext_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextcontrol_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextcontrol_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextdocument_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextedit_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextedit_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextinput_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextinput_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextmetrics_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextnodeengine_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktextutil_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktimeline_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktransition_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktransitionmanager_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktranslate_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktreeview_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquicktreeview_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickvalidator_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickvaluetypes_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickview_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwheelhandler_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwheelhandler_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindow_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindowattached_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindowmodule_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qquickwindowmodule_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgabstractrenderer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgabstractrenderer_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgabstractsoftwarerenderer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgadaptationlayer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgareaallocator_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbasicglyphnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbasicinternalimagenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbasicinternalrectanglenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgbatchrenderer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcompressedatlastexture_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcompressedtexture_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcontext_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgcontextplugin_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultcontext_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultglyphnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultglyphnode_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultimagenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultinternalimagenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultinternalrectanglenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultninepatchnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultpainternode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultrectanglenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultrendercontext_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdefaultspritenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdistancefieldglyphnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgdistancefieldglyphnode_p_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsggeometry_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgmaterialshader_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgnodeupdater_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgplaintexture_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrenderer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrenderloop_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrendernode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrhiatlastexture_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrhidistancefieldglyphcache_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrhilayer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrhishadereffectnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrhisupport_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrhitextureglyphcache_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgrhivisualizer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwareadaptation_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarecontext_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwareglyphnode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwareinternalimagenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwareinternalrectanglenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarelayer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarepainternode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarepixmaprenderer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarepixmaptexture_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarepublicnodes_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderablenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderablenodeupdater_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderer_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderlistbuilder_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarerenderloop_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarespritenode_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgsoftwarethreadedrenderloop_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgtexture_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgtexturematerial_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgtexturereader_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qsgthreadedrenderloop_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qtquick-config_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qtquickexports_p.h +%%QT_INCDIR%%/QtQuick/%%FULLVER%%/QtQuick/private/qtquickglobal_p.h +%%QT_INCDIR%%/QtQuick/QQuickAsyncImageProvider +%%QT_INCDIR%%/QtQuick/QQuickFramebufferObject +%%QT_INCDIR%%/QtQuick/QQuickGraphicsConfiguration +%%QT_INCDIR%%/QtQuick/QQuickGraphicsDevice +%%QT_INCDIR%%/QtQuick/QQuickImageProvider +%%QT_INCDIR%%/QtQuick/QQuickImageResponse +%%QT_INCDIR%%/QtQuick/QQuickItem +%%QT_INCDIR%%/QtQuick/QQuickItemGrabResult +%%QT_INCDIR%%/QtQuick/QQuickOpenGLUtils +%%QT_INCDIR%%/QtQuick/QQuickPaintedItem +%%QT_INCDIR%%/QtQuick/QQuickRenderControl +%%QT_INCDIR%%/QtQuick/QQuickRenderTarget +%%QT_INCDIR%%/QtQuick/QQuickTextDocument +%%QT_INCDIR%%/QtQuick/QQuickTextureFactory +%%QT_INCDIR%%/QtQuick/QQuickTransform +%%QT_INCDIR%%/QtQuick/QQuickView +%%QT_INCDIR%%/QtQuick/QQuickWindow +%%QT_INCDIR%%/QtQuick/QSGBasicGeometryNode +%%QT_INCDIR%%/QtQuick/QSGClipNode +%%QT_INCDIR%%/QtQuick/QSGDynamicTexture +%%QT_INCDIR%%/QtQuick/QSGFlatColorMaterial +%%QT_INCDIR%%/QtQuick/QSGGeometry +%%QT_INCDIR%%/QtQuick/QSGGeometryNode +%%QT_INCDIR%%/QtQuick/QSGImageNode +%%QT_INCDIR%%/QtQuick/QSGMaterial +%%QT_INCDIR%%/QtQuick/QSGMaterialShader +%%QT_INCDIR%%/QtQuick/QSGMaterialType +%%QT_INCDIR%%/QtQuick/QSGNinePatchNode +%%QT_INCDIR%%/QtQuick/QSGNode +%%QT_INCDIR%%/QtQuick/QSGNodeVisitor +%%QT_INCDIR%%/QtQuick/QSGOpacityNode +%%QT_INCDIR%%/QtQuick/QSGOpaqueTextureMaterial +%%QT_INCDIR%%/QtQuick/QSGRectangleNode +%%QT_INCDIR%%/QtQuick/QSGRenderNode +%%QT_INCDIR%%/QtQuick/QSGRendererInterface +%%QT_INCDIR%%/QtQuick/QSGRootNode +%%QT_INCDIR%%/QtQuick/QSGSimpleRectNode +%%QT_INCDIR%%/QtQuick/QSGSimpleTextureNode +%%QT_INCDIR%%/QtQuick/QSGTexture +%%QT_INCDIR%%/QtQuick/QSGTextureMaterial +%%QT_INCDIR%%/QtQuick/QSGTextureProvider +%%QT_INCDIR%%/QtQuick/QSGTransformNode +%%QT_INCDIR%%/QtQuick/QSGVertexColorMaterial +%%QT_INCDIR%%/QtQuick/QtQuick +%%QT_INCDIR%%/QtQuick/QtQuickDepends +%%QT_INCDIR%%/QtQuick/QtQuickVersion +%%QT_INCDIR%%/QtQuick/qquickframebufferobject.h +%%QT_INCDIR%%/QtQuick/qquickgraphicsconfiguration.h +%%QT_INCDIR%%/QtQuick/qquickgraphicsdevice.h +%%QT_INCDIR%%/QtQuick/qquickimageprovider.h +%%QT_INCDIR%%/QtQuick/qquickitem.h +%%QT_INCDIR%%/QtQuick/qquickitemgrabresult.h +%%QT_INCDIR%%/QtQuick/qquickopenglutils.h +%%QT_INCDIR%%/QtQuick/qquickpainteditem.h +%%QT_INCDIR%%/QtQuick/qquickrendercontrol.h +%%QT_INCDIR%%/QtQuick/qquickrendertarget.h +%%QT_INCDIR%%/QtQuick/qquicktextdocument.h +%%QT_INCDIR%%/QtQuick/qquickview.h +%%QT_INCDIR%%/QtQuick/qquickwindow.h +%%QT_INCDIR%%/QtQuick/qsgflatcolormaterial.h +%%QT_INCDIR%%/QtQuick/qsggeometry.h +%%QT_INCDIR%%/QtQuick/qsgimagenode.h +%%QT_INCDIR%%/QtQuick/qsgmaterial.h +%%QT_INCDIR%%/QtQuick/qsgmaterialshader.h +%%QT_INCDIR%%/QtQuick/qsgmaterialtype.h +%%QT_INCDIR%%/QtQuick/qsgninepatchnode.h +%%QT_INCDIR%%/QtQuick/qsgnode.h +%%QT_INCDIR%%/QtQuick/qsgrectanglenode.h +%%QT_INCDIR%%/QtQuick/qsgrendererinterface.h +%%QT_INCDIR%%/QtQuick/qsgrendernode.h +%%QT_INCDIR%%/QtQuick/qsgsimplerectnode.h +%%QT_INCDIR%%/QtQuick/qsgsimpletexturenode.h +%%QT_INCDIR%%/QtQuick/qsgtexture.h +%%QT_INCDIR%%/QtQuick/qsgtexture_platform.h +%%QT_INCDIR%%/QtQuick/qsgtexturematerial.h +%%QT_INCDIR%%/QtQuick/qsgtextureprovider.h +%%QT_INCDIR%%/QtQuick/qsgvertexcolormaterial.h +%%QT_INCDIR%%/QtQuick/qtquick-config.h +%%QT_INCDIR%%/QtQuick/qtquickexports.h +%%QT_INCDIR%%/QtQuick/qtquickglobal.h +%%QT_INCDIR%%/QtQuick/qtquickversion.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickbasicbusyindicator_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickbasicdial_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickbasicprogressbar_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickbasicstyle_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickbasictheme_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickfusionbusyindicator_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickfusiondial_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickfusionknob_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickfusionstyle_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickfusiontheme_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickimageselector_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickimaginestyle_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickimaginetheme_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickmaterialbusyindicator_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickmaterialprogressbar_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickmaterialripple_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickmaterialstyle_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickmaterialtheme_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickninepatchimage_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyle_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickstyleplugin_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickuniversalbusyindicator_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickuniversalfocusrectangle_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickuniversalprogressbar_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickuniversalstyle_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qquickuniversaltheme_p.h +%%QT_INCDIR%%/QtQuickControls2/%%FULLVER%%/QtQuickControls2/private/qtquickcontrols2-config_p.h +%%QT_INCDIR%%/QtQuickControls2/QQuickStyle +%%QT_INCDIR%%/QtQuickControls2/QtQuickControls2 +%%QT_INCDIR%%/QtQuickControls2/QtQuickControls2Depends +%%QT_INCDIR%%/QtQuickControls2/QtQuickControls2Version +%%QT_INCDIR%%/QtQuickControls2/qquickstyle.h +%%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2-config.h +%%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2exports.h +%%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2global.h +%%QT_INCDIR%%/QtQuickControls2/qtquickcontrols2version.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickanimatednode_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickattachedobject_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickchecklabel_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickclippedtext_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickcolor_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickcolorimage_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickiconimage_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickiconimage_p_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickiconlabel_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickiconlabel_p_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickitemgroup_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickmnemoniclabel_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickpaddedrectangle_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickplaceholdertext_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquickplatformtheme_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qquicktumblerview_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qtquickcontrols2foreign_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qtquickcontrols2implexports_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/%%FULLVER%%/QtQuickControls2Impl/private/qtquickcontrols2implglobal_p.h +%%QT_INCDIR%%/QtQuickControls2Impl/QtQuickControls2Impl +%%QT_INCDIR%%/QtQuickControls2Impl/QtQuickControls2ImplDepends +%%QT_INCDIR%%/QtQuickControls2Impl/QtQuickControls2ImplVersion +%%QT_INCDIR%%/QtQuickControls2Impl/qtquickcontrols2implexports.h +%%QT_INCDIR%%/QtQuickControls2Impl/qtquickcontrols2implversion.h +%%QT_INCDIR%%/QtQuickControlsTestUtils/%%FULLVER%%/QtQuickControlsTestUtils/private/controlstestutils_p.h +%%QT_INCDIR%%/QtQuickControlsTestUtils/%%FULLVER%%/QtQuickControlsTestUtils/private/dialogstestutils_p.h +%%QT_INCDIR%%/QtQuickControlsTestUtils/%%FULLVER%%/QtQuickControlsTestUtils/private/qtest_quickcontrols_p.h +%%QT_INCDIR%%/QtQuickControlsTestUtils/QtQuickControlsTestUtils +%%QT_INCDIR%%/QtQuickControlsTestUtils/QtQuickControlsTestUtilsDepends +%%QT_INCDIR%%/QtQuickControlsTestUtils/QtQuickControlsTestUtilsVersion +%%QT_INCDIR%%/QtQuickControlsTestUtils/qtquickcontrolstestutilsversion.h +%%QT_INCDIR%%/QtQuickDialogs2/%%FULLVER%%/QtQuickDialogs2/private/qquickabstractdialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2/%%FULLVER%%/QtQuickDialogs2/private/qquickfiledialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2/%%FULLVER%%/QtQuickDialogs2/private/qquickfolderdialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2/%%FULLVER%%/QtQuickDialogs2/private/qquickfontdialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2/%%FULLVER%%/QtQuickDialogs2/private/qquickmessagedialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2/%%FULLVER%%/QtQuickDialogs2/private/qtquickdialogs2exports_p.h +%%QT_INCDIR%%/QtQuickDialogs2/%%FULLVER%%/QtQuickDialogs2/private/qtquickdialogs2foreign_p.h +%%QT_INCDIR%%/QtQuickDialogs2/%%FULLVER%%/QtQuickDialogs2/private/qtquickdialogs2global_p.h +%%QT_INCDIR%%/QtQuickDialogs2/QtQuickDialogs2 +%%QT_INCDIR%%/QtQuickDialogs2/QtQuickDialogs2Depends +%%QT_INCDIR%%/QtQuickDialogs2/QtQuickDialogs2Version +%%QT_INCDIR%%/QtQuickDialogs2/qtquickdialogs2exports.h +%%QT_INCDIR%%/QtQuickDialogs2/qtquickdialogs2version.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickdialogimplfactory_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfiledialogdelegate_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfiledialogimpl_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfiledialogimpl_p_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfolderbreadcrumbbar_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfolderbreadcrumbbar_p_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfolderdialogimpl_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfolderdialogimpl_p_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfontdialogimpl_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickfontdialogimpl_p_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickmessagedialogimpl_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickmessagedialogimpl_p_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickplatformfiledialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickplatformfolderdialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickplatformfontdialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qquickplatformmessagedialog_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qtquickdialogs2quickimplexports_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qtquickdialogs2quickimplforeign_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/%%FULLVER%%/QtQuickDialogs2QuickImpl/private/qtquickdialogs2quickimplglobal_p.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/QtQuickDialogs2QuickImpl +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/QtQuickDialogs2QuickImplDepends +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/QtQuickDialogs2QuickImplVersion +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/qtquickdialogs2quickimplexports.h +%%QT_INCDIR%%/QtQuickDialogs2QuickImpl/qtquickdialogs2quickimplversion.h +%%QT_INCDIR%%/QtQuickDialogs2Utils/%%FULLVER%%/QtQuickDialogs2Utils/private/qquickdialogtype_p.h +%%QT_INCDIR%%/QtQuickDialogs2Utils/%%FULLVER%%/QtQuickDialogs2Utils/private/qquickfilenamefilter_p.h +%%QT_INCDIR%%/QtQuickDialogs2Utils/%%FULLVER%%/QtQuickDialogs2Utils/private/qtquickdialogs2utilsexports_p.h +%%QT_INCDIR%%/QtQuickDialogs2Utils/%%FULLVER%%/QtQuickDialogs2Utils/private/qtquickdialogs2utilsglobal_p.h +%%QT_INCDIR%%/QtQuickDialogs2Utils/QtQuickDialogs2Utils +%%QT_INCDIR%%/QtQuickDialogs2Utils/QtQuickDialogs2UtilsDepends +%%QT_INCDIR%%/QtQuickDialogs2Utils/QtQuickDialogs2UtilsVersion +%%QT_INCDIR%%/QtQuickDialogs2Utils/qtquickdialogs2utilsexports.h +%%QT_INCDIR%%/QtQuickDialogs2Utils/qtquickdialogs2utilsversion.h +%%QT_INCDIR%%/QtQuickLayouts/%%FULLVER%%/QtQuickLayouts/private/qquickgridlayoutengine_p.h +%%QT_INCDIR%%/QtQuickLayouts/%%FULLVER%%/QtQuickLayouts/private/qquicklayout_p.h +%%QT_INCDIR%%/QtQuickLayouts/%%FULLVER%%/QtQuickLayouts/private/qquicklayoutglobal_p.h +%%QT_INCDIR%%/QtQuickLayouts/%%FULLVER%%/QtQuickLayouts/private/qquicklayoutstyleinfo_p.h +%%QT_INCDIR%%/QtQuickLayouts/%%FULLVER%%/QtQuickLayouts/private/qquicklinearlayout_p.h +%%QT_INCDIR%%/QtQuickLayouts/%%FULLVER%%/QtQuickLayouts/private/qquickstacklayout_p.h +%%QT_INCDIR%%/QtQuickLayouts/%%FULLVER%%/QtQuickLayouts/private/qtquicklayoutsexports_p.h +%%QT_INCDIR%%/QtQuickLayouts/QtQuickLayouts +%%QT_INCDIR%%/QtQuickLayouts/QtQuickLayoutsDepends +%%QT_INCDIR%%/QtQuickLayouts/QtQuickLayoutsVersion +%%QT_INCDIR%%/QtQuickLayouts/qtquicklayoutsexports.h +%%QT_INCDIR%%/QtQuickLayouts/qtquicklayoutsversion.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickage_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickangledirection_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickcumulativedirection_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickcustomaffector_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickdirection_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickellipseextruder_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickfriction_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickgravity_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickgroupgoal_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickimageparticle_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickitemparticle_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicklineextruder_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickmaskextruder_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleaffector_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleemitter_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticleextruder_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlegroup_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlepainter_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickparticlesystem_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickpointattractor_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickpointdirection_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickrectangleextruder_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickspritegoal_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicktargetdirection_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquicktrailemitter_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickturbulence_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickv4particledata_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qquickwander_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qtquickparticlesexports_p.h +%%QT_INCDIR%%/QtQuickParticles/%%FULLVER%%/QtQuickParticles/private/qtquickparticlesglobal_p.h +%%QT_INCDIR%%/QtQuickParticles/QtQuickParticles +%%QT_INCDIR%%/QtQuickParticles/QtQuickParticlesDepends +%%QT_INCDIR%%/QtQuickParticles/QtQuickParticlesVersion +%%QT_INCDIR%%/QtQuickParticles/qtquickparticlesexports.h +%%QT_INCDIR%%/QtQuickParticles/qtquickparticlesversion.h +%%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshape_p.h +%%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshape_p_p.h +%%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshapegenericrenderer_p.h +%%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshapesglobal_p.h +%%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qquickshapesoftwarerenderer_p.h +%%QT_INCDIR%%/QtQuickShapes/%%FULLVER%%/QtQuickShapes/private/qtquickshapesexports_p.h +%%QT_INCDIR%%/QtQuickShapes/QtQuickShapes +%%QT_INCDIR%%/QtQuickShapes/QtQuickShapesDepends +%%QT_INCDIR%%/QtQuickShapes/QtQuickShapesVersion +%%QT_INCDIR%%/QtQuickShapes/qquickshapesglobal.h +%%QT_INCDIR%%/QtQuickShapes/qtquickshapesexports.h +%%QT_INCDIR%%/QtQuickShapes/qtquickshapesversion.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qaccessiblequickpage_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickabstractbutton_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickabstractbutton_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickaction_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickaction_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickactiongroup_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickapplicationwindow_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbusyindicator_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbutton_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbutton_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickbuttongroup_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcalendar_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcalendarmodel_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcheckbox_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcheckdelegate_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcombobox_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontainer_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontainer_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontentitem_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontrol_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickcontrol_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdayofweekmodel_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdayofweekrow_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdeferredexecute_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdeferredpointer_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdelaybutton_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdial_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdialog_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdialog_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdialogbuttonbox_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdialogbuttonbox_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdrawer_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickdrawer_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickframe_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickframe_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickgroupbox_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickheaderview_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickheaderview_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickicon_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickindicatorbutton_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickitemdelegate_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickitemdelegate_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicklabel_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicklabel_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenu_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenu_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenubar_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenubar_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenubaritem_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenubaritem_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenuitem_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenuitem_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmenuseparator_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmonthgrid_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickmonthmodel_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickoverlay_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickoverlay_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpage_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpage_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpageindicator_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpane_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpane_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopup_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopup_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopupanchors_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopupanchors_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopupitem_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpopuppositioner_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickpresshandler_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickprogressbar_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickradiobutton_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickradiodelegate_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickrangeslider_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickroundbutton_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollbar_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollbar_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollindicator_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickscrollview_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickselectionrectangle_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickselectionrectangle_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickshortcutcontext_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickslider_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickspinbox_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicksplitview_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicksplitview_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstackelement_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstacktransition_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstackview_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickstackview_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipe_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipedelegate_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipedelegate_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswipeview_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswitch_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickswitchdelegate_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktabbar_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktabbutton_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextarea_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextarea_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextfield_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktextfield_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktheme_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktheme_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktoolbar_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktoolbutton_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktoolseparator_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktooltip_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktreeviewdelegate_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktumbler_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquicktumbler_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickvelocitycalculator_p_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickweeknumbercolumn_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qquickweeknumbermodel_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qtquicktemplates2-config_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qtquicktemplates2exports_p.h +%%QT_INCDIR%%/QtQuickTemplates2/%%FULLVER%%/QtQuickTemplates2/private/qtquicktemplates2global_p.h +%%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2 +%%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2Depends +%%QT_INCDIR%%/QtQuickTemplates2/QtQuickTemplates2Version +%%QT_INCDIR%%/QtQuickTemplates2/qtquicktemplates2-config.h +%%QT_INCDIR%%/QtQuickTemplates2/qtquicktemplates2exports.h +%%QT_INCDIR%%/QtQuickTemplates2/qtquicktemplates2version.h +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/qtestoptions_p.h +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktest_p.h +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestevent_p.h +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestglobal_p.h +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestresult_p.h +%%QT_INCDIR%%/QtQuickTest/%%FULLVER%%/QtQuickTest/private/quicktestutil_p.h +%%QT_INCDIR%%/QtQuickTest/QtQuickTest +%%QT_INCDIR%%/QtQuickTest/QtQuickTestDepends +%%QT_INCDIR%%/QtQuickTest/QtQuickTestVersion +%%QT_INCDIR%%/QtQuickTest/qtquicktestversion.h +%%QT_INCDIR%%/QtQuickTest/quicktest.h +%%QT_INCDIR%%/QtQuickTest/quicktestglobal.h +%%QT_INCDIR%%/QtQuickTestUtils/%%FULLVER%%/QtQuickTestUtils/private/geometrytestutils_p.h +%%QT_INCDIR%%/QtQuickTestUtils/%%FULLVER%%/QtQuickTestUtils/private/platforminputcontext_p.h +%%QT_INCDIR%%/QtQuickTestUtils/%%FULLVER%%/QtQuickTestUtils/private/platformquirks_p.h +%%QT_INCDIR%%/QtQuickTestUtils/%%FULLVER%%/QtQuickTestUtils/private/qmlutils_p.h +%%QT_INCDIR%%/QtQuickTestUtils/%%FULLVER%%/QtQuickTestUtils/private/testhttpserver_p.h +%%QT_INCDIR%%/QtQuickTestUtils/%%FULLVER%%/QtQuickTestUtils/private/viewtestutils_p.h +%%QT_INCDIR%%/QtQuickTestUtils/%%FULLVER%%/QtQuickTestUtils/private/visualtestutils_p.h +%%QT_INCDIR%%/QtQuickTestUtils/QtQuickTestUtils +%%QT_INCDIR%%/QtQuickTestUtils/QtQuickTestUtilsDepends +%%QT_INCDIR%%/QtQuickTestUtils/QtQuickTestUtilsVersion +%%QT_INCDIR%%/QtQuickTestUtils/qtquicktestutilsversion.h +%%QT_INCDIR%%/QtQuickWidgets/%%FULLVER%%/QtQuickWidgets/private/qaccessiblequickwidget_p.h +%%QT_INCDIR%%/QtQuickWidgets/%%FULLVER%%/QtQuickWidgets/private/qaccessiblequickwidgetfactory_p.h +%%QT_INCDIR%%/QtQuickWidgets/%%FULLVER%%/QtQuickWidgets/private/qquickwidget_p.h +%%QT_INCDIR%%/QtQuickWidgets/QQuickWidget +%%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgets +%%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgetsDepends +%%QT_INCDIR%%/QtQuickWidgets/QtQuickWidgetsVersion +%%QT_INCDIR%%/QtQuickWidgets/qquickwidget.h +%%QT_INCDIR%%/QtQuickWidgets/qtquickwidgetsexports.h +%%QT_INCDIR%%/QtQuickWidgets/qtquickwidgetsglobal.h +%%QT_INCDIR%%/QtQuickWidgets/qtquickwidgetsversion.h +lib/cmake/Qt6BuildInternals/StandaloneTests/QtDeclarativeTestsConfig.cmake +lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationAdditionalTargetInfo.cmake +lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationConfig.cmake +lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationConfigVersion.cmake +lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationConfigVersionImpl.cmake +lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationDependencies.cmake +lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationTargets.cmake +lib/cmake/Qt6LabsAnimation/Qt6LabsAnimationVersionlessTargets.cmake +lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelAdditionalTargetInfo.cmake +lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelConfig.cmake +lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelConfigVersion.cmake +lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelConfigVersionImpl.cmake +lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelDependencies.cmake +lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelTargets.cmake +lib/cmake/Qt6LabsFolderListModel/Qt6LabsFolderListModelVersionlessTargets.cmake +lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsAdditionalTargetInfo.cmake +lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsConfig.cmake +lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsConfigVersion.cmake +lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsConfigVersionImpl.cmake +lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsDependencies.cmake +lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsTargets.cmake +lib/cmake/Qt6LabsQmlModels/Qt6LabsQmlModelsVersionlessTargets.cmake +lib/cmake/Qt6LabsSettings/Qt6LabsSettingsAdditionalTargetInfo.cmake +lib/cmake/Qt6LabsSettings/Qt6LabsSettingsConfig.cmake +lib/cmake/Qt6LabsSettings/Qt6LabsSettingsConfigVersion.cmake +lib/cmake/Qt6LabsSettings/Qt6LabsSettingsConfigVersionImpl.cmake +lib/cmake/Qt6LabsSettings/Qt6LabsSettingsDependencies.cmake +lib/cmake/Qt6LabsSettings/Qt6LabsSettingsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6LabsSettings/Qt6LabsSettingsTargets.cmake +lib/cmake/Qt6LabsSettings/Qt6LabsSettingsVersionlessTargets.cmake +lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageAdditionalTargetInfo.cmake +lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageConfig.cmake +lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageConfigVersion.cmake +lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageConfigVersionImpl.cmake +lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageDependencies.cmake +lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageTargets.cmake +lib/cmake/Qt6LabsSharedImage/Qt6LabsSharedImageVersionlessTargets.cmake +lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshAdditionalTargetInfo.cmake +lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshConfig.cmake +lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshConfigVersion.cmake +lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshConfigVersionImpl.cmake +lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshDependencies.cmake +lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshTargets.cmake +lib/cmake/Qt6LabsWavefrontMesh/Qt6LabsWavefrontMeshVersionlessTargets.cmake +lib/cmake/Qt6PacketProtocolPrivate/Qt6PacketProtocolPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6PacketProtocolPrivate/Qt6PacketProtocolPrivateConfig.cmake +lib/cmake/Qt6PacketProtocolPrivate/Qt6PacketProtocolPrivateConfigVersion.cmake +lib/cmake/Qt6PacketProtocolPrivate/Qt6PacketProtocolPrivateConfigVersionImpl.cmake +lib/cmake/Qt6PacketProtocolPrivate/Qt6PacketProtocolPrivateDependencies.cmake +lib/cmake/Qt6PacketProtocolPrivate/Qt6PacketProtocolPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6PacketProtocolPrivate/Qt6PacketProtocolPrivateTargets.cmake +lib/cmake/Qt6PacketProtocolPrivate/Qt6PacketProtocolPrivateVersionlessTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtlabsplatformpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2nativestylepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake +lib/cmake/Qt6Qml/Qt6QmlConfig.cmake +lib/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake +lib/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QmlDependencies.cmake +lib/cmake/Qt6Qml/Qt6QmlDeploySupport.cmake +lib/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake +lib/cmake/Qt6Qml/Qt6QmlMacros.cmake +lib/cmake/Qt6Qml/Qt6QmlPluginTemplate.cpp.in +lib/cmake/Qt6Qml/Qt6QmlTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QmlTargets.cmake +lib/cmake/Qt6Qml/Qt6QmlVersionlessTargets.cmake +lib/cmake/Qt6Qml/Qt6qmldirTemplate.cmake.in +lib/cmake/Qt6QmlCompilerPrivate/Qt6QmlCompilerPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlCompilerPrivate/Qt6QmlCompilerPrivateConfig.cmake +lib/cmake/Qt6QmlCompilerPrivate/Qt6QmlCompilerPrivateConfigVersion.cmake +lib/cmake/Qt6QmlCompilerPrivate/Qt6QmlCompilerPrivateConfigVersionImpl.cmake +lib/cmake/Qt6QmlCompilerPrivate/Qt6QmlCompilerPrivateDependencies.cmake +lib/cmake/Qt6QmlCompilerPrivate/Qt6QmlCompilerPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlCompilerPrivate/Qt6QmlCompilerPrivateTargets.cmake +lib/cmake/Qt6QmlCompilerPrivate/Qt6QmlCompilerPrivateVersionlessTargets.cmake +lib/cmake/Qt6QmlCore/Qt6QmlCoreAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlCore/Qt6QmlCoreConfig.cmake +lib/cmake/Qt6QmlCore/Qt6QmlCoreConfigVersion.cmake +lib/cmake/Qt6QmlCore/Qt6QmlCoreConfigVersionImpl.cmake +lib/cmake/Qt6QmlCore/Qt6QmlCoreDependencies.cmake +lib/cmake/Qt6QmlCore/Qt6QmlCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlCore/Qt6QmlCoreTargets.cmake +lib/cmake/Qt6QmlCore/Qt6QmlCoreVersionlessTargets.cmake +lib/cmake/Qt6QmlDebugPrivate/Qt6QmlDebugPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlDebugPrivate/Qt6QmlDebugPrivateConfig.cmake +lib/cmake/Qt6QmlDebugPrivate/Qt6QmlDebugPrivateConfigVersion.cmake +lib/cmake/Qt6QmlDebugPrivate/Qt6QmlDebugPrivateConfigVersionImpl.cmake +lib/cmake/Qt6QmlDebugPrivate/Qt6QmlDebugPrivateDependencies.cmake +lib/cmake/Qt6QmlDebugPrivate/Qt6QmlDebugPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlDebugPrivate/Qt6QmlDebugPrivateTargets.cmake +lib/cmake/Qt6QmlDebugPrivate/Qt6QmlDebugPrivateVersionlessTargets.cmake +lib/cmake/Qt6QmlDomPrivate/Qt6QmlDomPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlDomPrivate/Qt6QmlDomPrivateConfig.cmake +lib/cmake/Qt6QmlDomPrivate/Qt6QmlDomPrivateConfigVersion.cmake +lib/cmake/Qt6QmlDomPrivate/Qt6QmlDomPrivateConfigVersionImpl.cmake +lib/cmake/Qt6QmlDomPrivate/Qt6QmlDomPrivateDependencies.cmake +lib/cmake/Qt6QmlDomPrivate/Qt6QmlDomPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlDomPrivate/Qt6QmlDomPrivateTargets.cmake +lib/cmake/Qt6QmlDomPrivate/Qt6QmlDomPrivateVersionlessTargets.cmake +lib/cmake/Qt6QmlImportScanner/Qt6QmlImportScannerConfig.cmake +lib/cmake/Qt6QmlImportScanner/Qt6QmlImportScannerConfigVersion.cmake +lib/cmake/Qt6QmlImportScanner/Qt6QmlImportScannerConfigVersionImpl.cmake +lib/cmake/Qt6QmlImportScanner/Qt6QmlImportScannerDependencies.cmake +lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake +lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake +lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake +lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake +lib/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessTargets.cmake +lib/cmake/Qt6QmlLintPrivate/Qt6QmlLintPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlLintPrivate/Qt6QmlLintPrivateConfig.cmake +lib/cmake/Qt6QmlLintPrivate/Qt6QmlLintPrivateConfigVersion.cmake +lib/cmake/Qt6QmlLintPrivate/Qt6QmlLintPrivateConfigVersionImpl.cmake +lib/cmake/Qt6QmlLintPrivate/Qt6QmlLintPrivateDependencies.cmake +lib/cmake/Qt6QmlLintPrivate/Qt6QmlLintPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlLintPrivate/Qt6QmlLintPrivateTargets.cmake +lib/cmake/Qt6QmlLintPrivate/Qt6QmlLintPrivateVersionlessTargets.cmake +lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageConfig.cmake +lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageConfigVersion.cmake +lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageConfigVersionImpl.cmake +lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageDependencies.cmake +lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageTargets.cmake +lib/cmake/Qt6QmlLocalStorage/Qt6QmlLocalStorageVersionlessTargets.cmake +lib/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake +lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake +lib/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake +lib/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake +lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake +lib/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessTargets.cmake +lib/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake +lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake +lib/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake +lib/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake +lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake +lib/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake +lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfig.cmake +lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfigVersion.cmake +lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfigVersionImpl.cmake +lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptDependencies.cmake +lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptTargets.cmake +lib/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptVersionlessTargets.cmake +lib/cmake/Qt6QmlXmlListModel/Qt6QmlXmlListModelAdditionalTargetInfo.cmake +lib/cmake/Qt6QmlXmlListModel/Qt6QmlXmlListModelConfig.cmake +lib/cmake/Qt6QmlXmlListModel/Qt6QmlXmlListModelConfigVersion.cmake +lib/cmake/Qt6QmlXmlListModel/Qt6QmlXmlListModelConfigVersionImpl.cmake +lib/cmake/Qt6QmlXmlListModel/Qt6QmlXmlListModelDependencies.cmake +lib/cmake/Qt6QmlXmlListModel/Qt6QmlXmlListModelTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QmlXmlListModel/Qt6QmlXmlListModelTargets.cmake +lib/cmake/Qt6QmlXmlListModel/Qt6QmlXmlListModelVersionlessTargets.cmake +lib/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick/Qt6QuickConfig.cmake +lib/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake +lib/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake +lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake +lib/cmake/Qt6Quick/Qt6QuickTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick/Qt6QuickTargets.cmake +lib/cmake/Qt6Quick/Qt6QuickVersionlessTargets.cmake +lib/cmake/Qt6QuickControls2/Qt6QuickControls2AdditionalTargetInfo.cmake +lib/cmake/Qt6QuickControls2/Qt6QuickControls2Config.cmake +lib/cmake/Qt6QuickControls2/Qt6QuickControls2ConfigVersion.cmake +lib/cmake/Qt6QuickControls2/Qt6QuickControls2ConfigVersionImpl.cmake +lib/cmake/Qt6QuickControls2/Qt6QuickControls2Dependencies.cmake +lib/cmake/Qt6QuickControls2/Qt6QuickControls2Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickControls2/Qt6QuickControls2Targets.cmake +lib/cmake/Qt6QuickControls2/Qt6QuickControls2VersionlessTargets.cmake +lib/cmake/Qt6QuickControls2Impl/Qt6QuickControls2ImplAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickControls2Impl/Qt6QuickControls2ImplConfig.cmake +lib/cmake/Qt6QuickControls2Impl/Qt6QuickControls2ImplConfigVersion.cmake +lib/cmake/Qt6QuickControls2Impl/Qt6QuickControls2ImplConfigVersionImpl.cmake +lib/cmake/Qt6QuickControls2Impl/Qt6QuickControls2ImplDependencies.cmake +lib/cmake/Qt6QuickControls2Impl/Qt6QuickControls2ImplTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickControls2Impl/Qt6QuickControls2ImplTargets.cmake +lib/cmake/Qt6QuickControls2Impl/Qt6QuickControls2ImplVersionlessTargets.cmake +lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6QuickControlsTestUtilsPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6QuickControlsTestUtilsPrivateConfig.cmake +lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6QuickControlsTestUtilsPrivateConfigVersion.cmake +lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6QuickControlsTestUtilsPrivateConfigVersionImpl.cmake +lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6QuickControlsTestUtilsPrivateDependencies.cmake +lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6QuickControlsTestUtilsPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6QuickControlsTestUtilsPrivateTargets.cmake +lib/cmake/Qt6QuickControlsTestUtilsPrivate/Qt6QuickControlsTestUtilsPrivateVersionlessTargets.cmake +lib/cmake/Qt6QuickDialogs2/Qt6QuickDialogs2AdditionalTargetInfo.cmake +lib/cmake/Qt6QuickDialogs2/Qt6QuickDialogs2Config.cmake +lib/cmake/Qt6QuickDialogs2/Qt6QuickDialogs2ConfigVersion.cmake +lib/cmake/Qt6QuickDialogs2/Qt6QuickDialogs2ConfigVersionImpl.cmake +lib/cmake/Qt6QuickDialogs2/Qt6QuickDialogs2Dependencies.cmake +lib/cmake/Qt6QuickDialogs2/Qt6QuickDialogs2Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickDialogs2/Qt6QuickDialogs2Targets.cmake +lib/cmake/Qt6QuickDialogs2/Qt6QuickDialogs2VersionlessTargets.cmake +lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6QuickDialogs2QuickImplAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6QuickDialogs2QuickImplConfig.cmake +lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6QuickDialogs2QuickImplConfigVersion.cmake +lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6QuickDialogs2QuickImplConfigVersionImpl.cmake +lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6QuickDialogs2QuickImplDependencies.cmake +lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6QuickDialogs2QuickImplTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6QuickDialogs2QuickImplTargets.cmake +lib/cmake/Qt6QuickDialogs2QuickImpl/Qt6QuickDialogs2QuickImplVersionlessTargets.cmake +lib/cmake/Qt6QuickDialogs2Utils/Qt6QuickDialogs2UtilsAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickDialogs2Utils/Qt6QuickDialogs2UtilsConfig.cmake +lib/cmake/Qt6QuickDialogs2Utils/Qt6QuickDialogs2UtilsConfigVersion.cmake +lib/cmake/Qt6QuickDialogs2Utils/Qt6QuickDialogs2UtilsConfigVersionImpl.cmake +lib/cmake/Qt6QuickDialogs2Utils/Qt6QuickDialogs2UtilsDependencies.cmake +lib/cmake/Qt6QuickDialogs2Utils/Qt6QuickDialogs2UtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickDialogs2Utils/Qt6QuickDialogs2UtilsTargets.cmake +lib/cmake/Qt6QuickDialogs2Utils/Qt6QuickDialogs2UtilsVersionlessTargets.cmake +lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsConfig.cmake +lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsConfigVersion.cmake +lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsConfigVersionImpl.cmake +lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsDependencies.cmake +lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsTargets.cmake +lib/cmake/Qt6QuickLayouts/Qt6QuickLayoutsVersionlessTargets.cmake +lib/cmake/Qt6QuickParticlesPrivate/Qt6QuickParticlesPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickParticlesPrivate/Qt6QuickParticlesPrivateConfig.cmake +lib/cmake/Qt6QuickParticlesPrivate/Qt6QuickParticlesPrivateConfigVersion.cmake +lib/cmake/Qt6QuickParticlesPrivate/Qt6QuickParticlesPrivateConfigVersionImpl.cmake +lib/cmake/Qt6QuickParticlesPrivate/Qt6QuickParticlesPrivateDependencies.cmake +lib/cmake/Qt6QuickParticlesPrivate/Qt6QuickParticlesPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickParticlesPrivate/Qt6QuickParticlesPrivateTargets.cmake +lib/cmake/Qt6QuickParticlesPrivate/Qt6QuickParticlesPrivateVersionlessTargets.cmake +lib/cmake/Qt6QuickShapesPrivate/Qt6QuickShapesPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickShapesPrivate/Qt6QuickShapesPrivateConfig.cmake +lib/cmake/Qt6QuickShapesPrivate/Qt6QuickShapesPrivateConfigVersion.cmake +lib/cmake/Qt6QuickShapesPrivate/Qt6QuickShapesPrivateConfigVersionImpl.cmake +lib/cmake/Qt6QuickShapesPrivate/Qt6QuickShapesPrivateDependencies.cmake +lib/cmake/Qt6QuickShapesPrivate/Qt6QuickShapesPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickShapesPrivate/Qt6QuickShapesPrivateTargets.cmake +lib/cmake/Qt6QuickShapesPrivate/Qt6QuickShapesPrivateVersionlessTargets.cmake +lib/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2AdditionalTargetInfo.cmake +lib/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2Config.cmake +lib/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2ConfigVersion.cmake +lib/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2ConfigVersionImpl.cmake +lib/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2Dependencies.cmake +lib/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2Targets.cmake +lib/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2VersionlessTargets.cmake +lib/cmake/Qt6QuickTest/Qt6QuickTestAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickTest/Qt6QuickTestConfig.cmake +lib/cmake/Qt6QuickTest/Qt6QuickTestConfigVersion.cmake +lib/cmake/Qt6QuickTest/Qt6QuickTestConfigVersionImpl.cmake +lib/cmake/Qt6QuickTest/Qt6QuickTestDependencies.cmake +lib/cmake/Qt6QuickTest/Qt6QuickTestTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickTest/Qt6QuickTestTargets.cmake +lib/cmake/Qt6QuickTest/Qt6QuickTestVersionlessTargets.cmake +lib/cmake/Qt6QuickTestUtilsPrivate/Qt6QuickTestUtilsPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickTestUtilsPrivate/Qt6QuickTestUtilsPrivateConfig.cmake +lib/cmake/Qt6QuickTestUtilsPrivate/Qt6QuickTestUtilsPrivateConfigVersion.cmake +lib/cmake/Qt6QuickTestUtilsPrivate/Qt6QuickTestUtilsPrivateConfigVersionImpl.cmake +lib/cmake/Qt6QuickTestUtilsPrivate/Qt6QuickTestUtilsPrivateDependencies.cmake +lib/cmake/Qt6QuickTestUtilsPrivate/Qt6QuickTestUtilsPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickTestUtilsPrivate/Qt6QuickTestUtilsPrivateTargets.cmake +lib/cmake/Qt6QuickTestUtilsPrivate/Qt6QuickTestUtilsPrivateVersionlessTargets.cmake +lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsConfig.cmake +lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsConfigVersion.cmake +lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsConfigVersionImpl.cmake +lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsDependencies.cmake +lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsTargets.cmake +lib/cmake/Qt6QuickWidgets/Qt6QuickWidgetsVersionlessTargets.cmake +%%QT_BINDIR%%/qml +%%QT_BINDIR%%/qmldom +%%QT_BINDIR%%/qmleasing +%%QT_BINDIR%%/qmlformat +%%QT_BINDIR%%/qmllint +%%QT_BINDIR%%/qmlplugindump +%%QT_BINDIR%%/qmlpreview +%%QT_BINDIR%%/qmlprofiler +%%QT_BINDIR%%/qmlscene +%%QT_BINDIR%%/qmltc +%%QT_BINDIR%%/qmltestrunner +%%QT_BINDIR%%/qmltime +%%QT_LIBDIR%%/libQt6LabsAnimation.prl +%%QT_LIBDIR%%/libQt6LabsAnimation.so +%%QT_LIBDIR%%/libQt6LabsAnimation.so.6 +%%QT_LIBDIR%%/libQt6LabsAnimation.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6LabsFolderListModel.prl +%%QT_LIBDIR%%/libQt6LabsFolderListModel.so +%%QT_LIBDIR%%/libQt6LabsFolderListModel.so.6 +%%QT_LIBDIR%%/libQt6LabsFolderListModel.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6LabsQmlModels.prl +%%QT_LIBDIR%%/libQt6LabsQmlModels.so +%%QT_LIBDIR%%/libQt6LabsQmlModels.so.6 +%%QT_LIBDIR%%/libQt6LabsQmlModels.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6LabsSettings.prl +%%QT_LIBDIR%%/libQt6LabsSettings.so +%%QT_LIBDIR%%/libQt6LabsSettings.so.6 +%%QT_LIBDIR%%/libQt6LabsSettings.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6LabsSharedImage.prl +%%QT_LIBDIR%%/libQt6LabsSharedImage.so +%%QT_LIBDIR%%/libQt6LabsSharedImage.so.6 +%%QT_LIBDIR%%/libQt6LabsSharedImage.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6LabsWavefrontMesh.prl +%%QT_LIBDIR%%/libQt6LabsWavefrontMesh.so +%%QT_LIBDIR%%/libQt6LabsWavefrontMesh.so.6 +%%QT_LIBDIR%%/libQt6LabsWavefrontMesh.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6PacketProtocol.a +%%QT_LIBDIR%%/libQt6PacketProtocol.prl +%%QT_LIBDIR%%/libQt6Qml.prl +%%QT_LIBDIR%%/libQt6Qml.so +%%QT_LIBDIR%%/libQt6Qml.so.6 +%%QT_LIBDIR%%/libQt6Qml.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QmlCompiler.a +%%QT_LIBDIR%%/libQt6QmlCompiler.prl +%%QT_LIBDIR%%/libQt6QmlCore.prl +%%QT_LIBDIR%%/libQt6QmlCore.so +%%QT_LIBDIR%%/libQt6QmlCore.so.6 +%%QT_LIBDIR%%/libQt6QmlCore.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QmlDebug.a +%%QT_LIBDIR%%/libQt6QmlDebug.prl +%%QT_LIBDIR%%/libQt6QmlDom.a +%%QT_LIBDIR%%/libQt6QmlDom.prl +%%QT_LIBDIR%%/libQt6QmlLint.a +%%QT_LIBDIR%%/libQt6QmlLint.prl +%%QT_LIBDIR%%/libQt6QmlLocalStorage.prl +%%QT_LIBDIR%%/libQt6QmlLocalStorage.so +%%QT_LIBDIR%%/libQt6QmlLocalStorage.so.6 +%%QT_LIBDIR%%/libQt6QmlLocalStorage.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QmlModels.prl +%%QT_LIBDIR%%/libQt6QmlModels.so +%%QT_LIBDIR%%/libQt6QmlModels.so.6 +%%QT_LIBDIR%%/libQt6QmlModels.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QmlWorkerScript.prl +%%QT_LIBDIR%%/libQt6QmlWorkerScript.so +%%QT_LIBDIR%%/libQt6QmlWorkerScript.so.6 +%%QT_LIBDIR%%/libQt6QmlWorkerScript.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QmlXmlListModel.prl +%%QT_LIBDIR%%/libQt6QmlXmlListModel.so +%%QT_LIBDIR%%/libQt6QmlXmlListModel.so.6 +%%QT_LIBDIR%%/libQt6QmlXmlListModel.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick.prl +%%QT_LIBDIR%%/libQt6Quick.so +%%QT_LIBDIR%%/libQt6Quick.so.6 +%%QT_LIBDIR%%/libQt6Quick.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickControls2.prl +%%QT_LIBDIR%%/libQt6QuickControls2.so +%%QT_LIBDIR%%/libQt6QuickControls2.so.6 +%%QT_LIBDIR%%/libQt6QuickControls2.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickControls2Impl.prl +%%QT_LIBDIR%%/libQt6QuickControls2Impl.so +%%QT_LIBDIR%%/libQt6QuickControls2Impl.so.6 +%%QT_LIBDIR%%/libQt6QuickControls2Impl.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickControlsTestUtils.a +%%QT_LIBDIR%%/libQt6QuickControlsTestUtils.prl +%%QT_LIBDIR%%/libQt6QuickDialogs2.prl +%%QT_LIBDIR%%/libQt6QuickDialogs2.so +%%QT_LIBDIR%%/libQt6QuickDialogs2.so.6 +%%QT_LIBDIR%%/libQt6QuickDialogs2.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickDialogs2QuickImpl.prl +%%QT_LIBDIR%%/libQt6QuickDialogs2QuickImpl.so +%%QT_LIBDIR%%/libQt6QuickDialogs2QuickImpl.so.6 +%%QT_LIBDIR%%/libQt6QuickDialogs2QuickImpl.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickDialogs2Utils.prl +%%QT_LIBDIR%%/libQt6QuickDialogs2Utils.so +%%QT_LIBDIR%%/libQt6QuickDialogs2Utils.so.6 +%%QT_LIBDIR%%/libQt6QuickDialogs2Utils.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickLayouts.prl +%%QT_LIBDIR%%/libQt6QuickLayouts.so +%%QT_LIBDIR%%/libQt6QuickLayouts.so.6 +%%QT_LIBDIR%%/libQt6QuickLayouts.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickParticles.prl +%%QT_LIBDIR%%/libQt6QuickParticles.so +%%QT_LIBDIR%%/libQt6QuickParticles.so.6 +%%QT_LIBDIR%%/libQt6QuickParticles.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickShapes.prl +%%QT_LIBDIR%%/libQt6QuickShapes.so +%%QT_LIBDIR%%/libQt6QuickShapes.so.6 +%%QT_LIBDIR%%/libQt6QuickShapes.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickTemplates2.prl +%%QT_LIBDIR%%/libQt6QuickTemplates2.so +%%QT_LIBDIR%%/libQt6QuickTemplates2.so.6 +%%QT_LIBDIR%%/libQt6QuickTemplates2.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickTest.prl +%%QT_LIBDIR%%/libQt6QuickTest.so +%%QT_LIBDIR%%/libQt6QuickTest.so.6 +%%QT_LIBDIR%%/libQt6QuickTest.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6QuickTestUtils.a +%%QT_LIBDIR%%/libQt6QuickTestUtils.prl +%%QT_LIBDIR%%/libQt6QuickWidgets.prl +%%QT_LIBDIR%%/libQt6QuickWidgets.so +%%QT_LIBDIR%%/libQt6QuickWidgets.so.6 +%%QT_LIBDIR%%/libQt6QuickWidgets.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6labsanimation_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6labsfolderlistmodel_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6labsqmlmodels_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6labssettings_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6labssharedimage_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6labswavefrontmesh_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6packetprotocolprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qml_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmlcompilerprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmlcore_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmldebugprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmldomprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmllintprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmllocalstorage_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmlmodels_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmlworkerscript_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6qmlxmllistmodel_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickcontrols2_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickcontrols2impl_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickcontrolstestutilsprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickdialogs2_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickdialogs2quickimpl_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickdialogs2utils_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quicklayouts_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickparticlesprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickshapesprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quicktemplates2_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quicktest_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quicktestutilsprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quickwidgets_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/features/qmlcache.prf +%%QT_MKSPECDIR%%/features/qmltypes.prf +%%QT_MKSPECDIR%%/features/qtquickcompiler.prf +%%QT_MKSPECDIR%%/modules/qt_lib_labsanimation.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labsanimation_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labsfolderlistmodel.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labsfolderlistmodel_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labsqmlmodels.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labsqmlmodels_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labssettings.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labssettings_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labssharedimage.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labssharedimage_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labswavefrontmesh.pri +%%QT_MKSPECDIR%%/modules/qt_lib_labswavefrontmesh_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_packetprotocol_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qml.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qml_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlcompiler_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlcore.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlcore_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmldebug_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmldom_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlintegration.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlintegration_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmllint_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmllocalstorage.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmllocalstorage_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlmodels.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlmodels_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmltest.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmltest_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlworkerscript.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlworkerscript_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlxmllistmodel.pri +%%QT_MKSPECDIR%%/modules/qt_lib_qmlxmllistmodel_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickcontrols2.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickcontrols2_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickcontrols2impl.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickcontrols2impl_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickcontrolstestutilsprivate_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickdialogs2.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickdialogs2_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickdialogs2quickimpl.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickdialogs2quickimpl_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickdialogs2utils.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickdialogs2utils_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quicklayouts.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quicklayouts_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickparticles_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickshapes_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quicktemplates2.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quicktemplates2_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quicktestutilsprivate_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickwidgets.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quickwidgets_private.pri +%%DEBUG%%%%QT_LIBDIR%%/objects-Release/QmlCompilerPrivate_resources_1/.rcc/qrc_builtins.cpp.o +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_debugger.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_inspector.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_local.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_messages.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_native.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_nativedebugger.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_preview.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_profiler.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_quickprofiler.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_server.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_tcp.so +%%QT_QMLDIR%%/Qt/labs/animation/liblabsanimationplugin.so +%%QT_QMLDIR%%/Qt/labs/animation/plugins.qmltypes +%%QT_QMLDIR%%/Qt/labs/animation/qmldir +%%QT_QMLDIR%%/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so +%%QT_QMLDIR%%/Qt/labs/folderlistmodel/plugins.qmltypes +%%QT_QMLDIR%%/Qt/labs/folderlistmodel/qmldir +%%QT_QMLDIR%%/Qt/labs/platform/libqtlabsplatformplugin.so +%%QT_QMLDIR%%/Qt/labs/platform/plugins.qmltypes +%%QT_QMLDIR%%/Qt/labs/platform/qmldir +%%QT_QMLDIR%%/Qt/labs/qmlmodels/liblabsmodelsplugin.so +%%QT_QMLDIR%%/Qt/labs/qmlmodels/plugins.qmltypes +%%QT_QMLDIR%%/Qt/labs/qmlmodels/qmldir +%%QT_QMLDIR%%/Qt/labs/settings/libqmlsettingsplugin.so +%%QT_QMLDIR%%/Qt/labs/settings/plugins.qmltypes +%%QT_QMLDIR%%/Qt/labs/settings/qmldir +%%QT_QMLDIR%%/Qt/labs/sharedimage/libsharedimageplugin.so +%%QT_QMLDIR%%/Qt/labs/sharedimage/plugins.qmltypes +%%QT_QMLDIR%%/Qt/labs/sharedimage/qmldir +%%QT_QMLDIR%%/Qt/labs/wavefrontmesh/libqmlwavefrontmeshplugin.so +%%QT_QMLDIR%%/Qt/labs/wavefrontmesh/plugins.qmltypes +%%QT_QMLDIR%%/Qt/labs/wavefrontmesh/qmldir +%%QT_QMLDIR%%/QtCore/libqtqmlcoreplugin.so +%%QT_QMLDIR%%/QtCore/plugins.qmltypes +%%QT_QMLDIR%%/QtCore/qmldir +%%QT_QMLDIR%%/QtQml/Models/libmodelsplugin.so +%%QT_QMLDIR%%/QtQml/Models/plugins.qmltypes +%%QT_QMLDIR%%/QtQml/Models/qmldir +%%QT_QMLDIR%%/QtQml/WorkerScript/libworkerscriptplugin.so +%%QT_QMLDIR%%/QtQml/WorkerScript/plugins.qmltypes +%%QT_QMLDIR%%/QtQml/WorkerScript/qmldir +%%QT_QMLDIR%%/QtQml/XmlListModel/libqmlxmllistmodelplugin.so +%%QT_QMLDIR%%/QtQml/XmlListModel/plugins.qmltypes +%%QT_QMLDIR%%/QtQml/XmlListModel/qmldir +%%QT_QMLDIR%%/QtQml/libqmlplugin.so +%%QT_QMLDIR%%/QtQml/plugins.qmltypes +%%QT_QMLDIR%%/QtQml/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Basic/AbstractButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Action.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ActionGroup.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ApplicationWindow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/BusyIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Button.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ButtonGroup.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Calendar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/CalendarModel.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/CheckBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/CheckDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ComboBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Container.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Control.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/DayOfWeekRow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/DelayButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Dial.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Dialog.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/DialogButtonBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Drawer.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Frame.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/GroupBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/HorizontalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ItemDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Label.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Menu.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/MenuBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/MenuBarItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/MenuItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/MenuSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/MonthGrid.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Page.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/PageIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Pane.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Popup.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ProgressBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/RadioButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/RadioDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/RangeSlider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/RoundButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ScrollBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ScrollIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ScrollView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/SelectionRectangle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Slider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/SpinBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/SplitView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/StackView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/SwipeDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/SwipeView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Switch.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/SwitchDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/TabBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/TabButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/TextArea.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/TextField.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ToolBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ToolButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ToolSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/ToolTip.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/TreeViewDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/Tumbler.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/VerticalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/WeekNumberColumn.qml +%%QT_QMLDIR%%/QtQuick/Controls/Basic/impl/libqtquickcontrols2basicstyleimplplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Basic/impl/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Basic/impl/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Basic/libqtquickcontrols2basicstyleplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Basic/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Basic/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ApplicationWindow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/BusyIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Button.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/CheckBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/CheckDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ComboBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/DelayButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Dial.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Dialog.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/DialogButtonBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Drawer.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Frame.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/GroupBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/HorizontalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ItemDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Label.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Menu.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/MenuBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/MenuBarItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/MenuItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/MenuSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Page.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/PageIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Pane.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Popup.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ProgressBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/RadioButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/RadioDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/RangeSlider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/RoundButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ScrollBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ScrollIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ScrollView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/SelectionRectangle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Slider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/SpinBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/SplitView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/SwipeDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Switch.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/SwitchDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/TabBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/TabButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/TextArea.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/TextField.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ToolBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ToolButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ToolSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/ToolTip.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/Tumbler.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/VerticalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/ButtonPanel.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/CheckIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/RadioIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/SliderGroove.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/SliderHandle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/SwitchIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/libqtquickcontrols2fusionstyleimplplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/impl/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/libqtquickcontrols2fusionstyleplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Fusion/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ApplicationWindow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/BusyIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Button.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/CheckBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/CheckDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ComboBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/DelayButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Dial.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Dialog.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/DialogButtonBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Drawer.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Frame.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/GroupBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/HorizontalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ItemDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Label.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Menu.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/MenuItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/MenuSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Page.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/PageIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Pane.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Popup.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ProgressBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/RadioButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/RadioDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/RangeSlider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/RoundButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ScrollBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ScrollIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ScrollView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/SelectionRectangle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Slider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/SpinBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/SplitView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/StackView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/SwipeDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/SwipeView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Switch.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/SwitchDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/TabBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/TabButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/TextArea.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/TextField.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ToolBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ToolButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ToolSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/ToolTip.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/Tumbler.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/VerticalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/impl/OpacityMask.qml +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/impl/libqtquickcontrols2imaginestyleimplplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/impl/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/impl/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/libqtquickcontrols2imaginestyleplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Imagine/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Material/ApplicationWindow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/BusyIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Button.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/CheckBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/CheckDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ComboBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/DelayButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Dial.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Dialog.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/DialogButtonBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Drawer.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Frame.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/GroupBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/HorizontalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ItemDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Label.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Menu.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/MenuBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/MenuBarItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/MenuItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/MenuSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Page.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/PageIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Pane.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Popup.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ProgressBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/RadioButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/RadioDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/RangeSlider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/RoundButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ScrollBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ScrollIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ScrollView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/SelectionRectangle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Slider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/SpinBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/SplitView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/StackView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/SwipeDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/SwipeView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Switch.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/SwitchDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/TabBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/TabButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/TextArea.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/TextField.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ToolBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ToolButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ToolSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/ToolTip.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/Tumbler.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/VerticalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/BoxShadow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/CheckIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/CursorDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/ElevationEffect.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/RadioIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/RectangularGlow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/SliderHandle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/SwitchIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/libqtquickcontrols2materialstyleimplplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Material/impl/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Material/libqtquickcontrols2materialstyleplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Material/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Material/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ApplicationWindow.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/BusyIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Button.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/CheckBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/CheckDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ComboBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/DelayButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Dial.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Dialog.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/DialogButtonBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Drawer.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Frame.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/GroupBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/HorizontalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ItemDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Label.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Menu.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/MenuBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/MenuBarItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/MenuItem.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/MenuSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Page.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/PageIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Pane.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Popup.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ProgressBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/RadioButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/RadioDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/RangeSlider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/RoundButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ScrollBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ScrollIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ScrollView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/SelectionRectangle.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Slider.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/SpinBox.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/SplitView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/StackView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/SwipeDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Switch.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/SwitchDelegate.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/TabBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/TabButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/TextArea.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/TextField.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ToolBar.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ToolButton.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ToolSeparator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/ToolTip.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/Tumbler.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/VerticalHeaderView.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/impl/CheckIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/impl/RadioIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/impl/SwitchIndicator.qml +%%QT_QMLDIR%%/QtQuick/Controls/Universal/impl/libqtquickcontrols2universalstyleimplplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Universal/impl/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Universal/impl/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/Universal/libqtquickcontrols2universalstyleplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/Universal/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/Universal/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/designer/AbstractButtonSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/BusyIndicatorSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ButtonSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ButtonSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/CheckBoxSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/CheckDelegateSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/CheckSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ComboBoxSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ContainerSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ControlSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ControlSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/DelayButtonSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/DialSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/FrameSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/GroupBoxSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/InsetSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ItemDelegateSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ItemDelegateSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/LabelSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/PaddingSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/PageIndicatorSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/PageSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/PaneSection.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/PaneSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ProgressBarSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/RadioButtonSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/RadioDelegateSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/RangeSliderSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/RoundButtonSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ScrollViewSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/SliderSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/SpinBoxSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/StackViewSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/SwipeDelegateSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/SwipeViewSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/SwitchDelegateSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/SwitchSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/TabBarSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/TabButtonSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/TextAreaSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/TextFieldSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ToolBarSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ToolButtonSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/ToolSeparatorSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/TumblerSpecifics.qml +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/busyindicator-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/busyindicator-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/busyindicator-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/button-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/button-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/button-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/checkbox-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/checkbox-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/checkbox-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/combobox-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/combobox-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/combobox-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/control-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/control-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/control-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/delaybutton-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/delaybutton-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/delaybutton-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/dial-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/dial-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/dial-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/frame-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/frame-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/frame-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/groupbox-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/groupbox-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/groupbox-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/itemdelegate-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/itemdelegate-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/itemdelegate-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/label-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/label-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/label-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/page-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/page-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/page-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/pageindicator-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/pageindicator-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/pageindicator-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/pane-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/pane-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/pane-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/progressbar-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/progressbar-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/progressbar-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/radiobutton-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/radiobutton-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/radiobutton-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/rangeslider-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/rangeslider-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/rangeslider-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/roundbutton-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/roundbutton-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/roundbutton-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/scrollview-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/scrollview-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/scrollview-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/slider-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/slider-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/slider-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/spinbox-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/spinbox-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/spinbox-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/stackview-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/stackview-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/stackview-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/swipeview-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/swipeview-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/swipeview-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/switch-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/switch-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/switch-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/textarea-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/textarea-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/textarea-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/textfield-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/textfield-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/textfield-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolbar-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolbar-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolbar-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolbutton-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolbutton-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolbutton-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolseparator-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolseparator-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/toolseparator-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/tumbler-icon.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/tumbler-icon16.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/images/tumbler-icon@2x.png +%%QT_QMLDIR%%/QtQuick/Controls/designer/qtquickcontrols2.metainfo +%%QT_QMLDIR%%/QtQuick/Controls/impl/libqtquickcontrols2implplugin.so +%%QT_QMLDIR%%/QtQuick/Controls/impl/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/impl/qmldir +%%QT_QMLDIR%%/QtQuick/Controls/libqtquickcontrols2plugin.so +%%QT_QMLDIR%%/QtQuick/Controls/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Controls/qmldir +%%QT_QMLDIR%%/QtQuick/Dialogs/libqtquickdialogsplugin.so +%%QT_QMLDIR%%/QtQuick/Dialogs/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Dialogs/qmldir +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/libqtquickdialogs2quickimplplugin.so +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Fusion/FileDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Fusion/FileDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Fusion/FolderBreadcrumbBar.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Fusion/FolderDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Fusion/FolderDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Fusion/FontDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Fusion/MessageDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Imagine/FileDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Imagine/FileDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Imagine/FolderBreadcrumbBar.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Imagine/FolderDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Imagine/FolderDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Imagine/FontDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Imagine/MessageDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Material/FileDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Material/FileDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Material/FolderBreadcrumbBar.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Material/FolderDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Material/FolderDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Material/FontDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Material/MessageDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Universal/FileDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Universal/FileDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Universal/FolderBreadcrumbBar.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Universal/FolderDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Universal/FolderDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Universal/FontDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/+Universal/MessageDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FileDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FileDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FileDialogDelegateLabel.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FolderBreadcrumbBar.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FolderDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FolderDialogDelegate.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FolderDialogDelegateLabel.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FontDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/FontDialogContent.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qml/MessageDialog.qml +%%QT_QMLDIR%%/QtQuick/Dialogs/quickimpl/qmldir +%%QT_QMLDIR%%/QtQuick/Layouts/libqquicklayoutsplugin.so +%%QT_QMLDIR%%/QtQuick/Layouts/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Layouts/qmldir +%%QT_QMLDIR%%/QtQuick/LocalStorage/libqmllocalstorageplugin.so +%%QT_QMLDIR%%/QtQuick/LocalStorage/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/LocalStorage/qmldir +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultButton.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultCheckBox.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultComboBox.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultDial.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultFrame.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultGroupBox.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultProgressBar.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultRadioButton.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultScrollBar.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultSlider.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultSpinBox.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultTextArea.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultTextField.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/controls/DefaultTreeViewDelegate.qml +%%QT_QMLDIR%%/QtQuick/NativeStyle/libqtquickcontrols2nativestyleplugin.so +%%QT_QMLDIR%%/QtQuick/NativeStyle/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/NativeStyle/qmldir +%%QT_QMLDIR%%/QtQuick/Particles/libparticlesplugin.so +%%QT_QMLDIR%%/QtQuick/Particles/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Particles/qmldir +%%QT_QMLDIR%%/QtQuick/Shapes/libqmlshapesplugin.so +%%QT_QMLDIR%%/QtQuick/Shapes/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Shapes/qmldir +%%QT_QMLDIR%%/QtQuick/Templates/libqtquicktemplates2plugin.so +%%QT_QMLDIR%%/QtQuick/Templates/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Templates/qmldir +%%QT_QMLDIR%%/QtQuick/Window/libquickwindowplugin.so +%%QT_QMLDIR%%/QtQuick/Window/qmldir +%%QT_QMLDIR%%/QtQuick/Window/quickwindow.qmltypes +%%QT_QMLDIR%%/QtQuick/libqtquick2plugin.so +%%QT_QMLDIR%%/QtQuick/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/qmldir +%%QT_QMLDIR%%/QtQuick/tooling/Component.qml +%%QT_QMLDIR%%/QtQuick/tooling/Enum.qml +%%QT_QMLDIR%%/QtQuick/tooling/Member.qml +%%QT_QMLDIR%%/QtQuick/tooling/Method.qml +%%QT_QMLDIR%%/QtQuick/tooling/Module.qml +%%QT_QMLDIR%%/QtQuick/tooling/Parameter.qml +%%QT_QMLDIR%%/QtQuick/tooling/Property.qml +%%QT_QMLDIR%%/QtQuick/tooling/Signal.qml +%%QT_QMLDIR%%/QtQuick/tooling/libquicktoolingplugin.so +%%QT_QMLDIR%%/QtQuick/tooling/qmldir +%%QT_QMLDIR%%/QtQuick/tooling/quicktooling.qmltypes +%%QT_QMLDIR%%/QtTest/SignalSpy.qml +%%QT_QMLDIR%%/QtTest/TestCase.qml +%%QT_QMLDIR%%/QtTest/libquicktestplugin.so +%%QT_QMLDIR%%/QtTest/plugins.qmltypes +%%QT_QMLDIR%%/QtTest/qmldir +%%QT_QMLDIR%%/QtTest/testlogger.js +%%QT_QMLDIR%%/builtins.qmltypes +%%QT_QMLDIR%%/jsroot.qmltypes +libdata/pkgconfig/Qt6LabsAnimation.pc +libdata/pkgconfig/Qt6LabsFolderListModel.pc +libdata/pkgconfig/Qt6LabsQmlModels.pc +libdata/pkgconfig/Qt6LabsSettings.pc +libdata/pkgconfig/Qt6LabsSharedImage.pc +libdata/pkgconfig/Qt6LabsWavefrontMesh.pc +libdata/pkgconfig/Qt6Qml.pc +libdata/pkgconfig/Qt6QmlCore.pc +libdata/pkgconfig/Qt6QmlIntegration.pc +libdata/pkgconfig/Qt6QmlLocalStorage.pc +libdata/pkgconfig/Qt6QmlModels.pc +libdata/pkgconfig/Qt6QmlWorkerScript.pc +libdata/pkgconfig/Qt6QmlXmlListModel.pc +libdata/pkgconfig/Qt6Quick.pc +libdata/pkgconfig/Qt6QuickControls2.pc +libdata/pkgconfig/Qt6QuickControls2Impl.pc +libdata/pkgconfig/Qt6QuickDialogs2.pc +libdata/pkgconfig/Qt6QuickDialogs2QuickImpl.pc +libdata/pkgconfig/Qt6QuickDialogs2Utils.pc +libdata/pkgconfig/Qt6QuickLayouts.pc +libdata/pkgconfig/Qt6QuickTemplates2.pc +libdata/pkgconfig/Qt6QuickTest.pc +libdata/pkgconfig/Qt6QuickWidgets.pc +%%QT_LIBEXECDIR%%/qmlcachegen +%%QT_LIBEXECDIR%%/qmlimportscanner +%%QT_LIBEXECDIR%%/qmltyperegistrar +%%QT_DATADIR%%/modules/LabsAnimation.json +%%QT_DATADIR%%/modules/LabsFolderListModel.json +%%QT_DATADIR%%/modules/LabsQmlModels.json +%%QT_DATADIR%%/modules/LabsSettings.json +%%QT_DATADIR%%/modules/LabsSharedImage.json +%%QT_DATADIR%%/modules/LabsWavefrontMesh.json +%%QT_DATADIR%%/modules/PacketProtocolPrivate.json +%%QT_DATADIR%%/modules/Qml.json +%%QT_DATADIR%%/modules/QmlCompilerPrivate.json +%%QT_DATADIR%%/modules/QmlCore.json +%%QT_DATADIR%%/modules/QmlDebugPrivate.json +%%QT_DATADIR%%/modules/QmlDomPrivate.json +%%QT_DATADIR%%/modules/QmlIntegration.json +%%QT_DATADIR%%/modules/QmlLintPrivate.json +%%QT_DATADIR%%/modules/QmlLocalStorage.json +%%QT_DATADIR%%/modules/QmlModels.json +%%QT_DATADIR%%/modules/QmlWorkerScript.json +%%QT_DATADIR%%/modules/QmlXmlListModel.json +%%QT_DATADIR%%/modules/Quick.json +%%QT_DATADIR%%/modules/QuickControls2.json +%%QT_DATADIR%%/modules/QuickControls2Impl.json +%%QT_DATADIR%%/modules/QuickControlsTestUtilsPrivate.json +%%QT_DATADIR%%/modules/QuickDialogs2.json +%%QT_DATADIR%%/modules/QuickDialogs2QuickImpl.json +%%QT_DATADIR%%/modules/QuickDialogs2Utils.json +%%QT_DATADIR%%/modules/QuickLayouts.json +%%QT_DATADIR%%/modules/QuickParticlesPrivate.json +%%QT_DATADIR%%/modules/QuickShapesPrivate.json +%%QT_DATADIR%%/modules/QuickTemplates2.json +%%QT_DATADIR%%/modules/QuickTest.json +%%QT_DATADIR%%/modules/QuickTestUtilsPrivate.json +%%QT_DATADIR%%/modules/QuickWidgets.json +@dir lib/cmake/Qt6 +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/x11-toolkits/qt6-quick3d/Makefile b/x11-toolkits/qt6-quick3d/Makefile new file mode 100644 index 000000000000..50d60c5bb5d6 --- /dev/null +++ b/x11-toolkits/qt6-quick3d/Makefile @@ -0,0 +1,33 @@ +PORTNAME= quick3d +DISTVERSION= ${QT6_VERSION} +CATEGORIES= x11-toolkits +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Provides a high-level API for creating 3D content or UIs based on Qt Quick + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicudata.so:devel/icu \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome python:build xorg \ + qt-dist:6 +USE_GL= gl +USE_GNOME= glib20 +USE_QT= base declarative quicktimeline shadertools +USE_XORG= x11 xau xcb xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +INSTALL_TARGET= install + +.include diff --git a/x11-toolkits/qt6-quick3d/distinfo b/x11-toolkits/qt6-quick3d/distinfo new file mode 100644 index 000000000000..5f9219df2a67 --- /dev/null +++ b/x11-toolkits/qt6-quick3d/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482624 +SHA256 (KDE/Qt/6.3.1/qtquick3d-everywhere-src-6.3.1.tar.xz) = 2fa766ee47b8c07412b3b755206ada0715fb07813b64ed069e7205044c061256 +SIZE (KDE/Qt/6.3.1/qtquick3d-everywhere-src-6.3.1.tar.xz) = 37289264 diff --git a/x11-toolkits/qt6-quick3d/pkg-descr b/x11-toolkits/qt6-quick3d/pkg-descr new file mode 100644 index 000000000000..06bb1d9109d5 --- /dev/null +++ b/x11-toolkits/qt6-quick3d/pkg-descr @@ -0,0 +1,7 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Qt Quick is a collection of technologies that are designed to help +developers create intuitive, modern, and fluid user interfaces. + +WWW: http://qt-project.org diff --git a/x11-toolkits/qt6-quick3d/pkg-plist b/x11-toolkits/qt6-quick3d/pkg-plist new file mode 100644 index 000000000000..50142957a45e --- /dev/null +++ b/x11-toolkits/qt6-quick3d/pkg-plist @@ -0,0 +1,931 @@ +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dabstractlight_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dcamera_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dcustomcamera_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dcustommaterial_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3ddefaultmaterial_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3ddirectionallight_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3deffect_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dfrustumcamera_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dgeometry_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dinstancing_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3ditem2d_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3djoint_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dloader_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dmaterial_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dmodel_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dmorphtarget_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dnode_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dnode_p_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dobject_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dobjectchangelistener_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dorthographiccamera_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dperspectivecamera_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dpickresult_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dpointlight_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dprincipledmaterial_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dquaternionanimation_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dquaternionutils_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dreflectionprobe_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3drenderstats_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3drepeater_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dresourceloader_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dsceneenvironment_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dscenemanager_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dscenerenderer_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dscenerootnode_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dshaderutils_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dskeleton_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dspotlight_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dtexture_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dtexturedata_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dutils_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qquick3dviewport_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qtquick3dexports_p.h +%%QT_INCDIR%%/QtQuick3D/%%FULLVER%%/QtQuick3D/private/qtquick3dglobal_p.h +%%QT_INCDIR%%/QtQuick3D/QQuick3D +%%QT_INCDIR%%/QtQuick3D/QQuick3DGeometry +%%QT_INCDIR%%/QtQuick3D/QQuick3DInstancing +%%QT_INCDIR%%/QtQuick3D/QQuick3DObject +%%QT_INCDIR%%/QtQuick3D/QQuick3DTextureData +%%QT_INCDIR%%/QtQuick3D/QtQuick3D +%%QT_INCDIR%%/QtQuick3D/QtQuick3DDepends +%%QT_INCDIR%%/QtQuick3D/QtQuick3DVersion +%%QT_INCDIR%%/QtQuick3D/qquick3d.h +%%QT_INCDIR%%/QtQuick3D/qquick3dgeometry.h +%%QT_INCDIR%%/QtQuick3D/qquick3dinstancing.h +%%QT_INCDIR%%/QtQuick3D/qquick3dobject.h +%%QT_INCDIR%%/QtQuick3D/qquick3dtexturedata.h +%%QT_INCDIR%%/QtQuick3D/qtquick3dexports.h +%%QT_INCDIR%%/QtQuick3D/qtquick3dglobal.h +%%QT_INCDIR%%/QtQuick3D/qtquick3dversion.h +%%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgassetimporter_p.h +%%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgassetimporterfactory_p.h +%%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgassetimporterplugin_p.h +%%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssgassetimportmanager_p.h +%%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qssglightmapuvgenerator_p.h +%%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qtquick3dassetimportexports_p.h +%%QT_INCDIR%%/QtQuick3DAssetImport/%%FULLVER%%/QtQuick3DAssetImport/private/qtquick3dassetimportglobal_p.h +%%QT_INCDIR%%/QtQuick3DAssetImport/QtQuick3DAssetImport +%%QT_INCDIR%%/QtQuick3DAssetImport/QtQuick3DAssetImportDepends +%%QT_INCDIR%%/QtQuick3DAssetImport/QtQuick3DAssetImportVersion +%%QT_INCDIR%%/QtQuick3DAssetImport/qtquick3dassetimportexports.h +%%QT_INCDIR%%/QtQuick3DAssetImport/qtquick3dassetimportversion.h +%%QT_INCDIR%%/QtQuick3DAssetUtils/%%FULLVER%%/QtQuick3DAssetUtils/private/qquick3druntimeloader_p.h +%%QT_INCDIR%%/QtQuick3DAssetUtils/%%FULLVER%%/QtQuick3DAssetUtils/private/qssgqmlutilities_p.h +%%QT_INCDIR%%/QtQuick3DAssetUtils/%%FULLVER%%/QtQuick3DAssetUtils/private/qssgrtutilities_p.h +%%QT_INCDIR%%/QtQuick3DAssetUtils/%%FULLVER%%/QtQuick3DAssetUtils/private/qssgscenedesc_p.h +%%QT_INCDIR%%/QtQuick3DAssetUtils/%%FULLVER%%/QtQuick3DAssetUtils/private/qtquick3dassetutilsexports_p.h +%%QT_INCDIR%%/QtQuick3DAssetUtils/%%FULLVER%%/QtQuick3DAssetUtils/private/qtquick3dassetutilsglobal_p.h +%%QT_INCDIR%%/QtQuick3DAssetUtils/QtQuick3DAssetUtils +%%QT_INCDIR%%/QtQuick3DAssetUtils/QtQuick3DAssetUtilsDepends +%%QT_INCDIR%%/QtQuick3DAssetUtils/QtQuick3DAssetUtilsVersion +%%QT_INCDIR%%/QtQuick3DAssetUtils/qtquick3dassetutilsexports.h +%%QT_INCDIR%%/QtQuick3DAssetUtils/qtquick3dassetutilsversion.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glsl_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslast_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslastdump_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslastvisitor_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslengine_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glsllexer_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslmemorypool_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslparser_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslparsertable_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslsemantic_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslsymbol_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glslsymbols_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glsltype_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/glsltypes_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/%%FULLVER%%/QtQuick3DGlslParser/private/qtquick3dglslparserexports_p.h +%%QT_INCDIR%%/QtQuick3DGlslParser/QtQuick3DGlslParser +%%QT_INCDIR%%/QtQuick3DGlslParser/QtQuick3DGlslParserDepends +%%QT_INCDIR%%/QtQuick3DGlslParser/QtQuick3DGlslParserVersion +%%QT_INCDIR%%/QtQuick3DGlslParser/qtquick3dglslparserexports.h +%%QT_INCDIR%%/QtQuick3DGlslParser/qtquick3dglslparserversion.h +%%QT_INCDIR%%/QtQuick3DHelpers/%%FULLVER%%/QtQuick3DHelpers/private/gridgeometry_p.h +%%QT_INCDIR%%/QtQuick3DHelpers/%%FULLVER%%/QtQuick3DHelpers/private/qtquick3dhelpersexports_p.h +%%QT_INCDIR%%/QtQuick3DHelpers/%%FULLVER%%/QtQuick3DHelpers/private/qtquick3dhelpersglobal_p.h +%%QT_INCDIR%%/QtQuick3DHelpers/%%FULLVER%%/QtQuick3DHelpers/private/randominstancing_p.h +%%QT_INCDIR%%/QtQuick3DHelpers/QtQuick3DHelpers +%%QT_INCDIR%%/QtQuick3DHelpers/QtQuick3DHelpersDepends +%%QT_INCDIR%%/QtQuick3DHelpers/QtQuick3DHelpersVersion +%%QT_INCDIR%%/QtQuick3DHelpers/qtquick3dhelpersexports.h +%%QT_INCDIR%%/QtQuick3DHelpers/qtquick3dhelpersversion.h +%%QT_INCDIR%%/QtQuick3DIblBaker/%%FULLVER%%/QtQuick3DIblBaker/private/qssgiblbaker_p.h +%%QT_INCDIR%%/QtQuick3DIblBaker/%%FULLVER%%/QtQuick3DIblBaker/private/qtquick3diblbaker_p.h +%%QT_INCDIR%%/QtQuick3DIblBaker/%%FULLVER%%/QtQuick3DIblBaker/private/qtquick3diblbakerexports_p.h +%%QT_INCDIR%%/QtQuick3DIblBaker/QtQuick3DIblBaker +%%QT_INCDIR%%/QtQuick3DIblBaker/QtQuick3DIblBakerDepends +%%QT_INCDIR%%/QtQuick3DIblBaker/QtQuick3DIblBakerVersion +%%QT_INCDIR%%/QtQuick3DIblBaker/qtquick3diblbakerexports.h +%%QT_INCDIR%%/QtQuick3DIblBaker/qtquick3diblbakerversion.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticle_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticleabstractshape_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticleaffector_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticleattractor_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlecustomshape_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticledata_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticledirection_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticledynamicburst_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticleemitburst_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticleemitter_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlegravity_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlemodelblendparticle_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlemodelparticle_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlemodelshape_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlepointrotator_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlerandomizer_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticleshape_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticleshapedatautils_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlespriteparticle_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlespritesequence_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlesystem_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlesystemlogging_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticletargetdirection_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticletrailemitter_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticleutils_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlevectordirection_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qquick3dparticlewander_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qtquick3dparticlesexports_p.h +%%QT_INCDIR%%/QtQuick3DParticles/%%FULLVER%%/QtQuick3DParticles/private/qtquick3dparticlesglobal_p.h +%%QT_INCDIR%%/QtQuick3DParticles/QtQuick3DParticles +%%QT_INCDIR%%/QtQuick3DParticles/QtQuick3DParticlesDepends +%%QT_INCDIR%%/QtQuick3DParticles/QtQuick3DParticlesVersion +%%QT_INCDIR%%/QtQuick3DParticles/qtquick3dparticlesexports.h +%%QT_INCDIR%%/QtQuick3DParticles/qtquick3dparticlesglobal.h +%%QT_INCDIR%%/QtQuick3DParticles/qtquick3dparticlesversion.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgperframeallocator_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderableimage_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderableobjects_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderbuffermanager_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercamera_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderclippingfrustum_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercommands_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercontextcore_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendercustommaterial_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderdefaultmaterial_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderdefaultmaterialshadergenerator_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendereffect_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderer_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererimpllayerrenderdata_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererimpllayerrenderhelper_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererimpllayerrenderpreparationdata_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendererutil_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendergeometry_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendergraphobject_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderimage_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderimagetexture_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderinstancetable_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderitem2d_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderjoint_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderlayer_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderlight_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderloadedtexture_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermaterialdirty_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermaterialshadergenerator_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermesh_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermodel_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendermorphtarget_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendernode_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderparticles_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderray_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderreflectionmap_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderreflectionprobe_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderresourceloader_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershadercache_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershadercodegenerator_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershaderkeys_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershaderlibrarymanager_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershadermetadata_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendershadowmap_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrenderskeleton_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrendertexturedata_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrhicontext_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrhicustommaterialsystem_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrhieffectsystem_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrhiparticles_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgrhiquadrenderer_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgruntimerenderlogging_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgshadermapkey_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgshadermaterialadapter_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgshaderresourcemergecontext_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qssgvertexpipelineimpl_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qtquick3druntimerenderexports_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/%%FULLVER%%/QtQuick3DRuntimeRender/private/qtquick3druntimerenderglobal_p.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/QtQuick3DRuntimeRender +%%QT_INCDIR%%/QtQuick3DRuntimeRender/QtQuick3DRuntimeRenderDepends +%%QT_INCDIR%%/QtQuick3DRuntimeRender/QtQuick3DRuntimeRenderVersion +%%QT_INCDIR%%/QtQuick3DRuntimeRender/qtquick3druntimerenderexports.h +%%QT_INCDIR%%/QtQuick3DRuntimeRender/qtquick3druntimerenderversion.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qqsbcollection_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qquick3dprofiler_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgbounds3_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgdataref_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssginvasivelinkedlist_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgmesh_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgmeshbvh_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgmeshbvhbuilder_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgoption_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgplane_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgrenderbasetypes_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qssgutils_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qtquick3dutilsexports_p.h +%%QT_INCDIR%%/QtQuick3DUtils/%%FULLVER%%/QtQuick3DUtils/private/qtquick3dutilsglobal_p.h +%%QT_INCDIR%%/QtQuick3DUtils/QtQuick3DUtils +%%QT_INCDIR%%/QtQuick3DUtils/QtQuick3DUtilsDepends +%%QT_INCDIR%%/QtQuick3DUtils/QtQuick3DUtilsVersion +%%QT_INCDIR%%/QtQuick3DUtils/qtquick3dutilsexports.h +%%QT_INCDIR%%/QtQuick3DUtils/qtquick3dutilsversion.h +lib/cmake/Qt6/FindWrapQuick3DAssimp.cmake +lib/cmake/Qt6BuildInternals/StandaloneTests/QtQuick3DTestsConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qquick3dpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dassetutilspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3deffectpluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dhelperspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticleeffectspluginTargets.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquick3dparticles3dpluginTargets.cmake +lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfig.cmake +lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfigVersion.cmake +lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/Qt6QQuick3DProfilerAdapterFactoryPluginTargets.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DConfig.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DConfigVersion.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DConfigVersionImpl.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DDependencies.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DMacros.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DTargets.cmake +lib/cmake/Qt6Quick3D/Qt6Quick3DVersionlessTargets.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6AssimpImporterPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6AssimpImporterPluginConfig.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6AssimpImporterPluginConfigVersion.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6AssimpImporterPluginConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6AssimpImporterPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6AssimpImporterPluginTargets.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6Quick3DAssetImportAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6Quick3DAssetImportConfig.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6Quick3DAssetImportConfigVersion.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6Quick3DAssetImportConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6Quick3DAssetImportDependencies.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6Quick3DAssetImportTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6Quick3DAssetImportTargets.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6Quick3DAssetImportVersionlessTargets.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginConfig.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginConfigVersion.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DAssetImport/Qt6UipAssetImporterPluginTargets.cmake +lib/cmake/Qt6Quick3DAssetUtils/Qt6Quick3DAssetUtilsAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DAssetUtils/Qt6Quick3DAssetUtilsConfig.cmake +lib/cmake/Qt6Quick3DAssetUtils/Qt6Quick3DAssetUtilsConfigVersion.cmake +lib/cmake/Qt6Quick3DAssetUtils/Qt6Quick3DAssetUtilsConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DAssetUtils/Qt6Quick3DAssetUtilsDependencies.cmake +lib/cmake/Qt6Quick3DAssetUtils/Qt6Quick3DAssetUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DAssetUtils/Qt6Quick3DAssetUtilsTargets.cmake +lib/cmake/Qt6Quick3DAssetUtils/Qt6Quick3DAssetUtilsVersionlessTargets.cmake +lib/cmake/Qt6Quick3DEffects/Qt6Quick3DEffectsAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DEffects/Qt6Quick3DEffectsConfig.cmake +lib/cmake/Qt6Quick3DEffects/Qt6Quick3DEffectsConfigVersion.cmake +lib/cmake/Qt6Quick3DEffects/Qt6Quick3DEffectsConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DEffects/Qt6Quick3DEffectsDependencies.cmake +lib/cmake/Qt6Quick3DEffects/Qt6Quick3DEffectsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DEffects/Qt6Quick3DEffectsTargets.cmake +lib/cmake/Qt6Quick3DEffects/Qt6Quick3DEffectsVersionlessTargets.cmake +lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateConfig.cmake +lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateConfigVersion.cmake +lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateDependencies.cmake +lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateTargets.cmake +lib/cmake/Qt6Quick3DGlslParserPrivate/Qt6Quick3DGlslParserPrivateVersionlessTargets.cmake +lib/cmake/Qt6Quick3DHelpers/Qt6Quick3DHelpersAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DHelpers/Qt6Quick3DHelpersConfig.cmake +lib/cmake/Qt6Quick3DHelpers/Qt6Quick3DHelpersConfigVersion.cmake +lib/cmake/Qt6Quick3DHelpers/Qt6Quick3DHelpersConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DHelpers/Qt6Quick3DHelpersDependencies.cmake +lib/cmake/Qt6Quick3DHelpers/Qt6Quick3DHelpersTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DHelpers/Qt6Quick3DHelpersTargets.cmake +lib/cmake/Qt6Quick3DHelpers/Qt6Quick3DHelpersVersionlessTargets.cmake +lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerConfig.cmake +lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerConfigVersion.cmake +lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerDependencies.cmake +lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerTargets.cmake +lib/cmake/Qt6Quick3DIblBaker/Qt6Quick3DIblBakerVersionlessTargets.cmake +lib/cmake/Qt6Quick3DParticleEffects/Qt6Quick3DParticleEffectsAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DParticleEffects/Qt6Quick3DParticleEffectsConfig.cmake +lib/cmake/Qt6Quick3DParticleEffects/Qt6Quick3DParticleEffectsConfigVersion.cmake +lib/cmake/Qt6Quick3DParticleEffects/Qt6Quick3DParticleEffectsConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DParticleEffects/Qt6Quick3DParticleEffectsDependencies.cmake +lib/cmake/Qt6Quick3DParticleEffects/Qt6Quick3DParticleEffectsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DParticleEffects/Qt6Quick3DParticleEffectsTargets.cmake +lib/cmake/Qt6Quick3DParticleEffects/Qt6Quick3DParticleEffectsVersionlessTargets.cmake +lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesConfig.cmake +lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesConfigVersion.cmake +lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesDependencies.cmake +lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesTargets.cmake +lib/cmake/Qt6Quick3DParticles/Qt6Quick3DParticlesVersionlessTargets.cmake +lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderConfig.cmake +lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderConfigVersion.cmake +lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderDependencies.cmake +lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderTargets.cmake +lib/cmake/Qt6Quick3DRuntimeRender/Qt6Quick3DRuntimeRenderVersionlessTargets.cmake +lib/cmake/Qt6Quick3DTools/Qt6Quick3DToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DTools/Qt6Quick3DToolsConfig.cmake +lib/cmake/Qt6Quick3DTools/Qt6Quick3DToolsConfigVersion.cmake +lib/cmake/Qt6Quick3DTools/Qt6Quick3DToolsConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DTools/Qt6Quick3DToolsDependencies.cmake +lib/cmake/Qt6Quick3DTools/Qt6Quick3DToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DTools/Qt6Quick3DToolsTargets.cmake +lib/cmake/Qt6Quick3DTools/Qt6Quick3DToolsVersionlessTargets.cmake +lib/cmake/Qt6Quick3DUtils/Qt6Quick3DUtilsAdditionalTargetInfo.cmake +lib/cmake/Qt6Quick3DUtils/Qt6Quick3DUtilsConfig.cmake +lib/cmake/Qt6Quick3DUtils/Qt6Quick3DUtilsConfigVersion.cmake +lib/cmake/Qt6Quick3DUtils/Qt6Quick3DUtilsConfigVersionImpl.cmake +lib/cmake/Qt6Quick3DUtils/Qt6Quick3DUtilsDependencies.cmake +lib/cmake/Qt6Quick3DUtils/Qt6Quick3DUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Quick3DUtils/Qt6Quick3DUtilsTargets.cmake +lib/cmake/Qt6Quick3DUtils/Qt6Quick3DUtilsVersionlessTargets.cmake +%%QT_BINDIR%%/balsam +%%QT_BINDIR%%/balsamui +%%QT_BINDIR%%/instancer +%%QT_BINDIR%%/materialeditor +%%QT_BINDIR%%/meshdebug +%%QT_BINDIR%%/shadergen +%%QT_BINDIR%%/shapegen +%%QT_LIBDIR%%/libQt6Quick3D.prl +%%QT_LIBDIR%%/libQt6Quick3D.so +%%QT_LIBDIR%%/libQt6Quick3D.so.6 +%%QT_LIBDIR%%/libQt6Quick3D.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DAssetImport.prl +%%QT_LIBDIR%%/libQt6Quick3DAssetImport.so +%%QT_LIBDIR%%/libQt6Quick3DAssetImport.so.6 +%%QT_LIBDIR%%/libQt6Quick3DAssetImport.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DAssetUtils.prl +%%QT_LIBDIR%%/libQt6Quick3DAssetUtils.so +%%QT_LIBDIR%%/libQt6Quick3DAssetUtils.so.6 +%%QT_LIBDIR%%/libQt6Quick3DAssetUtils.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DEffects.prl +%%QT_LIBDIR%%/libQt6Quick3DEffects.so +%%QT_LIBDIR%%/libQt6Quick3DEffects.so.6 +%%QT_LIBDIR%%/libQt6Quick3DEffects.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DGlslParser.prl +%%QT_LIBDIR%%/libQt6Quick3DGlslParser.so +%%QT_LIBDIR%%/libQt6Quick3DGlslParser.so.6 +%%QT_LIBDIR%%/libQt6Quick3DGlslParser.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DHelpers.prl +%%QT_LIBDIR%%/libQt6Quick3DHelpers.so +%%QT_LIBDIR%%/libQt6Quick3DHelpers.so.6 +%%QT_LIBDIR%%/libQt6Quick3DHelpers.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DIblBaker.prl +%%QT_LIBDIR%%/libQt6Quick3DIblBaker.so +%%QT_LIBDIR%%/libQt6Quick3DIblBaker.so.6 +%%QT_LIBDIR%%/libQt6Quick3DIblBaker.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DParticleEffects.prl +%%QT_LIBDIR%%/libQt6Quick3DParticleEffects.so +%%QT_LIBDIR%%/libQt6Quick3DParticleEffects.so.6 +%%QT_LIBDIR%%/libQt6Quick3DParticleEffects.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DParticles.prl +%%QT_LIBDIR%%/libQt6Quick3DParticles.so +%%QT_LIBDIR%%/libQt6Quick3DParticles.so.6 +%%QT_LIBDIR%%/libQt6Quick3DParticles.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DRuntimeRender.prl +%%QT_LIBDIR%%/libQt6Quick3DRuntimeRender.so +%%QT_LIBDIR%%/libQt6Quick3DRuntimeRender.so.6 +%%QT_LIBDIR%%/libQt6Quick3DRuntimeRender.so.%%FULLVER%% +%%QT_LIBDIR%%/libQt6Quick3DUtils.prl +%%QT_LIBDIR%%/libQt6Quick3DUtils.so +%%QT_LIBDIR%%/libQt6Quick3DUtils.so.6 +%%QT_LIBDIR%%/libQt6Quick3DUtils.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6quick3d_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3dassetimport_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3dassetutils_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3deffects_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3dglslparserprivate_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3dhelpers_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3diblbaker_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3dparticleeffects_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3dparticles_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3druntimerender_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_LIBDIR%%/metatypes/qt6quick3dutils_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_quick3d.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3d_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dassetimport.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dassetimport_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dassetutils.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dassetutils_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3deffects.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3deffects_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dglslparser_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dhelpers.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dhelpers_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3diblbaker.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3diblbaker_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dparticleeffects.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dparticleeffects_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dparticles.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dparticles_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3druntimerender.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3druntimerender_private.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dutils.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quick3dutils_private.pri +%%QT_PLUGINDIR%%/assetimporters/libassimp.so +%%QT_PLUGINDIR%%/assetimporters/libuip.so +%%QT_PLUGINDIR%%/qmltooling/libqmldbg_quick3dprofiler.so +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/IdComboBox.qml +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/NodeSection.qml +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/RuntimeLoaderSection.qml +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/RuntimeLoaderSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/assetutils.metainfo +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/images/dummy.png +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/images/dummy16.png +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/images/dummy@2x.png +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/images/runtimeloader.png +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/images/runtimeloader16.png +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/designer/images/runtimeloader@2x.png +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/libqtquick3dassetutilsplugin.so +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick3D/AssetUtils/qmldir +%%QT_QMLDIR%%/QtQuick3D/Effects/AdditiveColorGradient.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/Blur.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/BrushStrokes.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/ChromaticAberration.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/ColorMaster.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/DepthOfFieldHQBlur.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/Desaturate.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/DistortionRipple.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/DistortionSphere.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/DistortionSpiral.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/EdgeDetect.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/Emboss.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/Flip.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/Fxaa.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/GaussianBlur.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/HDRBloomTonemap.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/MotionBlur.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/Quick3DEffects.qmltypes +%%QT_QMLDIR%%/QtQuick3D/Effects/SCurveTonemap.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/Scatter.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/TiltShift.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/Vignette.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/AdditiveColorGradientSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/AdditiveColorGradientSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/BlurSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/BlurSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/BrushStrokesSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/BrushStrokesSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/ChromaticAberrationSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/ChromaticAberrationSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/ColorMasterSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/ColorMasterSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DepthOfFieldHQBlurSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DepthOfFieldHQBlurSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DesaturateSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DesaturateSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionRippleSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionRippleSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionSphereSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionSphereSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionSpiralSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/DistortionSpiralSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/EdgeDetectSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/EdgeDetectSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/EmbossSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/EmbossSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/FlipSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/FlipSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/FxaaSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/FxaaSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/GaussianBlurSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/GaussianBlurSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/HDRBloomTonemapSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/HDRBloomTonemapSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/IdComboBox.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/MotionBlurSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/MotionBlurSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/SCurveTonemapSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/SCurveTonemapSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/ScatterSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/ScatterSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/TiltShiftSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/TiltShiftSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/VignetteSection.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/VignetteSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/effectlib.metainfo +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/images/effect.png +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/images/effect16.png +%%QT_QMLDIR%%/QtQuick3D/Effects/designer/images/effect@2x.png +%%QT_QMLDIR%%/QtQuick3D/Effects/libqtquick3deffectplugin.so +%%QT_QMLDIR%%/QtQuick3D/Effects/qmldir +%%QT_QMLDIR%%/QtQuick3D/Helpers/AxisHelper.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/DebugView.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/WasdController.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/AxisHelperSection.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/AxisHelperSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/DebugViewSection.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/DebugViewSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/GridGeometrySection.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/GridGeometrySpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/IdComboBox.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/NodeSection.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/WasdControllerSection.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/WasdControllerSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/helpers.metainfo +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/axishelper.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/axishelper16.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/axishelper@2x.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/debugview.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/debugview16.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/debugview@2x.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/dummy.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/dummy16.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/dummy@2x.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/gridgeometry.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/gridgeometry16.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/gridgeometry@2x.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/wasdcontroller.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/wasdcontroller16.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/designer/images/wasdcontroller@2x.png +%%QT_QMLDIR%%/QtQuick3D/Helpers/libqtquick3dhelpersplugin.so +%%QT_QMLDIR%%/QtQuick3D/Helpers/meshes/axisGrid.mesh +%%QT_QMLDIR%%/QtQuick3D/Helpers/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick3D/Helpers/qmldir +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/Quick3DParticleEffects.qmltypes +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/color_table.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/color_table2.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/droplet.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/dummy.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/dummy16.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/dummy@2x.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/rain.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/ripple.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/smoke2.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/smoke_sprite.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/smoke_sprite2.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/snowflake.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/sphere.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/images/splash7.png +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/particleeffects.metainfo +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_clouds.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_dust.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_exhaust.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_fire.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_heavyrain.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_heavyrain_tirespray.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_lightrain.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_lightrain_tirespray.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_rainmist.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_snow.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/designer/source/particleeffect_steam.qml +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/libqtquick3dparticleeffectsplugin.so +%%QT_QMLDIR%%/QtQuick3D/ParticleEffects/qmldir +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Affector3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Affector3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Attractor3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Attractor3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/DynamicBurst3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/DynamicBurst3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/EmitBurst3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/EmitBurst3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Gravity3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Gravity3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/IdComboBox.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ModelBlendParticle3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ModelBlendParticle3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ModelParticle3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ModelParticle3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/NodeSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/NodeSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Particle3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Particle3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ParticleEmitter3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ParticleEmitter3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ParticleModelShape3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ParticleModelShape3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ParticleShape3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ParticleShape3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ParticleSystem3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/ParticleSystem3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/PointRotator3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/PointRotator3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/SpriteParticle3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/SpriteParticle3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/SpriteSequence3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/SpriteSequence3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/TargetDirection3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/TargetDirection3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/TrailEmitter3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/TrailEmitter3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/VectorDirection3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/VectorDirection3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Wander3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/Wander3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/attractor-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/attractor-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/attractor-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/dummy.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/dummy16.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/dummy@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/emit-burst-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/emit-burst-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/emit-burst-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/emitter-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/emitter-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/emitter-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/gravity-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/gravity-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/gravity-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-blend-particle-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-blend-particle-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-blend-particle-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-particle-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-particle-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-particle-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-shape-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-shape-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/model-shape-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/particle-shape-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/particle-shape-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/particle-shape-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/particle-system-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/particle-system-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/particle-system-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/point-rotator-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/point-rotator-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/point-rotator-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/sprite-particle-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/sprite-particle-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/sprite-particle-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/sprite-sequence-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/sprite-sequence-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/sprite-sequence-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/target-direction-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/target-direction-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/target-direction-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/trail-emitter-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/trail-emitter-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/trail-emitter-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/vector-direction-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/vector-direction-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/vector-direction-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/wander-16px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/wander-24px.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/images/wander-24px@2x.png +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/particles3d.metainfo +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_animatedsprite_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_attractor_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_burst_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_modelblend_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_modelshape_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_particletrail_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_sprite_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/designer/source/particlesystem_wander_template.qml +%%QT_QMLDIR%%/QtQuick3D/Particles3D/libqtquick3dparticles3dplugin.so +%%QT_QMLDIR%%/QtQuick3D/Particles3D/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick3D/Particles3D/qmldir +%%QT_QMLDIR%%/QtQuick3D/designer/AbstractLightSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/BufferInputSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/BufferInputSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/BufferSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/BufferSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/CustomMaterialSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/CustomMaterialSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/DefaultMaterialSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/DefaultMaterialSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/DirectionalLightSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/DirectionalLightSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/EffectSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/EffectSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/FileInstancingSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/FileInstancingSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/FrustumCameraSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/FrustumCameraSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/IdComboBox.qml +%%QT_QMLDIR%%/QtQuick3D/designer/InstanceListEntrySection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/InstanceListEntrySpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/InstanceListSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/InstanceListSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/JointSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/JointSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/Loader3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/Loader3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/MaterialSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/ModelSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/ModelSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/MorphTargetSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/MorphTargetSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/NodeSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/NodeSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/Object3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/OrthographicCameraSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/OrthographicCameraSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/PassSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/PassSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/PerspectiveCameraSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/PerspectiveCameraSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/PointLightSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/PointLightSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/PrincipledMaterialSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/PrincipledMaterialSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/ReflectionProbeSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/ReflectionProbeSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/Repeater3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/Repeater3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/SceneEnvironmentSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/SceneEnvironmentSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/SetUniformValueSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/SetUniformValueSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/ShaderSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/ShaderSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/ShadowSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/SpotLightSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/SpotLightSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/TextureInputSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/TextureInputSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/TextureSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/TextureSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/View3DSection.qml +%%QT_QMLDIR%%/QtQuick3D/designer/View3DSpecifics.qml +%%QT_QMLDIR%%/QtQuick3D/designer/images/camera.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/camera16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/camera@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cone.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cone16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cone@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cube.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cube16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cube@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/custommaterial.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/custommaterial16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/custommaterial@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cylinder.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cylinder16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/cylinder@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/dummy.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/dummy16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/dummy@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/effect.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/effect16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/effect@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/fileinstancing.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/fileinstancing16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/fileinstancing@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/group.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/group16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/group@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/instancelist.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/instancelist16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/instancelist@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/instancelistentry.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/instancelistentry16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/instancelistentry@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/joint.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/joint16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/joint@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightdirectional.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightdirectional16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightdirectional@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightpoint.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightpoint16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightpoint@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightspot.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightspot16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/lightspot@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/loader3d.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/loader3d16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/loader3d@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/material.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/material16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/material@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/model16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/morphtarget.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/morphtarget16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/morphtarget@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/plane.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/plane16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/plane@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/repeater3d.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/repeater3d16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/repeater3d@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/scene.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/scene16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/scene@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/shadercommand.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/shadercommand16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/shadercommand@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/shaderutil.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/shaderutil16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/shaderutil@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/skeleton.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/skeleton16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/skeleton@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/sphere.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/sphere16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/sphere@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/texture.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/texture16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/texture@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/view3D.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/view3D16.png +%%QT_QMLDIR%%/QtQuick3D/designer/images/view3D@2x.png +%%QT_QMLDIR%%/QtQuick3D/designer/quick3d.metainfo +%%QT_QMLDIR%%/QtQuick3D/designer/source/custom_material_default_shader.frag +%%QT_QMLDIR%%/QtQuick3D/designer/source/effect_default_shader.frag +%%QT_QMLDIR%%/QtQuick3D/designer/source/effect_template.qml +%%QT_QMLDIR%%/QtQuick3D/designer/source/view3D_template.qml +%%QT_QMLDIR%%/QtQuick3D/libqquick3dplugin.so +%%QT_QMLDIR%%/QtQuick3D/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick3D/qmldir +libdata/pkgconfig/Qt6Quick3D.pc +libdata/pkgconfig/Qt6Quick3DAssetImport.pc +libdata/pkgconfig/Qt6Quick3DAssetUtils.pc +libdata/pkgconfig/Qt6Quick3DEffects.pc +libdata/pkgconfig/Qt6Quick3DHelpers.pc +libdata/pkgconfig/Qt6Quick3DIblBaker.pc +libdata/pkgconfig/Qt6Quick3DParticleEffects.pc +libdata/pkgconfig/Qt6Quick3DParticles.pc +libdata/pkgconfig/Qt6Quick3DRuntimeRender.pc +libdata/pkgconfig/Qt6Quick3DUtils.pc +%%QT_DATADIR%%/modules/Quick3D.json +%%QT_DATADIR%%/modules/Quick3DAssetImport.json +%%QT_DATADIR%%/modules/Quick3DAssetUtils.json +%%QT_DATADIR%%/modules/Quick3DEffects.json +%%QT_DATADIR%%/modules/Quick3DGlslParserPrivate.json +%%QT_DATADIR%%/modules/Quick3DHelpers.json +%%QT_DATADIR%%/modules/Quick3DIblBaker.json +%%QT_DATADIR%%/modules/Quick3DParticleEffects.json +%%QT_DATADIR%%/modules/Quick3DParticles.json +%%QT_DATADIR%%/modules/Quick3DRuntimeRender.json +%%QT_DATADIR%%/modules/Quick3DUtils.json +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6Qml/QmlPlugins +@dir %%QT_CMAKEDIR%%/Qt6Quick3D +@dir %%QT_CMAKEDIR%%/Qt6Quick3DAssetImport +@dir %%QT_CMAKEDIR%%/Qt6Quick3DAssetUtils +@dir %%QT_CMAKEDIR%%/Qt6Quick3DEffects +@dir %%QT_CMAKEDIR%%/Qt6Quick3DGlslParserPrivate +@dir %%QT_CMAKEDIR%%/Qt6Quick3DHelpers +@dir %%QT_CMAKEDIR%%/Qt6Quick3DIblBaker +@dir %%QT_CMAKEDIR%%/Qt6Quick3DParticleEffects +@dir %%QT_CMAKEDIR%%/Qt6Quick3DParticles +@dir %%QT_CMAKEDIR%%/Qt6Quick3DRuntimeRender +@dir %%QT_CMAKEDIR%%/Qt6Quick3DTools +@dir %%QT_CMAKEDIR%%/Qt6Quick3DUtils +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6Qml/QmlPlugins +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3D +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DAssetImport +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DAssetUtils +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DEffects +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DGlslParserPrivate +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DHelpers +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DIblBaker +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DParticleEffects +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DParticles +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DRuntimeRender +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DTools +@dir %%QT_LIBDIR%%/cmake/Qt6Quick3DUtils +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/x11-toolkits/qt6-quicktimeline/Makefile b/x11-toolkits/qt6-quicktimeline/Makefile new file mode 100644 index 000000000000..672ecbe2f5a7 --- /dev/null +++ b/x11-toolkits/qt6-quicktimeline/Makefile @@ -0,0 +1,31 @@ +PORTNAME= quicktimeline +DISTVERSION= ${QT6_VERSION} +CATEGORIES= x11-toolkits +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Enables keyframe-based animations and parameterization. + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ + libexpat.so:textproc/expat2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicudata.so:devel/icu \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome xorg \ + qt-dist:6 +USE_GL= egl gl opengl +USE_GNOME= glib20 +USE_QT= base declarative +USE_XORG= x11 xau xcb xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/x11-toolkits/qt6-quicktimeline/distinfo b/x11-toolkits/qt6-quicktimeline/distinfo new file mode 100644 index 000000000000..dc281441a747 --- /dev/null +++ b/x11-toolkits/qt6-quicktimeline/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482625 +SHA256 (KDE/Qt/6.3.1/qtquicktimeline-everywhere-src-6.3.1.tar.xz) = 58a13cf0ce8e7755639f20684078733af24f5a317f6ddb40d6079c8c5a28ebbe +SIZE (KDE/Qt/6.3.1/qtquicktimeline-everywhere-src-6.3.1.tar.xz) = 113464 diff --git a/x11-toolkits/qt6-quicktimeline/pkg-descr b/x11-toolkits/qt6-quicktimeline/pkg-descr new file mode 100644 index 000000000000..1890e0fe10e0 --- /dev/null +++ b/x11-toolkits/qt6-quicktimeline/pkg-descr @@ -0,0 +1,6 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Enables keyframe-based animations and parameterization. + +WWW: http://qt-project.org diff --git a/x11-toolkits/qt6-quicktimeline/pkg-plist b/x11-toolkits/qt6-quicktimeline/pkg-plist new file mode 100644 index 000000000000..0a43f02fb15c --- /dev/null +++ b/x11-toolkits/qt6-quicktimeline/pkg-plist @@ -0,0 +1,46 @@ +%%QT_INCDIR%%/QtQuickTimeline/%%FULLVER%%/QtQuickTimeline/private/qquickkeyframe_p.h +%%QT_INCDIR%%/QtQuickTimeline/%%FULLVER%%/QtQuickTimeline/private/qquickkeyframedatautils_p.h +%%QT_INCDIR%%/QtQuickTimeline/%%FULLVER%%/QtQuickTimeline/private/qquicktimeline_p.h +%%QT_INCDIR%%/QtQuickTimeline/%%FULLVER%%/QtQuickTimeline/private/qquicktimelineanimation_p.h +%%QT_INCDIR%%/QtQuickTimeline/%%FULLVER%%/QtQuickTimeline/private/qtquicktimelineexports_p.h +%%QT_INCDIR%%/QtQuickTimeline/%%FULLVER%%/QtQuickTimeline/private/qtquicktimelineglobal_p.h +%%QT_INCDIR%%/QtQuickTimeline/QtQuickTimeline +%%QT_INCDIR%%/QtQuickTimeline/QtQuickTimelineDepends +%%QT_INCDIR%%/QtQuickTimeline/QtQuickTimelineVersion +%%QT_INCDIR%%/QtQuickTimeline/qtquicktimelineexports.h +%%QT_INCDIR%%/QtQuickTimeline/qtquicktimelineglobal.h +%%QT_INCDIR%%/QtQuickTimeline/qtquicktimelineversion.h +lib/cmake/Qt6BuildInternals/StandaloneTests/QtQuickTimelineTestsConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginAdditionalTargetInfo.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfig.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfigVersion.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginConfigVersionImpl.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktimelinepluginTargets.cmake +lib/cmake/Qt6QuickTimeline/Qt6QuickTimelineAdditionalTargetInfo.cmake +lib/cmake/Qt6QuickTimeline/Qt6QuickTimelineConfig.cmake +lib/cmake/Qt6QuickTimeline/Qt6QuickTimelineConfigVersion.cmake +lib/cmake/Qt6QuickTimeline/Qt6QuickTimelineConfigVersionImpl.cmake +lib/cmake/Qt6QuickTimeline/Qt6QuickTimelineDependencies.cmake +lib/cmake/Qt6QuickTimeline/Qt6QuickTimelineTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6QuickTimeline/Qt6QuickTimelineTargets.cmake +lib/cmake/Qt6QuickTimeline/Qt6QuickTimelineVersionlessTargets.cmake +%%QT_LIBDIR%%/libQt6QuickTimeline.prl +%%QT_LIBDIR%%/libQt6QuickTimeline.so +%%QT_LIBDIR%%/libQt6QuickTimeline.so.6 +%%QT_LIBDIR%%/libQt6QuickTimeline.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6quicktimeline_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_quicktimeline.pri +%%QT_MKSPECDIR%%/modules/qt_lib_quicktimeline_private.pri +%%QT_QMLDIR%%/QtQuick/Timeline/libqtquicktimelineplugin.so +%%QT_QMLDIR%%/QtQuick/Timeline/plugins.qmltypes +%%QT_QMLDIR%%/QtQuick/Timeline/qmldir +libdata/pkgconfig/Qt6QuickTimeline.pc +%%QT_DATADIR%%/modules/QuickTimeline.json +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6Qml/QmlPlugins +@dir %%QT_CMAKEDIR%%/Qt6QuickTimeline +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6Qml/QmlPlugins +@dir %%QT_LIBDIR%%/cmake/Qt6QuickTimeline +@dir %%QT_LIBDIR%%/pkgconfig diff --git a/x11-toolkits/qt6-shadertools/Makefile b/x11-toolkits/qt6-shadertools/Makefile new file mode 100644 index 000000000000..6c279962562e --- /dev/null +++ b/x11-toolkits/qt6-shadertools/Makefile @@ -0,0 +1,31 @@ +PORTNAME= shadertools +DISTVERSION= ${QT6_VERSION} +CATEGORIES= x11-toolkits +PKGNAMEPREFIX= qt6- + +MAINTAINER= kde@FreeBSD.org +COMMENT= Provides tools for the cross-platform Qt shader pipeline + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ + libdouble-conversion.so:devel/double-conversion \ + libexpat.so:textproc/expat2 \ + libfreetype.so:print/freetype2 \ + libgraphite2.so:graphics/graphite2 \ + libharfbuzz.so:print/harfbuzz \ + libicui18n.so:devel/icu \ + libpcre.so:devel/pcre \ + libpcre2-16.so:devel/pcre2 \ + libpng16.so:graphics/png \ + libxkbcommon.so:x11/libxkbcommon \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang gettext-runtime gl gnome python:build xorg \ + qt-dist:6 +USE_GL= gl +USE_GNOME= glib20 +USE_QT= base +USE_XORG= x11 xau xcb xdmcp +USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} + +.include diff --git a/x11-toolkits/qt6-shadertools/distinfo b/x11-toolkits/qt6-shadertools/distinfo new file mode 100644 index 000000000000..3ab6f2e21f35 --- /dev/null +++ b/x11-toolkits/qt6-shadertools/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1660482626 +SHA256 (KDE/Qt/6.3.1/qtshadertools-everywhere-src-6.3.1.tar.xz) = 59b77176961528cc7b0c9325134655e273aa87b4cb386c0f4683d8f2852e435a +SIZE (KDE/Qt/6.3.1/qtshadertools-everywhere-src-6.3.1.tar.xz) = 998200 diff --git a/x11-toolkits/qt6-shadertools/pkg-descr b/x11-toolkits/qt6-shadertools/pkg-descr new file mode 100644 index 000000000000..2dd6f60c40b9 --- /dev/null +++ b/x11-toolkits/qt6-shadertools/pkg-descr @@ -0,0 +1,8 @@ +Qt is a cross-platform application and UI framework for developers +using C++ or QML, a CSS/JavaScript-like language. + +Provides tools for the cross-platform Qt shader pipeline. +These enable processing graphics and compute shaders to make them usable for +Qt Quick and other components in the Qt ecosystem. + +WWW: http://qt-project.org diff --git a/x11-toolkits/qt6-shadertools/pkg-plist b/x11-toolkits/qt6-shadertools/pkg-plist new file mode 100644 index 000000000000..8db504711b62 --- /dev/null +++ b/x11-toolkits/qt6-shadertools/pkg-plist @@ -0,0 +1,48 @@ +%%QT_INCDIR%%/QtShaderTools/%%FULLVER%%/QtShaderTools/private/qshaderbaker_p.h +%%QT_INCDIR%%/QtShaderTools/%%FULLVER%%/QtShaderTools/private/qshaderbatchablerewriter_p.h +%%QT_INCDIR%%/QtShaderTools/%%FULLVER%%/QtShaderTools/private/qspirvcompiler_p.h +%%QT_INCDIR%%/QtShaderTools/%%FULLVER%%/QtShaderTools/private/qspirvshader_p.h +%%QT_INCDIR%%/QtShaderTools/%%FULLVER%%/QtShaderTools/private/qspirvshaderremap_p.h +%%QT_INCDIR%%/QtShaderTools/%%FULLVER%%/QtShaderTools/private/qtshadertoolsexports_p.h +%%QT_INCDIR%%/QtShaderTools/%%FULLVER%%/QtShaderTools/private/qtshadertoolsglobal_p.h +%%QT_INCDIR%%/QtShaderTools/QtShaderTools +%%QT_INCDIR%%/QtShaderTools/QtShaderToolsDepends +%%QT_INCDIR%%/QtShaderTools/QtShaderToolsVersion +%%QT_INCDIR%%/QtShaderTools/qtshadertoolsexports.h +%%QT_INCDIR%%/QtShaderTools/qtshadertoolsglobal.h +%%QT_INCDIR%%/QtShaderTools/qtshadertoolsversion.h +lib/cmake/Qt6BuildInternals/StandaloneTests/QtShaderToolsTestsConfig.cmake +lib/cmake/Qt6ShaderTools/Qt6ShaderToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6ShaderTools/Qt6ShaderToolsConfig.cmake +lib/cmake/Qt6ShaderTools/Qt6ShaderToolsConfigVersion.cmake +lib/cmake/Qt6ShaderTools/Qt6ShaderToolsConfigVersionImpl.cmake +lib/cmake/Qt6ShaderTools/Qt6ShaderToolsDependencies.cmake +lib/cmake/Qt6ShaderTools/Qt6ShaderToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6ShaderTools/Qt6ShaderToolsTargets.cmake +lib/cmake/Qt6ShaderTools/Qt6ShaderToolsVersionlessTargets.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsMacros.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsToolsAdditionalTargetInfo.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsToolsConfig.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsToolsConfigVersion.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsToolsConfigVersionImpl.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsToolsDependencies.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsToolsTargets.cmake +lib/cmake/Qt6ShaderToolsTools/Qt6ShaderToolsToolsVersionlessTargets.cmake +%%QT_BINDIR%%/qsb +%%QT_LIBDIR%%/libQt6ShaderTools.prl +%%QT_LIBDIR%%/libQt6ShaderTools.so +%%QT_LIBDIR%%/libQt6ShaderTools.so.6 +%%QT_LIBDIR%%/libQt6ShaderTools.so.%%FULLVER%% +%%QT_LIBDIR%%/metatypes/qt6shadertools_%%CMAKE_BUILD_TYPE%%_metatypes.json +%%QT_MKSPECDIR%%/modules/qt_lib_shadertools.pri +%%QT_MKSPECDIR%%/modules/qt_lib_shadertools_private.pri +libdata/pkgconfig/Qt6ShaderTools.pc +%%QT_DATADIR%%/modules/ShaderTools.json +@dir %%QT_CMAKEDIR%%/Qt6BuildInternals/StandaloneTests +@dir %%QT_CMAKEDIR%%/Qt6ShaderTools +@dir %%QT_CMAKEDIR%%/Qt6ShaderToolsTools +@dir %%QT_LIBDIR%%/cmake/Qt6BuildInternals/StandaloneTests +@dir %%QT_LIBDIR%%/cmake/Qt6ShaderTools +@dir %%QT_LIBDIR%%/cmake/Qt6ShaderToolsTools +@dir %%QT_LIBDIR%%/pkgconfig