forked from qt-creator/qt-creator
Fix wrong usage of Properties blocks in qbs files.
A property set on the product level is ignored if the same property is also set in a Properties block whose condition matches. Change-Id: I9248d735977e3d8ff8f1836fd80a49f3c8839bdc Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
committed by
Joerg Bornemann
parent
6d8e352981
commit
d646bde5f4
@@ -21,11 +21,15 @@ QtcPlugin {
|
||||
Depends { name: "app_version_header" }
|
||||
|
||||
Depends { name: "cpp" }
|
||||
Properties {
|
||||
condition: qtcore.versionMajor >= 5
|
||||
cpp.defines: base.concat(["QT_NO_WEBKIT"])
|
||||
|
||||
cpp.defines: {
|
||||
var list = base;
|
||||
if (qtcore.versionMajor >= 5)
|
||||
list.push("QT_NO_WEBKIT");
|
||||
list.push("QT_CLUCENE_SUPPORT");
|
||||
return list;
|
||||
}
|
||||
cpp.defines: base.concat("QT_CLUCENE_SUPPORT")
|
||||
|
||||
cpp.includePaths: base.concat("../../shared/help")
|
||||
|
||||
files: [
|
||||
|
||||
Reference in New Issue
Block a user