aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-1/app/app.qbs
blob: 8d0831dc1da9500c56a90032a6aa5af079277527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! [0]
CppApplication {
    name: "My Application"
    targetName: "myapp"
    files: "main.c"
    version: "1.0.0"

    consoleApplication: true
    install: true
    installDebugInformation: true
}
//! [0]