c8bd8aeb2c
FileInfo.pathSeparator() available only since qbs 1.22. Use FileInfo.joinPaths() only when necessary.
88 lines
2.8 KiB
QML
88 lines
2.8 KiB
QML
import qbs.FileInfo
|
|
|
|
VApp {
|
|
Depends { name: "freedesktop2" }
|
|
Depends { name: "tenv" }
|
|
|
|
version: "0.7.52"
|
|
install: true
|
|
installDir: buildconfig.installAppPath
|
|
installDebugInformation: true
|
|
|
|
Properties {
|
|
// Breakpoints do not work if debug the app inside of bundle. In debug mode we turn off creating a bundle.
|
|
// Probably it will breake some dependencies. Version for Mac designed to work inside an app bundle.
|
|
condition: qbs.targetOS.contains("macos") && qbs.buildVariant == "debug"
|
|
bundle.isBundle: false
|
|
}
|
|
|
|
Properties {
|
|
condition: buildconfig.enableAppImage && qbs.targetOS.contains("unix") && !qbs.targetOS.contains("macos")
|
|
cpp.dynamicLibraries: ["icudata", "icui18n", "icuuc"]
|
|
}
|
|
|
|
Group {
|
|
name: "freedesktop"
|
|
prefix: project.sourceDirectory + "/dist/"
|
|
files: [
|
|
"ua.com.smart-pattern." + product.targetName + ".desktop"
|
|
]
|
|
}
|
|
|
|
freedesktop2.desktopKeys: ({
|
|
'Exec': FileInfo.joinPaths(qbs.installPrefix,
|
|
product.installDir,
|
|
product.targetName) + ' %F',
|
|
'X-Application-Version': product.version,
|
|
})
|
|
|
|
Group {
|
|
name: "Translations"
|
|
prefix: project.sourceDirectory + "/share/translations/"
|
|
files: {
|
|
var files = [];
|
|
|
|
var locales = [
|
|
"uk_UA",
|
|
"de_DE",
|
|
"cs_CZ",
|
|
"he_IL",
|
|
"fr_FR",
|
|
"it_IT",
|
|
"nl_NL",
|
|
"id_ID",
|
|
"es_ES",
|
|
"fi_FI",
|
|
"en_US",
|
|
"en_CA",
|
|
"en_IN",
|
|
"ro_RO",
|
|
"zh_CN",
|
|
"pt_BR",
|
|
"el_GR",
|
|
"pl_PL"
|
|
];
|
|
|
|
for (var i = 0; i < locales.length; i++) {
|
|
files.push("valentina_" + locales[i] + ".ts");
|
|
}
|
|
|
|
var pmSystems = [
|
|
"p0", "p1", "p2", "p3", "p4", "p5", "p6", "p7", "p8", "p9", "p10", "p11", "p12", "p13", "p14", "p15",
|
|
"p16", "p17", "p18", "p19", "p20", "p21", "p22", "p23", "p24", "p25", "p26", "p27", "p28", "p29",
|
|
"p30", "p31", "p32", "p33", "p34", "p35", "p36", "p37", "p38", "p39", "p40", "p41", "p42", "p43",
|
|
"p44", "p45", "p46", "p47", "p48", "p49", "p50", "p51", "p52", "p53", "p54", "p998"
|
|
]
|
|
|
|
for (var i = 0; i < pmSystems.length; i++) {
|
|
files.push("measurements_" + pmSystems[i] + ".ts");
|
|
for (var j = 0; j < locales.length; j++) {
|
|
files.push("measurements_" + pmSystems[i] + "_" + locales[j] + ".ts");
|
|
}
|
|
}
|
|
|
|
return files;
|
|
}
|
|
}
|
|
}
|