23 lines
336 B
QML
23 lines
336 B
QML
|
|
import qbs
|
||
|
|
|
||
|
|
PSLibrary {
|
||
|
|
Depends { name: "Qt"; submodules: "core", "sql"}
|
||
|
|
|
||
|
|
Depends { name: "repositories" }
|
||
|
|
|
||
|
|
Group {
|
||
|
|
name: "cpp"
|
||
|
|
files: [
|
||
|
|
"*.h",
|
||
|
|
"*.cpp"
|
||
|
|
]
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
Properties {
|
||
|
|
condition: qbs.buildVariant === "debug"
|
||
|
|
cpp.defines: ["BUILD_SERVICES"]
|
||
|
|
}
|
||
|
|
}
|