Qbs-Example: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(Indicate that Qbs is deprecated)
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
[[Category:Tools::qbs]]
{{WarningBox|text=On October 29th, 2018, The Qt Company announced that Qbs is [https://blog.qt.io/blog/2018/10/29/deprecation-of-qbs/ deprecated].}}
=Hello, World!=
=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.
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.
===Categories:===


* [[:Category:Tools|Tools]]
<code>
** [[:Category:Tools::qbs|qbs]]
import qbs
CppApplication {
    name: "HelloWorld-minimal"
    files: "main.cpp"
}
</code>

Latest revision as of 15:19, 30 October 2018


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