summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/multiple-configurations/multiple-configurations.qbs
blob: f8371e983cc362ad028ede35f3c911a11e45c9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import qbs

Project {
    StaticLibrary {
        name: "lib"
        Depends { name: "cpp" }
        files: ["lib.cpp", "lib.h"]
    }
    CppApplication {
        name: "app"
        Depends { name: "lib" }
        cpp.includePaths: project.sourceDirectory
        files: ["file.cpp", "file.h", "main.cpp"]
    }
}