aboutsummaryrefslogtreecommitdiffstats
path: root/qbs.qbs
blob: 62864d87f30c4e8fa0d346f54675bf1436fcb544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import qbs 1.0

Project {
    property bool enableUnitTests: false
    property bool enableRPath: true
    property bool installApiHeaders: true
    property path libInstallDir: qbs.targetOS.contains("windows") ? "bin" : "lib"
    property path libRPaths: (project.enableRPath && qbs.targetOS.contains("linux"))
                ? ["$ORIGIN/../lib"] : undefined
    property path resourcesInstallDir: ""

    references: [
        "src/src.qbs",
        "doc/doc.qbs",
        "share/share.qbs",
        "tests/auto/auto.qbs"
    ]
}