aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/clean/clean.qbs
blob: ce3a8eb12322992db9c17a82f885d11897ac9bf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Project {
    DynamicLibrary {
        Depends { name: "cpp" }
        version: "1.1.0"
        name: "dep"
        files: "dep.cpp"
        Properties {
            condition: qbs.targetOS.contains("darwin")
            bundle.isBundle: false
        }
    }

    CppApplication {
        consoleApplication: true
        name: "app"
        Depends { name: "dep" }
        files: "main.cpp"
    }
}