forked from qt-creator/qt-creator
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>
18 lines
355 B
QML
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"
|
|
]
|
|
}
|
|
}
|