aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/clangsupport/clangsupport.qbs
blob: 6b76f784aff69aff2c22f6df0c163580122a3bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import qbs 1.0

QtcLibrary {
    name: "ClangSupport"
    targetName: "Clangbackendipc"

    Depends { name: "Qt.network" }
    Depends { name: "Sqlite" }
    Depends { name: "Utils" }

    cpp.defines: base.concat("CLANGSUPPORT_BUILD_LIB")
    cpp.includePaths: base.concat(".")

    Group {
        files: [
            "*.h",
            "*.cpp"
        ]
    }

    Export {
        Depends { name: "Sqlite" }
        Depends { name: "Utils" }
        Depends { name: "Qt.network" }
        cpp.includePaths: [
            "."
        ]
    }
}