aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared/json/json.qbs
blob: 3587d307afc437f6b34db1fc7661c892dc7f38f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import qbs

StaticLibrary {
    name: "qtcjson"
    Depends { name: "cpp" }
    cpp.cxxLanguageVersion: "c++11"
    files: [
        "json.cpp",
        "json.h",
    ]
    Export {
        Depends { name: "cpp" }
        cpp.includePaths: [product.sourceDirectory]
    }
}