Files
qt-creator/lib/qtcreator/qtcomponents/qtcomponents.qbs
Eike Ziller e3fd25256d Qbs build files: Install files to correct location
First step in fixing the Mac build

Change-Id: I86659b9b46c01fc17fd93b8ffc3b378d2b580c36
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
2013-04-22 16:58:09 +02:00

18 lines
355 B
QML

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