blob: 7e5f983406655b50e558e0a0dc7488d2661419cf (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
import qbs.Utilities
Project {
QtApplication {
condition: {
if (Utilities.versionCompare(Qt.core.version, "5.0") < 0) {
// qt4 moc can't be used with pluginMetaData
console.info("using qt4");
return false;
}
var result = qbs.targetPlatform === qbs.hostPlatform;
if (!result)
console.info("targetPlatform differs from hostPlatform");
return result;
}
name: "app"
consoleApplication: true
Depends { name: "thePlugin" }
cpp.cxxLanguageVersion: "c++11"
Properties {
condition: qbs.targetOS.contains("unix")
cpp.rpaths: [cpp.rpathOrigin]
}
Group {
fileTagsFilter: product.type
qbs.install: true
}
files: ["app.cpp"]
}
Library {
type: Qt.core.staticBuild ? "staticlibrary" : "dynamiclibrary"
name: "thePlugin"
Depends { name: "cpp" }
Depends { name: "Qt.core" }
Properties {
condition: qbs.targetOS.contains("darwin")
bundle.isBundle: false
}
cpp.defines: [Qt.core.staticBuild ? "QT_STATICPLUGIN" : "QT_PLUGIN"]
cpp.cxxLanguageVersion: "c++11"
cpp.sonamePrefix: qbs.targetOS.contains("darwin") ? "@rpath" : undefined
cpp.includePaths: ["."]
Qt.core.pluginMetaData: ["theKey=theValue"]
Group {
fileTagsFilter: product.type
qbs.install: true
}
files: ["theplugin.cpp"]
Group {
files: ["metadata.json"]
fileTags: ["qt_plugin_metadata"]
}
}
}
|