aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/conflicting-artifacts/conflicting-artifacts.qbs
blob: f2c5cb2bceae406e2ba7fb2deaea4ae492933819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs

Project {
    CppApplication {
        name: "a"
        targetName: "theName"
        destinationDirectory: project.buildDirectory
        files: ["main.cpp"]
    }
    CppApplication {
        name: "b"
        targetName: "theName"
        destinationDirectory: project.buildDirectory
        files: ["main.cpp"]
    }
}