Qbs-Example

From Qt Wiki
Revision as of 15:19, 30 October 2018 by Smokris (talk | contribs) (Indicate that Qbs is deprecated)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


On October 29th, 2018, The Qt Company announced that Qbs is deprecated.

Hello, World!

Here's the smallest qbs project you will ever see (source file omitted). More (and more complex) examples can be found in the examples/ subdirectory of the qbs source tree.

 import qbs
 
 CppApplication {
     name: "HelloWorld-minimal"
     files: "main.cpp"
 }