Qbs-Example: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
No edit summary
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
[[Category:Tools::qbs]]
[[Category:Tools::qbs]]


Line 6: Line 4:


Here's the smallest qbs project you will ever see (source file omitted).
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.
More (and more complex) examples can be found in the ''examples/'' subdirectory of the qbs source tree.


<code>
<code>

Revision as of 14:55, 18 May 2015


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"
 }