forked from qt-creator/qt-creator
Consistently give qbs groups a name.
These nicely show up in the project tree in Qt Creator then. Change-Id: I9782f5953d61940e6c2a0f61f07bb15aaeba49d9 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
committed by
Joerg Bornemann
parent
5e407c08d7
commit
1b3bb5cb7e
@@ -232,6 +232,7 @@ QtcPlugin {
|
||||
]
|
||||
|
||||
Group {
|
||||
name: "ProgressManager_win"
|
||||
condition: qbs.targetOS == "windows"
|
||||
files: [
|
||||
"progressmanager/progressmanager_win.cpp",
|
||||
@@ -239,6 +240,7 @@ QtcPlugin {
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "ProgressManager_mac"
|
||||
condition: qbs.targetOS == "mac"
|
||||
files: [
|
||||
"macfullscreen.h",
|
||||
@@ -248,6 +250,7 @@ QtcPlugin {
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "ProgressManager_x11"
|
||||
condition: qbs.targetPlatform.indexOf("unix") != -1 && qbs.targetOS != "mac"
|
||||
files: [
|
||||
"progressmanager/progressmanager_x11.cpp",
|
||||
|
||||
@@ -5,48 +5,56 @@ Product {
|
||||
name: "LogoImages"
|
||||
|
||||
Group {
|
||||
name: "16x16"
|
||||
qbs.install: true
|
||||
qbs.installDir: "share/icons/hicolor/16x16/apps"
|
||||
files: ["16/QtProject-qtcreator.png"]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "24x24"
|
||||
qbs.install: true
|
||||
qbs.installDir: "share/icons/hicolor/24x24/apps"
|
||||
files: ["24/QtProject-qtcreator.png"]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "32x32"
|
||||
qbs.install: true
|
||||
qbs.installDir: "share/icons/hicolor/32x32/apps"
|
||||
files: ["32/QtProject-qtcreator.png"]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "48x48"
|
||||
qbs.install: true
|
||||
qbs.installDir: "share/icons/hicolor/48x48/apps"
|
||||
files: ["48/QtProject-qtcreator.png"]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "64x64"
|
||||
qbs.install: true
|
||||
qbs.installDir: "share/icons/hicolor/64x64/apps"
|
||||
files: ["64/QtProject-qtcreator.png"]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "128x128"
|
||||
qbs.install: true
|
||||
qbs.installDir: "share/icons/hicolor/128x128/apps"
|
||||
files: ["128/QtProject-qtcreator.png"]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "256x256"
|
||||
qbs.install: true
|
||||
qbs.installDir: "share/icons/hicolor/256x256/apps"
|
||||
files: ["256/QtProject-qtcreator.png"]
|
||||
}
|
||||
|
||||
Group {
|
||||
name: "512x512"
|
||||
qbs.install: true
|
||||
qbs.installDir: "share/icons/hicolor/512x512/apps"
|
||||
files: ["512/QtProject-qtcreator.png"]
|
||||
|
||||
Reference in New Issue
Block a user