aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/assembly/assembly.qbs
blob: 344e65cd182c992a25473a0f04316d5874f5cfc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import qbs 1.0

Project {
   StaticLibrary {
      name : "testa"
      files : [ "testa.s" ]
      Depends { name: "cpp" }
      condition: qbs.toolchain.contains("gcc")
   }
   StaticLibrary {
      name : "testb"
      files : [ "testb.S" ]
      Depends { name: "cpp" }
      condition: qbs.toolchain.contains("gcc")
   }
   StaticLibrary {
      name : "testc"
      files : [ "testc.sx" ]
      Depends { name: "cpp" }
      condition: qbs.toolchain.contains("gcc")
   }
}