summaryrefslogtreecommitdiff
path: root/src/libs/aggregation/aggregation.qbs
blob: 96a4994d4f81ed66a9ca162f7603592be03d3375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import qbs 1.0

Project {
    name: "Aggregation"

    QtcDevHeaders { }

    QtcLibrary {
        Depends { name: "Qt.core" }
        cpp.defines: base.concat("AGGREGATION_LIBRARY")

        files: [
            "aggregate.cpp",
            "aggregate.h",
            "aggregation_global.h",
        ]
    }
}