forked from qt-creator/qt-creator
Compile ClearCase plugin on Mac but keep it disabled.
Change-Id: I43f09324ad2502a64bb51c4b6cde337ebbe18132 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
<plugin name=\"ClearCase\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\">
|
<plugin name=\"ClearCase\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_COMPAT_VERSION\" disabledByDefault=\"$$CLEARCASE_DISABLED_STR\">
|
||||||
<vendor>AudioCodes</vendor>
|
<vendor>AudioCodes</vendor>
|
||||||
<copyright>(C) 2013 AudioCodes Ltd.</copyright>
|
<copyright>(C) 2013 AudioCodes Ltd.</copyright>
|
||||||
<license>
|
<license>
|
||||||
|
@@ -1,5 +1,8 @@
|
|||||||
# PROVIDER = AudioCodes
|
# PROVIDER = AudioCodes
|
||||||
|
|
||||||
|
macx: CLEARCASE_DISABLED_STR = "true"
|
||||||
|
else: CLEARCASE_DISABLED_STR = "false"
|
||||||
|
|
||||||
include(../../qtcreatorplugin.pri)
|
include(../../qtcreatorplugin.pri)
|
||||||
|
|
||||||
HEADERS += activityselector.h \
|
HEADERS += activityselector.h \
|
||||||
|
@@ -6,7 +6,7 @@ QtcPlugin {
|
|||||||
name: "ClearCase"
|
name: "ClearCase"
|
||||||
// provider: "AudioCodes"
|
// provider: "AudioCodes"
|
||||||
|
|
||||||
condition: !qbs.targetOS.contains("osx")
|
pluginspecreplacements: ({"CLEARCASE_DISABLED_STR": (qbs.targetOS.contains("osx") ? "true": "false")})
|
||||||
|
|
||||||
Depends { name: "Qt.widgets" }
|
Depends { name: "Qt.widgets" }
|
||||||
Depends { name: "Core" }
|
Depends { name: "Core" }
|
||||||
|
@@ -46,7 +46,8 @@ SUBDIRS = \
|
|||||||
madde \
|
madde \
|
||||||
valgrind \
|
valgrind \
|
||||||
todo \
|
todo \
|
||||||
qnx
|
qnx \
|
||||||
|
clearcase
|
||||||
|
|
||||||
exists(../shared/qbs/qbs.pro): \
|
exists(../shared/qbs/qbs.pro): \
|
||||||
SUBDIRS += \
|
SUBDIRS += \
|
||||||
@@ -61,10 +62,6 @@ isEmpty(IDE_PACKAGE_MODE) {
|
|||||||
updateinfo
|
updateinfo
|
||||||
}
|
}
|
||||||
|
|
||||||
!macx: \
|
|
||||||
SUBDIRS += \
|
|
||||||
clearcase
|
|
||||||
|
|
||||||
contains(QT_CONFIG, declarative)|!isEmpty(QT.declarative.name) {
|
contains(QT_CONFIG, declarative)|!isEmpty(QT.declarative.name) {
|
||||||
SUBDIRS += \
|
SUBDIRS += \
|
||||||
qmlprojectmanager \
|
qmlprojectmanager \
|
||||||
|
Reference in New Issue
Block a user