Jump to content

Qbs-Example

From Qt Wiki
Revision as of 08:57, 24 February 2015 by Maintenance script (talk | contribs)


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