summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata-qt/dbus-adaptors/car.qbs
blob: 34aab470173c308c30ed8cc78666ffb4efb148af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CppApplication {
    name: "car"
    condition: Qt.dbus.present
    cpp.cxxLanguageVersion: "c++11"
    Depends { name: "Qt.dbus"; required: false }
    Depends { name: "Qt.widgets" }
    files: [
        "car.cpp",
        "car.h",
        "main.cpp",
    ]

    Group {
        name: "DBUS Adaptor"
        files: ["THIS.IS.A.STRANGE.FILENAME.CAR.XML"]
        fileTags: ["qt.dbus.adaptor"]
    }
}