blob: 736f40347a52b220a58cd8eaaad521149777d83c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
QtApplication {
condition: {
var result = qbs.targetPlatform === qbs.hostPlatform;
if (!result)
console.info("targetPlatform differs from hostPlatform");
return result;
}
files: "main.cpp"
Group {
name: "QObject service provider"
files: "createqtclass.h"
fileTags: ["hpp", "unmocable"]
}
Group {
name: "QObject service user"
files: "myqtclass.h"
fileTags: ["hpp", "mocable"]
}
}
|