Qbs-Example: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Tools::qbs]] | |||
= Hello, World! = | |||
Here's the smallest qbs project you will ever see (source file omitted).<br />More (and more complex) examples can be found in the examples/ subdirectory of the qbs source tree. | |||
<code><br />import qbs | |||
CppApplication {<br /> name: "HelloWorld-minimal&quot;<br /> files: "main.cpp&quot;<br />} |
Revision as of 08:57, 24 February 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"
}