forked from qt-creator/qt-creator
Change-Id: Iea20297d4281f7c6c149efedcc855c06641f8875 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
29 lines
602 B
QML
29 lines
602 B
QML
import qbs.base 1.0
|
|
|
|
Product {
|
|
type: ["installed_content"]
|
|
name: "SharedContent"
|
|
|
|
Group {
|
|
condition: qbs.targetOS == "macx"
|
|
qbs.installDir: "share/qtcreator/scripts"
|
|
fileTags: ["install"]
|
|
files: "qtcreator/scripts/openTerminal.command"
|
|
}
|
|
|
|
Group {
|
|
qbs.installDir: "share"
|
|
fileTags: ["install"]
|
|
files: "qtcreator"
|
|
recursive: true
|
|
excludeFiles: [
|
|
"qtcreator/translations",
|
|
"qtcreator/scripts",
|
|
"share.pro",
|
|
"share.qbs",
|
|
"static.pro",
|
|
]
|
|
}
|
|
}
|
|
|