Qbs-Example: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
=Hello, World!=
[[Category:Tools::qbs]]


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.
= Hello, World! =


===Categories:===
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.


* [[:Category:Tools|Tools]]
<code><br />import qbs
** [[:Category:Tools::qbs|qbs]]
 
CppApplication {<br /> name: &quot;HelloWorld-minimal&amp;quot;<br /> files: &quot;main.cpp&amp;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&quot;
files: "main.cpp&quot;
}