diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2012-10-16 12:45:20 +0200 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@digia.com> | 2012-11-12 11:01:31 +0100 |
commit | 1011a486f4f4fe897126854128862974439166b8 (patch) | |
tree | 5c8680a6d79e4ba3e2f762f51bb56298d7806208 /src | |
parent | c56b402b927110872c2bd469918c78a9fa5bcf7f (diff) | |
download | qt-creator-1011a486f4f4fe897126854128862974439166b8.tar.gz |
qbs files: Remove src/share/share.qbs
Merged into share/share.qbs
Change-Id: Ia60124a851d234c69e5bc1a57a9e390863327f95
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/share/share.qbs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/src/share/share.qbs b/src/share/share.qbs deleted file mode 100644 index 3f2d437be1..0000000000 --- a/src/share/share.qbs +++ /dev/null @@ -1,40 +0,0 @@ -import qbs.base 1.0 - -Product { - type: ["installed_content"] - name: "SharedConditionally" - - Group { - qbs.installDir: "share/qtcreator/externaltools" - fileTags: ["install"] - prefix: "qtcreator/externaltools/" - files: [ - "lrelease.xml", - "lupdate.xml", - "qmlviewer.xml", - "sort.xml", - ] - } - - Group { - condition: qbs.targetOS == "linux" - qbs.installDir: "share/qtcreator/externaltools" - fileTags: ["install"] - files: ["qtcreator/externaltools/vi.xml"] - } - - Group { - condition: qbs.targetOS == "mac" - qbs.installDir: "share/qtcreator/externaltools" - fileTags: ["install"] - files: ["qtcreator/externaltools/vi_mac.xml"] - } - - Group { - condition: qbs.targetOS == "windows" - qbs.installDir: "share/qtcreator/externaltools" - fileTags: ["install"] - files: ["qtcreator/externaltools/notepad_win.xml"] - } -} - |