aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-10-26 15:16:41 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-10-26 15:28:28 +0100
commitf2c955bcba3d7b477c831e1c53c77ff6024062e4 (patch)
tree31e08988779d99d208e347fa6d99500240686499 /examples
parent6b965166479d326aeb43e2e80fa21eedb4be3f7c (diff)
parent9bbbf55ea6d1e80871ab810eebaeaf377bc0aad0 (diff)
Merge branch 1.4 into master.
Diffstat (limited to 'examples')
-rw-r--r--examples/code-generator/code-generator.qbs7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/code-generator/code-generator.qbs b/examples/code-generator/code-generator.qbs
index 591d7cb82..a8a804be2 100644
--- a/examples/code-generator/code-generator.qbs
+++ b/examples/code-generator/code-generator.qbs
@@ -38,16 +38,15 @@ import qbs
Project {
// A code generator that outputs a "Hello World" C++ program.
- Product {
+ CppApplication {
name: "hwgen"
- Depends { name: "cpp" }
files: ["hwgen.cpp"]
+ bundle.isBundle: false
}
// Generate and build a hello-world application.
- Product {
+ CppApplication {
name: "hello-world"
- Depends { name: "cpp" }
Depends { name: "hwgen" }
Rule {
inputs: ["qbs"] // needed to trigger this rule