aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/multiple-configurations/multiple-configurations.qbs
blob: f6fd16ba2d4ea52c72698c05cc547150ab5a2ba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"]
    }
}