Qbs-Example
Jump to navigation
Jump to search
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
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"
}