2023-01-06 16:41:45 +01:00
|
|
|
import qbs.FileInfo
|
|
|
|
|
2023-01-04 17:31:50 +01:00
|
|
|
VApp {
|
|
|
|
Depends { name: "buildconfig" }
|
|
|
|
Depends { name: "ib"; condition: qbs.targetOS.contains("macos") }
|
|
|
|
Depends { name: "freedesktop" }
|
2023-01-05 11:25:29 +01:00
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "svg"] }
|
2023-01-04 17:31:50 +01:00
|
|
|
Depends { name: "VMiscLib"; }
|
|
|
|
Depends { name: "VPatternDBLib"; }
|
|
|
|
Depends { name: "FervorLib"; }
|
|
|
|
Depends { name: "QMUParserLib"; }
|
|
|
|
Depends { name: "VFormatLib"; }
|
|
|
|
Depends { name: "VWidgetsLib"; }
|
|
|
|
Depends { name: "VToolsLib"; }
|
|
|
|
|
2023-01-04 20:00:11 +01:00
|
|
|
Properties {
|
|
|
|
condition: cpp.defines.contains("APPIMAGE")
|
|
|
|
cpp.dynamicLibraries: ["icudata", "icui18n", "icuuc"]
|
|
|
|
}
|
|
|
|
|
2023-01-04 17:31:50 +01:00
|
|
|
name: "Tape"
|
|
|
|
buildconfig.appTarget: qbs.targetOS.contains("macos") ? "Tape" : "tape"
|
|
|
|
targetName: buildconfig.appTarget
|
|
|
|
|
|
|
|
files: [
|
|
|
|
"main.cpp",
|
|
|
|
"tmainwindow.cpp",
|
|
|
|
"mapplication.cpp",
|
|
|
|
"vlitepattern.cpp",
|
|
|
|
"vtapesettings.cpp",
|
|
|
|
"tmainwindow.h",
|
|
|
|
"mapplication.h",
|
|
|
|
"version.h",
|
|
|
|
"vlitepattern.h",
|
|
|
|
"vtapesettings.h",
|
|
|
|
"tmainwindow.ui",
|
|
|
|
]
|
|
|
|
|
|
|
|
Group {
|
|
|
|
name: "dialogs"
|
|
|
|
prefix: "dialogs/"
|
|
|
|
files: [
|
|
|
|
"dialogdimensioncustomnames.cpp",
|
|
|
|
"dialogdimensionlabels.cpp",
|
|
|
|
"dialogmeasurementscsvcolumns.cpp",
|
|
|
|
"dialogrestrictdimension.cpp",
|
|
|
|
"dialogabouttape.cpp",
|
|
|
|
"dialognewmeasurements.cpp",
|
|
|
|
"dialogmdatabase.cpp",
|
|
|
|
"dialogtapepreferences.cpp",
|
|
|
|
"configpages/tapepreferencesconfigurationpage.cpp",
|
|
|
|
"configpages/tapepreferencespathpage.cpp",
|
|
|
|
"dialogsetupmultisize.cpp",
|
|
|
|
"dialogdimensioncustomnames.h",
|
|
|
|
"dialogdimensionlabels.h",
|
|
|
|
"dialogmeasurementscsvcolumns.h",
|
|
|
|
"dialogrestrictdimension.h",
|
|
|
|
"dialogabouttape.h",
|
|
|
|
"dialognewmeasurements.h",
|
|
|
|
"dialogmdatabase.h",
|
|
|
|
"dialogtapepreferences.h",
|
|
|
|
"configpages/tapepreferencesconfigurationpage.h",
|
|
|
|
"configpages/tapepreferencespathpage.h",
|
|
|
|
"dialogsetupmultisize.h",
|
|
|
|
"dialogdimensioncustomnames.ui",
|
|
|
|
"dialogdimensionlabels.ui",
|
|
|
|
"dialogmeasurementscsvcolumns.ui",
|
|
|
|
"dialogrestrictdimension.ui",
|
|
|
|
"dialogabouttape.ui",
|
|
|
|
"dialognewmeasurements.ui",
|
|
|
|
"dialogmdatabase.ui",
|
|
|
|
"dialogtapepreferences.ui",
|
|
|
|
"configpages/tapepreferencesconfigurationpage.ui",
|
|
|
|
"configpages/tapepreferencespathpage.ui",
|
|
|
|
"dialogsetupmultisize.ui",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
Group {
|
|
|
|
name: "Resources"
|
|
|
|
files: [
|
|
|
|
"share/resources/tapeicon.qrc",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
Group {
|
|
|
|
name: "Precompiled headers"
|
2023-01-09 13:14:48 +01:00
|
|
|
condition: buildconfig.enablePCH
|
2023-01-04 17:31:50 +01:00
|
|
|
files: {
|
|
|
|
var files = ["stable.h"];
|
2023-01-04 20:00:11 +01:00
|
|
|
if (qbs.toolchain.contains("msvc"))
|
2023-01-04 17:31:50 +01:00
|
|
|
files.push("stable.cpp")
|
|
|
|
return files;
|
|
|
|
}
|
|
|
|
fileTags: ["cpp_pch_src"]
|
|
|
|
}
|
2023-01-06 16:41:45 +01:00
|
|
|
|
|
|
|
Export {
|
|
|
|
Depends { name: "cpp" }
|
|
|
|
cpp.defines: {
|
|
|
|
var defines = [];
|
|
|
|
var extension = qbs.targetOS.contains("windows") ? ".exe" : "";
|
|
|
|
defines.push('TAPE_BUILDDIR="' + exportingProduct.buildDirectory + FileInfo.pathSeparator() +
|
|
|
|
exportingProduct.targetName + extension +'"');
|
|
|
|
return defines;
|
|
|
|
}
|
|
|
|
}
|
2023-01-04 17:31:50 +01:00
|
|
|
}
|