aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2024-01-27 00:03:42 +0300
committerIvan Komissarov <ABBAPOH@gmail.com>2024-01-29 12:48:31 +0000
commit54fd05f5a893cebcba05d568fb86fcea37102f45 (patch)
tree682d8d5b896aeebacbbff6be301bebeb4cf8939f /examples
parent9b15e2c776cfad591983ed5961093d545eeea7e3 (diff)
Remove project.withExamples
We have a dedicated test that checks that examples are built. It makes little sense to build examples as a part of Qbs since it prevents us from installing example binaries which makes examples incomplete. Change-Id: Ie14ba8bf12daa05f6de12d8a8873a704020852c2 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/examples.qbs22
1 files changed, 2 insertions, 20 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: "**/*"
}