Fix qbs build

Change-Id: If532d1498fecdf07fa5f5743b90528f0dd2eab9d
Reviewed-by: Yuchen Deng <loaden@gmail.com>
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
This commit is contained in:
Orgad Shaneh
2012-07-05 11:05:30 +03:00
committed by Joerg Bornemann
parent 9fb9a94eba
commit 618115c3cd
2 changed files with 20 additions and 15 deletions

View File

@@ -41,6 +41,8 @@ QtcPlugin {
"androiddeploystepwidget.cpp",
"androiddeploystepwidget.h",
"androiddeploystepwidget.ui",
"androiddevice.cpp",
"androiddevice.h",
"androiddevicefactory.cpp",
"androiddevicefactory.h",
"androidglobal.h",

View File

@@ -23,24 +23,30 @@ QtcPlugin {
cpp.defines: {
return base.concat([
"QT_NO_CAST_TO_ASCII",
"PROPARSER_AS_LIBRARY",
"PROPARSER_LIBRARY",
"PROPARSER_THREAD_SAFE",
"QMAKE_AS_LIBRARY",
"QMAKE_LIBRARY",
"PROEVALUATOR_THREAD_SAFE",
"PROEVALUATOR_CUMULATIVE"
"PROEVALUATOR_CUMULATIVE",
"QMAKE_BUILTIN_PRFS"
])
}
files: [
"../../shared/proparser/proparser_global.h",
"../../shared/proparser/profileparser.h",
"../../shared/proparser/profileevaluator.h",
"../../shared/proparser/proitems.h",
"../../shared/proparser/prowriter.h",
"../../shared/proparser/profileparser.cpp",
"../../shared/proparser/qmakebuiltins.cpp",
"../../shared/proparser/qmakeevaluator.cpp",
"../../shared/proparser/qmakeevaluator.h",
"../../shared/proparser/qmakeevaluator_p.h",
"../../shared/proparser/qmakeglobals.cpp",
"../../shared/proparser/qmakeglobals.h",
"../../shared/proparser/qmakeparser.cpp",
"../../shared/proparser/qmakeparser.h",
"../../shared/proparser/qmake_global.h",
"../../shared/proparser/profileevaluator.cpp",
"../../shared/proparser/profileevaluator.h",
"../../shared/proparser/proitems.cpp",
"../../shared/proparser/proitems.h",
"../../shared/proparser/prowriter.cpp",
"../../shared/proparser/prowriter.h",
"../../shared/proparser/proparser.qrc",
"../../shared/proparser/ioutils.h",
"../../shared/proparser/ioutils.cpp",
@@ -96,12 +102,9 @@ QtcPlugin {
Depends { name: "cpp" }
cpp.includePaths: [ "../../shared" ]
cpp.defines: [
"PROPARSER_AS_LIBRARY",
"PROPARSER_LIBRARY",
"PROPARSER_THREAD_SAFE",
"QMAKE_AS_LIBRARY",
"PROEVALUATOR_THREAD_SAFE",
"PROEVALUATOR_CUMULATIVE"
"QMAKE_BUILTIN_PRFS"
]
}
}