File: preprocessor.qbs

package info (click to toggle)
qtcreator 18.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 261,240 kB
  • sloc: cpp: 1,581,554; ansic: 528,781; python: 48,245; xml: 34,678; javascript: 15,495; sh: 2,670; asm: 2,049; perl: 1,039; lex: 737; java: 695; objc: 409; makefile: 111; yacc: 86; cs: 41; ruby: 33; sed: 22
file content (36 lines) | stat: -rw-r--r-- 1,303 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import qbs
import "../cplusplusautotest.qbs" as CPlusPlusAutotest

CPlusPlusAutotest {
    name: "CPlusPlus preprocessor autotest"
    Group {
        name: "Source Files"
        files: "tst_preprocessor.cpp"
    }

    Group {
        name: "Data files"
        prefix: "data/"
        fileTags: ["data"]
        files: [
            "empty-macro.cpp", "empty-macro.out.cpp",
            "empty-macro.2.cpp", "empty-macro.2.out.cpp",
            "identifier-expansion.1.cpp", "identifier-expansion.1.out.cpp",
            "identifier-expansion.2.cpp", "identifier-expansion.2.out.cpp",
            "identifier-expansion.3.cpp", "identifier-expansion.3.out.cpp",
            "identifier-expansion.4.cpp", "identifier-expansion.4.out.cpp",
            "identifier-expansion.5.cpp", "identifier-expansion.5.out.cpp",
            "macro_expand.c", "macro_expand.out.c",
            "macro_expand_1.cpp", "macro_expand_1.out.cpp",
            "macro-test.cpp", "macro-test.out.cpp",
            "macro_pounder_fn.c",
            "noPP.1.cpp",
            "noPP.2.cpp",
            "poundpound.1.cpp", "poundpound.1.out.cpp",
            "recursive.1.cpp", "recursive.1.out.cpp",
            "reserved.1.cpp", "reserved.1.out.cpp",
        ]
    }

    cpp.defines: base.concat(['SRCDIR="' + path + '"'])
}