diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:34:13 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:34:13 (GMT) |
commit | 67ad0519fd165acee4a4d2a94fa502e9e4847bd0 (patch) | |
tree | 1dbf50b3dff8d5ca7e9344733968c72704eb15ff /tests/auto/moc/moc.pro | |
download | Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.zip Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.tar.gz Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.tar.bz2 |
Long live Qt!
Diffstat (limited to 'tests/auto/moc/moc.pro')
-rw-r--r-- | tests/auto/moc/moc.pro | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/auto/moc/moc.pro b/tests/auto/moc/moc.pro new file mode 100644 index 0000000..f96b4e2 --- /dev/null +++ b/tests/auto/moc/moc.pro @@ -0,0 +1,30 @@ +load(qttest_p4) + +#exists(/usr/include/boost/spirit.hpp) { +# message("including boost headers in test") +# DEFINES += PARSE_BOOST +# # need to add explicitly so that it ends up in moc's search path +# INCLUDEPATH += /usr/include +#} + +INCLUDEPATH += testproject/include testproject + +DEFINES += SRCDIR=\\\"$$PWD\\\" +cross_compile: DEFINES += MOC_CROSS_COMPILED + +HEADERS += using-namespaces.h no-keywords.h task87883.h c-comments.h backslash-newlines.h oldstyle-casts.h \ + slots-with-void-template.h qinvokable.h namespaced-flags.h trigraphs.h \ + escapes-in-string-literals.h cstyle-enums.h qprivateslots.h gadgetwithnoenums.h \ + dir-in-include-path.h single_function_keyword.h task192552.h task189996.h \ + task234909.h task240368.h pure-virtual-signals.h +if(*-g++*|*-icc*):!irix-*:!win32-*: HEADERS += os9-newlines.h win-newlines.h +SOURCES += tst_moc.cpp + +QT += sql network svg script +contains(QT_CONFIG, qt3support): QT += qt3support +contains(QT_CONFIG, dbus){ + DEFINES += WITH_DBUS + QT += dbus +} + + |