Files
qt-creator/lib/qtcreator/qtcomponents/qtcomponents.qbs
Eike Ziller 1b3bb5cb7e 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>
2013-06-06 13:40:51 +02:00

19 lines
381 B
QML

import qbs.base 1.0
Product {
name: "QtComponents"
Group {
name: "Resources"
qbs.install: true
qbs.installDir: (qbs.targetOS == "windows" ? "lib/qtcreator" : project.ide_library_path)
+ "/qtcomponents"
files: [
"*.qml",
"qmldir",
"custom",
"images"
]
}
}