File: qobject.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 (16 lines) | stat: -rw-r--r-- 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs

Application {
    name: "qobject_bench"
    consoleApplication: true
    type: ["application"]

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

    files: [
        "main.cpp",
        "object.cpp",
        "object.h",
    ]
}