mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
devel/qbs: Resurrect port and update to 2.6.0
Qbs is a tool that helps simplify the build process for developing projects across multiple platforms. Qbs can be used for any software project, regardless of programming language, toolkit, or libraries used. Qbs is an all-in-one tool that generates a build graph from a high-level project description (like qmake or CMake) and additionally undertakes the task of executing the commands in the low-level build graph (like make).
This commit is contained in:
parent
aee17ae26b
commit
4ef37cf5a3
7 changed files with 946 additions and 1 deletions
1
MOVED
1
MOVED
|
@ -1427,7 +1427,6 @@ devel/p5-Goo-Canvas|devel/p5-Goo-Canvas2|2022-06-24|Obsolete use devel/p5-Goo-Ca
|
|||
graphics/goocanvas|graphics/goocanvas3|2022-06-24|Obsolete use graphics/goocanvas3
|
||||
x11-toolkits/tepl|x11-toolkits/tepl6|2022-06-25|Obsolete use x11-toolkits/tepl6
|
||||
lang/cmucl||2022-06-27|Has expired: Not supported upstream since 2017 and broken since FreeBSD 12.1
|
||||
devel/qbs||2022-06-27|Has expired: Abandoned and not working with modern clang
|
||||
lang/cmucl-extra||2022-06-27|Has expired: lang/cmucl is not supported upstream since 2017 and broken since FreeBSD 12.1
|
||||
security/protonvpn-cli||2022-06-27|Has expired: This version is deprecated and unsupported upstream. The port needs an update, which would require a fair amount of effort. Use OpenVPN or Wireguard with configuration files provided by ProtonVPN instead
|
||||
sysutils/firstboot-growfs||2022-06-27|Has expired: A better version is available on all FreeBSD version
|
||||
|
|
|
@ -6277,6 +6277,7 @@
|
|||
SUBDIR += pythontidy
|
||||
SUBDIR += pytype
|
||||
SUBDIR += qbe
|
||||
SUBDIR += qbs
|
||||
SUBDIR += qca
|
||||
SUBDIR += qconf
|
||||
SUBDIR += qcoro
|
||||
|
|
33
devel/qbs/Makefile
Normal file
33
devel/qbs/Makefile
Normal file
|
@ -0,0 +1,33 @@
|
|||
PORTNAME= qbs
|
||||
DISTVERSIONPREFIX= src-
|
||||
DISTVERSION= 2.6.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= QT/official_releases/${PORTNAME}/${PORTVERSION}
|
||||
DIST_SUBDIR= KDE/Qt/qbs
|
||||
|
||||
MAINTAINER= kde@FreeBSD.org
|
||||
COMMENT= Qbs Build Suite
|
||||
WWW= https://doc.qt.io/qbs/
|
||||
|
||||
LICENSE= GPLv3 LGPL21
|
||||
LICENSE_COMB= dual
|
||||
|
||||
USES= cmake compiler:c++20-lang gl python:run qt:6
|
||||
USE_GL= gl
|
||||
USE_LDCONFIG= yes
|
||||
USE_QT= 5compat base
|
||||
|
||||
CMAKE_ON= QBS_INSTALL_MAN_PAGE
|
||||
|
||||
PLIST_SUB= SHLIB_VERSION="${PORTVERSION}"
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup>=4.12.2:www/py-beautifulsoup@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}lxml>=4.9.3:devel/py-lxml@${PY_FLAVOR}
|
||||
DOCS_USES= python:build
|
||||
DOCS_USE= QT=tools:build
|
||||
DOCS_CMAKE_BOOL= QBS_INSTALL_HTML_DOCS \
|
||||
QBS_INSTALL_QCH_DOCS
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/qbs/distinfo
Normal file
3
devel/qbs/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1742490389
|
||||
SHA256 (KDE/Qt/qbs/qbs-src-2.6.0.tar.gz) = 9eac7441a5c80df38190796012a842d0d22b0f3b11845d59c5d98b4e88457f02
|
||||
SIZE (KDE/Qt/qbs/qbs-src-2.6.0.tar.gz) = 5732888
|
11
devel/qbs/files/patch-src_app_qbs-setup-qt_setupqt.cpp
Normal file
11
devel/qbs/files/patch-src_app_qbs-setup-qt_setupqt.cpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- src/app/qbs-setup-qt/setupqt.cpp.orig 2021-11-28 22:25:29 UTC
|
||||
+++ src/app/qbs-setup-qt/setupqt.cpp
|
||||
@@ -70,7 +70,7 @@ static QStringList qmakeExecutableNames()
|
||||
{
|
||||
const QString baseName = HostOsInfo::appendExecutableSuffix(QStringLiteral("qmake"));
|
||||
QStringList lst(baseName);
|
||||
- if (HostOsInfo::isLinuxHost()) {
|
||||
+ if (true || HostOsInfo::isLinuxHost()) {
|
||||
// Some distributions ship binaries called qmake-qt5 or qmake-qt4.
|
||||
lst << baseName + QLatin1String("-qt5") << baseName + QLatin1String("-qt4");
|
||||
}
|
7
devel/qbs/pkg-descr
Normal file
7
devel/qbs/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
Qbs is a tool that helps simplify the build process for developing projects
|
||||
across multiple platforms. Qbs can be used for any software project,
|
||||
regardless of programming language, toolkit, or libraries used.
|
||||
|
||||
Qbs is an all-in-one tool that generates a build graph from a high-level
|
||||
project description (like qmake or CMake) and additionally undertakes
|
||||
the task of executing the commands in the low-level build graph (like make).
|
891
devel/qbs/pkg-plist
Normal file
891
devel/qbs/pkg-plist
Normal file
|
@ -0,0 +1,891 @@
|
|||
bin/clang-format-test
|
||||
bin/qbs
|
||||
bin/qbs-config
|
||||
bin/qbs-config-ui
|
||||
bin/qbs-create-project
|
||||
bin/qbs-setup-android
|
||||
bin/qbs-setup-qt
|
||||
bin/qbs-setup-toolchains
|
||||
bin/qbs_benchmarker
|
||||
bin/qbs_fuzzy-test
|
||||
bin/qbs_lspclient
|
||||
bin/tst_api
|
||||
bin/tst_blackbox
|
||||
bin/tst_blackbox-android
|
||||
bin/tst_blackbox-apple
|
||||
bin/tst_blackbox-baremetal
|
||||
bin/tst_blackbox-clangdb
|
||||
bin/tst_blackbox-java
|
||||
bin/tst_blackbox-joblimits
|
||||
bin/tst_blackbox-providers
|
||||
bin/tst_blackbox-qt
|
||||
bin/tst_blackbox-tutorial
|
||||
bin/tst_blackbox-windows
|
||||
bin/tst_cmdlineparser
|
||||
include/qbs/api/jobs.h
|
||||
include/qbs/api/languageinfo.h
|
||||
include/qbs/api/project.h
|
||||
include/qbs/api/projectdata.h
|
||||
include/qbs/api/rulecommand.h
|
||||
include/qbs/api/runenvironment.h
|
||||
include/qbs/api/transformerdata.h
|
||||
include/qbs/buildgraph/forward_decls.h
|
||||
include/qbs/generators/generator.h
|
||||
include/qbs/generators/generatordata.h
|
||||
include/qbs/language/forward_decls.h
|
||||
include/qbs/logging/ilogsink.h
|
||||
include/qbs/qbs.h
|
||||
include/qbs/tools/architectures.h
|
||||
include/qbs/tools/buildoptions.h
|
||||
include/qbs/tools/cleanoptions.h
|
||||
include/qbs/tools/codelocation.h
|
||||
include/qbs/tools/commandechomode.h
|
||||
include/qbs/tools/deprecationwarningmode.h
|
||||
include/qbs/tools/error.h
|
||||
include/qbs/tools/generateoptions.h
|
||||
include/qbs/tools/installoptions.h
|
||||
include/qbs/tools/joblimits.h
|
||||
include/qbs/tools/mutexdata.h
|
||||
include/qbs/tools/preferences.h
|
||||
include/qbs/tools/processresult.h
|
||||
include/qbs/tools/profile.h
|
||||
include/qbs/tools/projectgeneratormanager.h
|
||||
include/qbs/tools/qbs_export.h
|
||||
include/qbs/tools/settings.h
|
||||
include/qbs/tools/settingsmodel.h
|
||||
include/qbs/tools/settingsrepresentation.h
|
||||
include/qbs/tools/setupprojectparameters.h
|
||||
include/qbs/tools/toolchains.h
|
||||
include/qbs/tools/version.h
|
||||
lib/libqbscore.so
|
||||
lib/libqbscore.so.2.6
|
||||
lib/libqbscore.so.%%SHLIB_VERSION%%
|
||||
lib/qbs/plugins/libclangcompilationdbgenerator.so
|
||||
lib/qbs/plugins/libiarewgenerator.so
|
||||
lib/qbs/plugins/libkeiluvgenerator.so
|
||||
lib/qbs/plugins/libmakefilegenerator.so
|
||||
lib/qbs/plugins/libqbs_cpp_scanner.so
|
||||
lib/qbs/plugins/libqbs_qt_scanner.so
|
||||
lib/qbs/plugins/libvisualstudiogenerator.so
|
||||
libexec/qbs/qbs_processlauncher
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/attributions.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/building-applications.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/building-qbs.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-build.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-clean.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-config-ui.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-config.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-create-project.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-dump-nodes-tree.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-generate.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-help.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-install.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-list-products.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-resolve.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-run.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-session.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-setup-android.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-setup-qt.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-setup-toolchains.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-shell.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-status.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-update-timestamps.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli-version.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/cli.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/commands.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/configuring.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/custom-modules.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/generators.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/howtos.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/arrow_bc.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/bgrContent.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/btn_next.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/btn_prev.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/bullet_dn.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/bullet_sq.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/home.png
|
||||
@comment %%PORTDOCS%%%%DOCSDIR%%/html/images/ico_note.png
|
||||
@comment %%PORTDOCS%%%%DOCSDIR%%/html/images/ico_note_attention.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/ico_out.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/logo.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/qbs-build-process.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/qbs-dmg.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/images/qbs-settings-gui.png
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/index.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/installing-files.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/installing.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-binaryfile.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-environment.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-file.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-fileinfo.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-host.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-process.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-propertylist.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-temporarydir.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-textfile.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-utilities.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextension-xml.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/jsextensions-general.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/json-api.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/language-introduction.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/list-of-builtin-services.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/list-of-items.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/module-providers.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/multiplexing.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/overview.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/platforms.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/porting-to-qbs.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-attribution-biplist.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-attribution-cppscanner.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-attribution-dmgbuild.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-attribution-ds-store.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-attribution-mac-alias.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-attribution-quickjs.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-android.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-integrity.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-ios.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-linux.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-macos.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-qnx.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-tvos.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-vxworks.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-watchos.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs-target-windows.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs.index
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbs.qhp
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbsconvenienceitems-qmlmodule.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbslanguageitems-qmlmodule.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbsmoduleproviders-qmlmodule.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbsmodules-qmlmodule.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qbsprobes-qmlmodule.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-appleapplicationdiskimage-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-appleapplicationdiskimage.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-applediskimage-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-applediskimage.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-application-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-application.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-applicationextension-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-applicationextension.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-autotestrunner-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-autotestrunner.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-cppapplication-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-cppapplication.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-dynamiclibrary-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-dynamiclibrary.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-innosetup-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-innosetup.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-installpackage-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-installpackage.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-javaclasscollection-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-javaclasscollection.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-javajarfile-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-javajarfile.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-library-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-library.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-loadablemodule-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-loadablemodule.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-qtapplication-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-qtapplication.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-qtguiapplication-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-qtguiapplication.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-qtlupdaterunner-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-qtlupdaterunner.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-staticlibrary-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-staticlibrary.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-xpcservice-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsconvenienceitems-xpcservice.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-artifact-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-artifact.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-depends-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-depends.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-export-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-export.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-filetagger-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-filetagger.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-group-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-group.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-joblimit-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-joblimit.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-module-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-module.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-moduleprovider-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-moduleprovider.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-parameter-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-parameter.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-parameters-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-parameters.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-probe-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-probe.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-product-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-product.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-profile-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-profile.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-project-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-project.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-properties-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-properties.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-propertyoptions-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-propertyoptions.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-rule-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-rule.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-scanner-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-scanner.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-subproject-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbslanguageitems-subproject.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmoduleproviders-conan-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmoduleproviders-conan.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmoduleproviders-qbspkgconfig-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmoduleproviders-qbspkgconfig.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmoduleproviders-qt-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmoduleproviders-qt.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-android-ndk-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-android-ndk.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-android-sdk-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-android-sdk.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-archiver-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-archiver.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-autotest-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-autotest.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-bundle-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-bundle.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-capnproto-cpp-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-capnproto-cpp.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-codesign-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-codesign.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-cpp-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-cpp-obsolete.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-cpp.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-cpufeatures-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-cpufeatures.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-dmg-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-dmg.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-exporter-cmake-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-exporter-cmake.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-exporter-pkgconfig-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-exporter-pkgconfig.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-exporter-qbs-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-exporter-qbs.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-flatbuf-c-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-flatbuf-c.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-flatbuf-cpp-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-flatbuf-cpp.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-freedesktop-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-freedesktop.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-ib-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-ib.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-ico-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-ico.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-innosetup-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-innosetup.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-java-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-java.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-lex-yacc-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-lex-yacc.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-nodejs-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-nodejs.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-nsis-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-nsis.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-pkgconfig-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-pkgconfig.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-protobuf-cpp-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-protobuf-cpp.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-protobuf-nanopb-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-protobuf-nanopb.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-protobuf-objc-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-protobuf-objc.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qbs-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qbs.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qnx-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qnx.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-android-support-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-android-support.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-core-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-core.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-dbus-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-dbus.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-declarative-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-declarative.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-gui-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-gui.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-plugin-support-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-plugin-support.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-qml-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-qml.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-quick-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-quick.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-scxml-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-qt-scxml.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-sanitizers-address-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-sanitizers-address.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-texttemplate-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-texttemplate.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-typescript-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-typescript.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-vcs-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-vcs.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-wix-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-wix.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-xcode-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsmodules-xcode.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-binaryprobe-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-binaryprobe.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-conanfileprobe-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-conanfileprobe.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-frameworkprobe-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-frameworkprobe.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-includeprobe-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-includeprobe.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-libraryprobe-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-libraryprobe.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-pathprobe-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-pathprobe.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-pkgconfigprobe-members.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qml-qbsprobes-pkgconfigprobe.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qt-modules.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/qt-versions.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/reference.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/running-applications.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/setup.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/shell.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/special-property-values.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/style/offline-dark.css
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/style/offline-simple.css
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/style/offline.css
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-1.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-10.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-2.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-3.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-4.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-5.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-6.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-7.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-8.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial-9.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/tutorial.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/usage.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/qbs.qch
|
||||
share/man/man1/qbs.1.gz
|
||||
%%DATADIR%%/examples/app-and-lib/app-and-lib.qbs
|
||||
%%DATADIR%%/examples/app-and-lib/app/app.qbs
|
||||
%%DATADIR%%/examples/app-and-lib/app/main.cpp
|
||||
%%DATADIR%%/examples/app-and-lib/lib/lib.cpp
|
||||
%%DATADIR%%/examples/app-and-lib/lib/lib.h
|
||||
%%DATADIR%%/examples/app-and-lib/lib/lib.qbs
|
||||
%%DATADIR%%/examples/baremetal/at90can128olimex/at90can128olimex.qbs
|
||||
%%DATADIR%%/examples/baremetal/at90can128olimex/redblink/README.md
|
||||
%%DATADIR%%/examples/baremetal/at90can128olimex/redblink/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/at90can128olimex/redblink/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/at90can128olimex/redblink/main.c
|
||||
%%DATADIR%%/examples/baremetal/at90can128olimex/redblink/redblink.qbs
|
||||
%%DATADIR%%/examples/baremetal/baremetal.qbs
|
||||
%%DATADIR%%/examples/baremetal/cc2540usbdongle/cc2540usbdongle.qbs
|
||||
%%DATADIR%%/examples/baremetal/cc2540usbdongle/greenblink/README.md
|
||||
%%DATADIR%%/examples/baremetal/cc2540usbdongle/greenblink/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/cc2540usbdongle/greenblink/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/cc2540usbdongle/greenblink/greenblink.qbs
|
||||
%%DATADIR%%/examples/baremetal/cc2540usbdongle/greenblink/main.c
|
||||
%%DATADIR%%/examples/baremetal/cc2540usbdongle/greenblink/system.h
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/cy7c68013a.qbs
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/README.md
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/core.c
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/core.h
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/defs.h
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/hid.c
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/hid.h
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/hiddesc.c
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/hidep0.c
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/hidep1.c
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/irqs.h
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/main.c
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/nes-gamepads.qbs
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/regs.h
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/usb.c
|
||||
%%DATADIR%%/examples/baremetal/cy7c68013a/nes-gamepads/usb.h
|
||||
%%DATADIR%%/examples/baremetal/esp8266/README.md
|
||||
%%DATADIR%%/examples/baremetal/esp8266/access-point/access-point.qbs
|
||||
%%DATADIR%%/examples/baremetal/esp8266/access-point/user_config.h
|
||||
%%DATADIR%%/examples/baremetal/esp8266/access-point/user_main.c
|
||||
%%DATADIR%%/examples/baremetal/esp8266/esp8266.qbs
|
||||
%%DATADIR%%/examples/baremetal/esp8266/qbs/imports/Esp8266SdkProbe.qbs
|
||||
%%DATADIR%%/examples/baremetal/esp8266/qbs/modules/esp8266_sdk/Esp8266SdkModule.qbs
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/msp430f5529.qbs
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/README.md
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/gamepads.ld
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/hid.h
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/hiddesc.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/hidep0.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/hidep1.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/hwdefs.h
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/main.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/nes-gamepads.qbs
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/pmm.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/pmm.h
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/ucs.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/ucs.h
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/usb.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/usb.h
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/wdt_a.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/nes-gamepads/wdt_a.h
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/redblink/README.md
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/redblink/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/redblink/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/redblink/main.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/redblink/redblink.qbs
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/redblink/system.c
|
||||
%%DATADIR%%/examples/baremetal/msp430f5529/redblink/system.h
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/README.md
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/gcc/flash.ld
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/gcc/startup.s
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/greenblink.qbs
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/iar/flash.icf
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/iar/startup.s
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/keil/flash.sct
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/keil/startup.s
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/main.c
|
||||
%%DATADIR%%/examples/baremetal/pca10001/greenblink/system.h
|
||||
%%DATADIR%%/examples/baremetal/pca10001/pca10001.qbs
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/README.md
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/gcc/flash.ld
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/gcc/startup.s
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/greenblink.qbs
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/iar/flash.icf
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/iar/startup.s
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/keil/flash.sct
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/keil/startup.s
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/main.c
|
||||
%%DATADIR%%/examples/baremetal/pca10040/greenblink/system.h
|
||||
%%DATADIR%%/examples/baremetal/pca10040/pca10040.qbs
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/README.md
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/gcc/flash.ld
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/gcc/startup.s
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/greenblink.qbs
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/iar/flash.icf
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/iar/startup.s
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/keil/flash.sct
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/keil/startup.s
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/main.c
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/greenblink/system.h
|
||||
%%DATADIR%%/examples/baremetal/stm32f103/stm32f103.qbs
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/README.md
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/blueblink.qbs
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/gcc/flash.ld
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/gcc/startup.s
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/iar/flash.icf
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/iar/startup.s
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/keil/flash.sct
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/keil/startup.s
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/main.c
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/blueblink/system.h
|
||||
%%DATADIR%%/examples/baremetal/stm32f4discovery/stm32f4discovery.qbs
|
||||
%%DATADIR%%/examples/baremetal/stm8s103f3/redblink/README.md
|
||||
%%DATADIR%%/examples/baremetal/stm8s103f3/redblink/gpio.c
|
||||
%%DATADIR%%/examples/baremetal/stm8s103f3/redblink/gpio.h
|
||||
%%DATADIR%%/examples/baremetal/stm8s103f3/redblink/main.c
|
||||
%%DATADIR%%/examples/baremetal/stm8s103f3/redblink/redblink.qbs
|
||||
%%DATADIR%%/examples/baremetal/stm8s103f3/redblink/system.h
|
||||
%%DATADIR%%/examples/baremetal/stm8s103f3/stm8s103f3.qbs
|
||||
%%DATADIR%%/examples/capnproto/addressbook_cpp/addressbook.capnp
|
||||
%%DATADIR%%/examples/capnproto/addressbook_cpp/addressbook.cpp
|
||||
%%DATADIR%%/examples/capnproto/addressbook_cpp/addressbook_cpp.qbs
|
||||
%%DATADIR%%/examples/capnproto/calculator_cpp/calculator-client.cpp
|
||||
%%DATADIR%%/examples/capnproto/calculator_cpp/calculator-server.cpp
|
||||
%%DATADIR%%/examples/capnproto/calculator_cpp/calculator.capnp
|
||||
%%DATADIR%%/examples/capnproto/calculator_cpp/calculator_cpp.qbs
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication.xcodeproj/project.pbxproj
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/AppDelegate.h
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/AppDelegate.m
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication-Info.plist
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication-Prefix.pch
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/Contents.json
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_128x128.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_128x128@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_16x16.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_16x16@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_256x256.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_256x256@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_32x32.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_32x32@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_512x512.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/CocoaApplication.xcassets/AppIcon.appiconset/icon_512x512@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/background.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/background@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_128x128.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_128x128@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_16x16.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_16x16@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_256x256.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_256x256@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_32x32.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_32x32@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_512x512.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/dmg.iconset/icon_512x512@2x.png
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/en.lproj/Credits.rtf
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/en.lproj/InfoPlist.strings
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/en.lproj/LICENSE
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/en.lproj/MainMenu.xib
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/en_US.lproj/Credits.rtf
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/en_US.lproj/InfoPlist.strings
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/en_US.lproj/LICENSE
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/en_US.lproj/MainMenu.xib
|
||||
%%DATADIR%%/examples/cocoa-application/CocoaApplication/main.m
|
||||
%%DATADIR%%/examples/cocoa-application/app.qbs
|
||||
%%DATADIR%%/examples/cocoa-application/cocoa-application.qbs
|
||||
%%DATADIR%%/examples/cocoa-application/dmg.qbs
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication.xcodeproj/project.pbxproj
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/AppDelegate.h
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/AppDelegate.m
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/CocoaTouchApplication-Info.plist
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/CocoaTouchApplication-Prefix.pch
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/DetailViewController.h
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/DetailViewController.m
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/LaunchScreen.storyboard
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/MasterViewController.h
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/MasterViewController.m
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/DetailViewController_iPad.xib
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/DetailViewController_iPhone.xib
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/InfoPlist.strings
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/MasterViewController_iPad.xib
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/MasterViewController_iPhone.xib
|
||||
%%DATADIR%%/examples/cocoa-touch-application/CocoaTouchApplication/main.m
|
||||
%%DATADIR%%/examples/cocoa-touch-application/cocoa-touch-application.qbs
|
||||
%%DATADIR%%/examples/code-generator/code-generator.qbs
|
||||
%%DATADIR%%/examples/code-generator/hwgen.cpp
|
||||
%%DATADIR%%/examples/collidingmice/collidingmice.qbs
|
||||
%%DATADIR%%/examples/collidingmice/images/cheese.jpg
|
||||
%%DATADIR%%/examples/collidingmice/main.cpp
|
||||
%%DATADIR%%/examples/collidingmice/mice.qrc
|
||||
%%DATADIR%%/examples/collidingmice/mouse.cpp
|
||||
%%DATADIR%%/examples/collidingmice/mouse.h
|
||||
%%DATADIR%%/examples/compiled-qml/MainForm.ui.qml
|
||||
%%DATADIR%%/examples/compiled-qml/cheese.jpg
|
||||
%%DATADIR%%/examples/compiled-qml/compiled-qml.qbs
|
||||
%%DATADIR%%/examples/compiled-qml/main.cpp
|
||||
%%DATADIR%%/examples/compiled-qml/main.qml
|
||||
%%DATADIR%%/examples/compiled-qml/qml.qrc
|
||||
%%DATADIR%%/examples/cxx-modules/mod0/mod0.cppm
|
||||
%%DATADIR%%/examples/cxx-modules/mod0/mod0.qbs
|
||||
%%DATADIR%%/examples/cxx-modules/mod0/mod0main.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod1/mod1.cppm
|
||||
%%DATADIR%%/examples/cxx-modules/mod1/mod1.qbs
|
||||
%%DATADIR%%/examples/cxx-modules/mod1/mod1io.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod1/mod1price.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod1/testmod1.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod2/mod2.cppm
|
||||
%%DATADIR%%/examples/cxx-modules/mod2/mod2.qbs
|
||||
%%DATADIR%%/examples/cxx-modules/mod2/mod2io.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod2/mod2order.cppm
|
||||
%%DATADIR%%/examples/cxx-modules/mod2/mod2price.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod2/testmod2.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod3/mod3.cppm
|
||||
%%DATADIR%%/examples/cxx-modules/mod3/mod3.qbs
|
||||
%%DATADIR%%/examples/cxx-modules/mod3/mod3customer.cppm
|
||||
%%DATADIR%%/examples/cxx-modules/mod3/mod3io.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod3/mod3order.cppm
|
||||
%%DATADIR%%/examples/cxx-modules/mod3/mod3price.cpp
|
||||
%%DATADIR%%/examples/cxx-modules/mod3/testmod3.cpp
|
||||
%%DATADIR%%/examples/examples.qbs
|
||||
%%DATADIR%%/examples/exporters/exporters.qbs
|
||||
%%DATADIR%%/examples/exporters/lib_a/lib_a.cpp
|
||||
%%DATADIR%%/examples/exporters/lib_a/lib_a.h
|
||||
%%DATADIR%%/examples/exporters/lib_a/lib_a.qbs
|
||||
%%DATADIR%%/examples/exporters/lib_b/lib_b.cpp
|
||||
%%DATADIR%%/examples/exporters/lib_b/lib_b.h
|
||||
%%DATADIR%%/examples/exporters/lib_b/lib_b.qbs
|
||||
%%DATADIR%%/examples/exporters/qbs/imports/MyLibrary.qbs
|
||||
%%DATADIR%%/examples/flatbuffers/.clang-format
|
||||
%%DATADIR%%/examples/flatbuffers/monster-c/conanfile.txt
|
||||
%%DATADIR%%/examples/flatbuffers/monster-c/monster-c.qbs
|
||||
%%DATADIR%%/examples/flatbuffers/monster-c/monster.c
|
||||
%%DATADIR%%/examples/flatbuffers/monster-cpp/conanfile.txt
|
||||
%%DATADIR%%/examples/flatbuffers/monster-cpp/monster-cpp.qbs
|
||||
%%DATADIR%%/examples/flatbuffers/monster-cpp/monster.cpp
|
||||
%%DATADIR%%/examples/flatbuffers/shared/monster.fbs
|
||||
%%DATADIR%%/examples/grpc/client.cpp
|
||||
%%DATADIR%%/examples/grpc/grpc.qbs
|
||||
%%DATADIR%%/examples/grpc/ping-pong-grpc.proto
|
||||
%%DATADIR%%/examples/grpc/server.cpp
|
||||
%%DATADIR%%/examples/helloworld-complex/helloworld-complex.qbs
|
||||
%%DATADIR%%/examples/helloworld-complex/src/foo.cpp
|
||||
%%DATADIR%%/examples/helloworld-complex/src/foo.h
|
||||
%%DATADIR%%/examples/helloworld-complex/src/main.cpp
|
||||
%%DATADIR%%/examples/helloworld-complex/src/specialfeature.cpp
|
||||
%%DATADIR%%/examples/helloworld-complex/src/specialfeature.h
|
||||
%%DATADIR%%/examples/helloworld-minimal/helloworld-minimal.qbs
|
||||
%%DATADIR%%/examples/helloworld-minimal/main.cpp
|
||||
%%DATADIR%%/examples/helloworld-qt/helloworld-qt.qbs
|
||||
%%DATADIR%%/examples/helloworld-qt/main.cpp
|
||||
%%DATADIR%%/examples/install-bundle/MainMenu.xib
|
||||
%%DATADIR%%/examples/install-bundle/Storyboard.storyboard
|
||||
%%DATADIR%%/examples/install-bundle/assetcatalog1.xcassets/other.imageset/Contents.json
|
||||
%%DATADIR%%/examples/install-bundle/assetcatalog1.xcassets/other.imageset/icon_16x16.png
|
||||
%%DATADIR%%/examples/install-bundle/assetcatalog1.xcassets/other.imageset/icon_16x16@2x.png
|
||||
%%DATADIR%%/examples/install-bundle/assetcatalog2.xcassets/other.imageset/Contents.json
|
||||
%%DATADIR%%/examples/install-bundle/assetcatalog2.xcassets/other.imageset/icon_16x16.png
|
||||
%%DATADIR%%/examples/install-bundle/assetcatalog2.xcassets/other.imageset/icon_16x16@2x.png
|
||||
%%DATADIR%%/examples/install-bundle/coreutils.cpp
|
||||
%%DATADIR%%/examples/install-bundle/coreutils.h
|
||||
%%DATADIR%%/examples/install-bundle/install-bundle.qbs
|
||||
%%DATADIR%%/examples/install-bundle/main.cpp
|
||||
%%DATADIR%%/examples/install-bundle/white.iconset/icon_16x16.png
|
||||
%%DATADIR%%/examples/install-bundle/white.iconset/icon_16x16@2x.png
|
||||
%%DATADIR%%/examples/pkgconfig-provider/main.c
|
||||
%%DATADIR%%/examples/pkgconfig-provider/pkgconfig-provider.qbs
|
||||
%%DATADIR%%/examples/protobuf/addressbook_conan/addressbook_conan.qbs
|
||||
%%DATADIR%%/examples/protobuf/addressbook_conan/conanfile.txt
|
||||
%%DATADIR%%/examples/protobuf/addressbook_conan/main.cpp
|
||||
%%DATADIR%%/examples/protobuf/addressbook_cpp/README.md
|
||||
%%DATADIR%%/examples/protobuf/addressbook_cpp/addressbook_cpp.qbs
|
||||
%%DATADIR%%/examples/protobuf/addressbook_cpp/main.cpp
|
||||
%%DATADIR%%/examples/protobuf/addressbook_objc/README.md
|
||||
%%DATADIR%%/examples/protobuf/addressbook_objc/addressbook_objc.qbs
|
||||
%%DATADIR%%/examples/protobuf/addressbook_objc/main.m
|
||||
%%DATADIR%%/examples/protobuf/shared/addressbook.proto
|
||||
%%DATADIR%%/examples/rpaths/main.cpp
|
||||
%%DATADIR%%/examples/rpaths/objecta.cpp
|
||||
%%DATADIR%%/examples/rpaths/objecta.h
|
||||
%%DATADIR%%/examples/rpaths/objectb.cpp
|
||||
%%DATADIR%%/examples/rpaths/objectb.h
|
||||
%%DATADIR%%/examples/rpaths/rpaths.qbs
|
||||
%%DATADIR%%/examples/rule/lorem_ipsum.txt
|
||||
%%DATADIR%%/examples/rule/rule.qbs
|
||||
%%DATADIR%%/imports/qbs/BundleTools/bundle-tools.js
|
||||
%%DATADIR%%/imports/qbs/DarwinTools/darwin-tools.js
|
||||
%%DATADIR%%/imports/qbs/ModUtils/utils.js
|
||||
%%DATADIR%%/imports/qbs/PathTools/path-tools.js
|
||||
%%DATADIR%%/imports/qbs/Probes/AndroidNdkProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/AndroidSdkProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/BinaryProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/ClBinaryProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/ClangClBinaryProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/ClangClProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/ConanfileProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/CosmicProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/DmcProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/FrameworkProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/GccBinaryProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/GccProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/GccVersionProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/IarProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/IcoUtilsVersionProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/IncludeProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/InnoSetupProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/JdkProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/JdkVersionProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/KeilProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/LibraryProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/MsvcProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/NodeJsProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/NpmProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/PathProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/PkgConfigProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/QbsPkgConfigProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/QmakeProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/SdccProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/TypeScriptProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/WatcomProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/WiXProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/XcodeLocationProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/XcodeProbe.qbs
|
||||
%%DATADIR%%/imports/qbs/Probes/path-probe.js
|
||||
%%DATADIR%%/imports/qbs/Probes/qbs-pkg-config-probe.js
|
||||
%%DATADIR%%/imports/qbs/Probes/qmake-probe.js
|
||||
%%DATADIR%%/imports/qbs/ProviderUtils/provider-utils.js
|
||||
%%DATADIR%%/imports/qbs/UnixUtils/unix-utils.js
|
||||
%%DATADIR%%/imports/qbs/WindowsUtils/windows-utils.js
|
||||
%%DATADIR%%/imports/qbs/base/AndroidApk.qbs
|
||||
%%DATADIR%%/imports/qbs/base/AppleApplicationDiskImage.qbs
|
||||
%%DATADIR%%/imports/qbs/base/AppleDiskImage.qbs
|
||||
%%DATADIR%%/imports/qbs/base/Application.qbs
|
||||
%%DATADIR%%/imports/qbs/base/ApplicationExtension.qbs
|
||||
%%DATADIR%%/imports/qbs/base/AutotestRunner.qbs
|
||||
%%DATADIR%%/imports/qbs/base/CppApplication.qbs
|
||||
%%DATADIR%%/imports/qbs/base/DynamicLibrary.qbs
|
||||
%%DATADIR%%/imports/qbs/base/InnoSetup.qbs
|
||||
%%DATADIR%%/imports/qbs/base/InstallPackage.qbs
|
||||
%%DATADIR%%/imports/qbs/base/JavaClassCollection.qbs
|
||||
%%DATADIR%%/imports/qbs/base/JavaJarFile.qbs
|
||||
%%DATADIR%%/imports/qbs/base/Library.qbs
|
||||
%%DATADIR%%/imports/qbs/base/LoadableModule.qbs
|
||||
%%DATADIR%%/imports/qbs/base/NSISSetup.qbs
|
||||
%%DATADIR%%/imports/qbs/base/NativeBinary.qbs
|
||||
%%DATADIR%%/imports/qbs/base/NetModule.qbs
|
||||
%%DATADIR%%/imports/qbs/base/NodeJSApplication.qbs
|
||||
%%DATADIR%%/imports/qbs/base/QtApplication.qbs
|
||||
%%DATADIR%%/imports/qbs/base/QtGuiApplication.qbs
|
||||
%%DATADIR%%/imports/qbs/base/QtLupdateRunner.qbs
|
||||
%%DATADIR%%/imports/qbs/base/QtModule.qbs
|
||||
%%DATADIR%%/imports/qbs/base/QtPlugin.qbs
|
||||
%%DATADIR%%/imports/qbs/base/StaticLibrary.qbs
|
||||
%%DATADIR%%/imports/qbs/base/WindowsInstallerPackage.qbs
|
||||
%%DATADIR%%/imports/qbs/base/WindowsSetupPackage.qbs
|
||||
%%DATADIR%%/imports/qbs/base/XPCService.qbs
|
||||
%%DATADIR%%/module-providers/Qt/provider.qbs
|
||||
%%DATADIR%%/module-providers/Qt/setup-qt.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/android_support.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/android_support.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/core.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/core.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/dbus.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/dbus.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/gui.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/moc.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/module.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/plugin.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/plugin_support.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/qdoc.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/qml.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/qml.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/qmlcache.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/quick.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/quick.qbs
|
||||
%%DATADIR%%/module-providers/Qt/templates/rcc.js
|
||||
%%DATADIR%%/module-providers/Qt/templates/scxml.qbs
|
||||
%%DATADIR%%/module-providers/__fallback/fallback.qbs
|
||||
%%DATADIR%%/module-providers/__fallback/provider.qbs
|
||||
%%DATADIR%%/module-providers/conan.js
|
||||
%%DATADIR%%/module-providers/conan.qbs
|
||||
%%DATADIR%%/module-providers/qbspkgconfig.qbs
|
||||
%%DATADIR%%/modules/Android/android-utils.js
|
||||
%%DATADIR%%/modules/Android/ndk/ndk.qbs
|
||||
%%DATADIR%%/modules/Android/ndk/utils.js
|
||||
%%DATADIR%%/modules/Android/sdk/sdk.qbs
|
||||
%%DATADIR%%/modules/Android/sdk/utils.js
|
||||
%%DATADIR%%/modules/Exporter/cmake/cmakeexporter.js
|
||||
%%DATADIR%%/modules/Exporter/cmake/cmakeexporter.qbs
|
||||
%%DATADIR%%/modules/Exporter/exporter.js
|
||||
%%DATADIR%%/modules/Exporter/pkgconfig/pkgconfig.js
|
||||
%%DATADIR%%/modules/Exporter/pkgconfig/pkgconfig.qbs
|
||||
%%DATADIR%%/modules/Exporter/qbs/qbsexporter.js
|
||||
%%DATADIR%%/modules/Exporter/qbs/qbsexporter.qbs
|
||||
%%DATADIR%%/modules/Sanitizers/address/asan.qbs
|
||||
%%DATADIR%%/modules/archiver/archiver.qbs
|
||||
%%DATADIR%%/modules/autotest/autotest.qbs
|
||||
%%DATADIR%%/modules/bundle/BundleModule.qbs
|
||||
%%DATADIR%%/modules/bundle/MacOSX-Package-Types.xcspec
|
||||
%%DATADIR%%/modules/bundle/MacOSX-Product-Types.xcspec
|
||||
%%DATADIR%%/modules/bundle/bundle.js
|
||||
%%DATADIR%%/modules/capnproto/capnproto.js
|
||||
%%DATADIR%%/modules/capnproto/capnprotobase.qbs
|
||||
%%DATADIR%%/modules/capnproto/cpp/capnprotocpp.qbs
|
||||
%%DATADIR%%/modules/cli/CLIModule.qbs
|
||||
%%DATADIR%%/modules/cli/cli.js
|
||||
%%DATADIR%%/modules/cli/mono.qbs
|
||||
%%DATADIR%%/modules/cli/windows-dotnet.qbs
|
||||
%%DATADIR%%/modules/codesign/CodeSignModule.qbs
|
||||
%%DATADIR%%/modules/codesign/android.qbs
|
||||
%%DATADIR%%/modules/codesign/apple.qbs
|
||||
%%DATADIR%%/modules/codesign/codesign.js
|
||||
%%DATADIR%%/modules/codesign/noop.qbs
|
||||
%%DATADIR%%/modules/codesign/signtool.qbs
|
||||
%%DATADIR%%/modules/cpp/CppModule.qbs
|
||||
%%DATADIR%%/modules/cpp/DarwinGCC.qbs
|
||||
%%DATADIR%%/modules/cpp/GenericGCC.qbs
|
||||
%%DATADIR%%/modules/cpp/LinuxGCC.qbs
|
||||
%%DATADIR%%/modules/cpp/MingwBaseModule.qbs
|
||||
%%DATADIR%%/modules/cpp/UnixGCC.qbs
|
||||
%%DATADIR%%/modules/cpp/android-gcc.qbs
|
||||
%%DATADIR%%/modules/cpp/cosmic.js
|
||||
%%DATADIR%%/modules/cpp/cosmic.qbs
|
||||
%%DATADIR%%/modules/cpp/cpp.js
|
||||
%%DATADIR%%/modules/cpp/darwin.js
|
||||
%%DATADIR%%/modules/cpp/dmc.js
|
||||
%%DATADIR%%/modules/cpp/dmc.qbs
|
||||
%%DATADIR%%/modules/cpp/emcc.qbs
|
||||
%%DATADIR%%/modules/cpp/freebsd-gcc.qbs
|
||||
%%DATADIR%%/modules/cpp/freebsd.js
|
||||
%%DATADIR%%/modules/cpp/gcc.js
|
||||
%%DATADIR%%/modules/cpp/iar.js
|
||||
%%DATADIR%%/modules/cpp/iar.qbs
|
||||
%%DATADIR%%/modules/cpp/ios-gcc.qbs
|
||||
%%DATADIR%%/modules/cpp/keil.js
|
||||
%%DATADIR%%/modules/cpp/keil.qbs
|
||||
%%DATADIR%%/modules/cpp/macos-gcc.qbs
|
||||
%%DATADIR%%/modules/cpp/msvc.js
|
||||
%%DATADIR%%/modules/cpp/qnx-qcc.qbs
|
||||
%%DATADIR%%/modules/cpp/sdcc.js
|
||||
%%DATADIR%%/modules/cpp/sdcc.qbs
|
||||
%%DATADIR%%/modules/cpp/setuprunenv.js
|
||||
%%DATADIR%%/modules/cpp/tvos-gcc.qbs
|
||||
%%DATADIR%%/modules/cpp/watchos-gcc.qbs
|
||||
%%DATADIR%%/modules/cpp/watcom.js
|
||||
%%DATADIR%%/modules/cpp/watcom.qbs
|
||||
%%DATADIR%%/modules/cpp/windows-clang-cl.qbs
|
||||
%%DATADIR%%/modules/cpp/windows-clang-mingw.qbs
|
||||
%%DATADIR%%/modules/cpp/windows-mingw.qbs
|
||||
%%DATADIR%%/modules/cpp/windows-msvc-base.qbs
|
||||
%%DATADIR%%/modules/cpp/windows-msvc.qbs
|
||||
%%DATADIR%%/modules/cpufeatures/cpufeatures.qbs
|
||||
%%DATADIR%%/modules/dmg/DMGModule.qbs
|
||||
%%DATADIR%%/modules/dmg/dmg.js
|
||||
%%DATADIR%%/modules/emsdk/emsdk.js
|
||||
%%DATADIR%%/modules/emsdk/emsdk.qbs
|
||||
%%DATADIR%%/modules/flatbuf/c/flatbuffers-c.qbs
|
||||
%%DATADIR%%/modules/flatbuf/cpp/flatbuffers-cpp.qbs
|
||||
%%DATADIR%%/modules/flatbuf/flatbuffers.js
|
||||
%%DATADIR%%/modules/flatbuf/flatbuffersbase.qbs
|
||||
%%DATADIR%%/modules/freedesktop/FreeDesktop.qbs
|
||||
%%DATADIR%%/modules/freedesktop/freedesktop.js
|
||||
%%DATADIR%%/modules/ib/IBModule.qbs
|
||||
%%DATADIR%%/modules/ib/ib.js
|
||||
%%DATADIR%%/modules/ico/IcoModule.qbs
|
||||
%%DATADIR%%/modules/ico/ico.js
|
||||
%%DATADIR%%/modules/innosetup/InnoSetupModule.qbs
|
||||
%%DATADIR%%/modules/java/JavaModule.qbs
|
||||
%%DATADIR%%/modules/java/io/qt/qbs/Artifact.java
|
||||
%%DATADIR%%/modules/java/io/qt/qbs/ArtifactListJsonWriter.java
|
||||
%%DATADIR%%/modules/java/io/qt/qbs/ArtifactListWriter.java
|
||||
%%DATADIR%%/modules/java/io/qt/qbs/tools/JavaCompilerScannerTool.java
|
||||
%%DATADIR%%/modules/java/io/qt/qbs/tools/utils/JavaCompilerOptions.java
|
||||
%%DATADIR%%/modules/java/io/qt/qbs/tools/utils/JavaCompilerScanner.java
|
||||
%%DATADIR%%/modules/java/io/qt/qbs/tools/utils/NullFileObject.java
|
||||
%%DATADIR%%/modules/java/utils.js
|
||||
%%DATADIR%%/modules/lex_yacc/lexyacc.js
|
||||
%%DATADIR%%/modules/lex_yacc/lexyacc.qbs
|
||||
%%DATADIR%%/modules/nodejs/NodeJS.qbs
|
||||
%%DATADIR%%/modules/nodejs/nodejs.js
|
||||
%%DATADIR%%/modules/nsis/NSISModule.qbs
|
||||
%%DATADIR%%/modules/pkgconfig/pkgconfig.qbs
|
||||
%%DATADIR%%/modules/protobuf/cpp/protobufcpp.qbs
|
||||
%%DATADIR%%/modules/protobuf/nanopb/nanopb.qbs
|
||||
%%DATADIR%%/modules/protobuf/objc/protobufobjc.qbs
|
||||
%%DATADIR%%/modules/protobuf/protobuf.js
|
||||
%%DATADIR%%/modules/protobuf/protobufbase.qbs
|
||||
%%DATADIR%%/modules/qbs/common.qbs
|
||||
%%DATADIR%%/modules/qnx/qnx.qbs
|
||||
%%DATADIR%%/modules/texttemplate/texttemplate.qbs
|
||||
%%DATADIR%%/modules/typescript/TypeScriptModule.qbs
|
||||
%%DATADIR%%/modules/typescript/qbs-tsc-scan/qbs-tsc-scan.ts
|
||||
%%DATADIR%%/modules/typescript/typescript.js
|
||||
%%DATADIR%%/modules/vcs/vcs-module.qbs
|
||||
%%DATADIR%%/modules/wix/WiXModule.qbs
|
||||
%%DATADIR%%/modules/xcode/xcode.js
|
||||
%%DATADIR%%/modules/xcode/xcode.qbs
|
||||
%%DATADIR%%/python/dmgbuild/__init__.py
|
||||
%%DATADIR%%/python/dmgbuild/__main__.py
|
||||
%%DATADIR%%/python/dmgbuild/badge.py
|
||||
%%DATADIR%%/python/dmgbuild/colors.py
|
||||
%%DATADIR%%/python/dmgbuild/core.py
|
||||
%%DATADIR%%/python/dmgbuild/licensing.py
|
||||
%%DATADIR%%/python/ds_store/__init__.py
|
||||
%%DATADIR%%/python/ds_store/__main__.py
|
||||
%%DATADIR%%/python/ds_store/buddy.py
|
||||
%%DATADIR%%/python/ds_store/store.py
|
||||
%%DATADIR%%/python/mac_alias/__init__.py
|
||||
%%DATADIR%%/python/mac_alias/alias.py
|
||||
%%DATADIR%%/python/mac_alias/bookmark.py
|
||||
%%DATADIR%%/python/mac_alias/osx.py
|
||||
%%DATADIR%%/python/mac_alias/utils.py
|
||||
%%DATADIR%%/qml-type-descriptions/qbs-bundle.json
|
||||
%%DATADIR%%/qml-type-descriptions/qbs.qmltypes
|
Loading…
Add table
Reference in a new issue