File: basic.qbs

package info (click to toggle)
verdigris 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,464 kB
  • sloc: cpp: 21,467; ansic: 2,065; makefile: 8
file content (21 lines) | stat: -rw-r--r-- 415 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import qbs

Application {
    name: "basic"
    consoleApplication: true
    type: ["application", "autotest"]

    Depends { name: "Verdigris" }
    Depends { name: "Qt.test" }

    Group {
        name: "source"
        fileTags: ["unmocable"]
        overrideTags: false
        files: [
            "anothertu.cpp",
            "tst_basic.cpp",
            "anothertu.h",
        ]
    }
}