Files
qt-creator/share/share.qbs
Orgad Shaneh b515768dde Use file pattern in share.qbs
Change-Id: Iea20297d4281f7c6c149efedcc855c06641f8875
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
2012-10-16 12:10:12 +02:00

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",
]
}
}