aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-2/app/app.qbs
blob: a3ee757ab3ad6da4df1a82b521a7f9cb50781485 (plain)
1
2
3
4
5
6
7
8
9
10
11
CppApplication {
    Depends { name: "mylib" }
    name: "My Application"
    targetName: "myapp"
    files: "main.c"
    version: "1.0.0"

    consoleApplication: true
    install: true
    installDebugInformation: true
}