aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/examples.qbs22
-rw-r--r--qbs.qbs9
2 files changed, 3 insertions, 28 deletions
diff --git a/examples/examples.qbs b/examples/examples.qbs
index d457b8a88..fa8ed0f5c 100644
--- a/examples/examples.qbs
+++ b/examples/examples.qbs
@@ -48,24 +48,6 @@
**
****************************************************************************/
-Project {
- references: [
- "app-and-lib/app-and-lib.qbs",
- "cocoa-application/cocoa-application.qbs",
- "cocoa-touch-application/cocoa-touch-application.qbs",
- "code-generator/code-generator.qbs",
- "collidingmice/collidingmice.qbs",
- "compiled-qml/compiled-qml.qbs",
- "grpc/grpc.qbs",
- "helloworld-complex/helloworld-complex.qbs",
- "helloworld-minimal/helloworld-minimal.qbs",
- "helloworld-qt/helloworld-qt.qbs",
- "install-bundle/install-bundle.qbs",
- // these examples are broken because of the bug in the protobuf modules
- // "protobuf/addressbook_cpp/addressbook_cpp.qbs",
- // "protobuf/addressbook_objc/addressbook_objc.qbs",
- "baremetal/baremetal.qbs",
- "rule/rule.qbs",
- "rpaths/rpaths.qbs",
- ]
+Product {
+ files: "**/*"
}
diff --git a/qbs.qbs b/qbs.qbs
index 69da6af03..2ebb58226 100644
--- a/qbs.qbs
+++ b/qbs.qbs
@@ -3,13 +3,13 @@ Project {
qbsSearchPaths: ["qbs-resources"]
property bool withCode: true
property bool withDocumentation: true
- property bool withExamples: false
property bool withTests: withCode
property stringList autotestArguments: []
property stringList autotestWrapper: []
references: [
"docker/docker.qbs",
+ "examples/examples.qbs",
"share/share.qbs",
"scripts/scripts.qbs",
]
@@ -22,13 +22,6 @@ Project {
}
SubProject {
- filePath: "examples/examples.qbs"
- Properties {
- condition: parent.withExamples
- }
- }
-
- SubProject {
filePath: "src/src.qbs"
Properties {
condition: parent.withCode