summaryrefslogtreecommitdiff
path: root/tests/auto/api/testdata/moc-hpp-included/moc-hpp-included.qbs
blob: 38d3d88ca9a16cf5168d3b4d8f71c6129c5abc42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Project {
    Product {
        type: "application"
        consoleApplication: true
        name: "moc_hpp_included"

        Depends { name: "Qt.core" }

        cpp.cxxLanguageVersion: "c++11"

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

        Group {
            condition: qbs.targetOS.includes("darwin")
            files: ["object2.mm", "object2.h"]
        }
    }
}