aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-5/myproject.qbs
blob: 66e32b220e0163775a8b2c96647c78fc3eebdc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Project {
    name: "My Project"
    minimumQbsVersion: "2.0"
    // ![0]
    references: [
        "app/app.qbs",
        "lib/lib.qbs",
        "test/test.qbs",
    ]
    // ![0]
    qbsSearchPaths: "qbs"
    AutotestRunner {
        timeout: 60
    }
}