diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-08-21 11:35:29 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-08-21 11:36:36 (GMT) |
commit | 508b447075fb852e61ddf88c92c9099dad292747 (patch) | |
tree | 7e7acabb5478a877a6fc2f888372346adb6eb74f | |
parent | d1ced31e867f7e2bbd56daf46c7bf3cc924c8546 (diff) | |
download | Qt-508b447075fb852e61ddf88c92c9099dad292747.zip Qt-508b447075fb852e61ddf88c92c9099dad292747.tar.gz Qt-508b447075fb852e61ddf88c92c9099dad292747.tar.bz2 |
get rid of qmake warnings when parsing script.pro (JavaScriptCore.pri)
-rw-r--r-- | src/script/script.pro | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/script/script.pro b/src/script/script.pro index 9d4813e..03dc341 100644 --- a/src/script/script.pro +++ b/src/script/script.pro @@ -37,6 +37,15 @@ wince* { LIBS += -lmmtimer } +# avoid warnings when parsing JavaScriptCore.pri +# (we don't care about generating files, we already have them generated) +defineTest(addExtraCompiler) { + return(true) +} +defineTest(addExtraCompilerWithHeader) { + return(true) +} + include($$WEBKITDIR/JavaScriptCore/JavaScriptCore.pri) INCLUDEPATH += $$WEBKITDIR/JavaScriptCore |