diff options
author | Roberto Raggi <qtc-committer@nokia.com> | 2009-02-09 10:21:29 +0100 |
---|---|---|
committer | Roberto Raggi <qtc-committer@nokia.com> | 2009-02-09 10:21:29 +0100 |
commit | 1f9bcd86e034bf57cd378b93880ebf9d3b6111e0 (patch) | |
tree | 7bf080ce4cb2203a569465a017c252c325fb9d6e /src/libs/cplusplus/cplusplus-lib.pri | |
parent | 47a85d5a42682d6eddfbc833278c0f27ba7e10cb (diff) | |
download | qt-creator-1f9bcd86e034bf57cd378b93880ebf9d3b6111e0.tar.gz |
Added a simple auto test for the name lookup.
Diffstat (limited to 'src/libs/cplusplus/cplusplus-lib.pri')
-rw-r--r-- | src/libs/cplusplus/cplusplus-lib.pri | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/libs/cplusplus/cplusplus-lib.pri b/src/libs/cplusplus/cplusplus-lib.pri new file mode 100644 index 0000000000..d3053228fc --- /dev/null +++ b/src/libs/cplusplus/cplusplus-lib.pri @@ -0,0 +1,48 @@ +DEFINES += HAVE_QT CPLUSPLUS_WITH_NAMESPACE CPLUSPLUS_BUILD_LIB +INCLUDEPATH += $$PWD + +include(../../shared/cplusplus/cplusplus.pri) + +HEADERS += \ + $$PWD/SimpleLexer.h \ + $$PWD/ExpressionUnderCursor.h \ + $$PWD/TokenUnderCursor.h \ + $$PWD/CppDocument.h \ + $$PWD/Icons.h \ + $$PWD/Overview.h \ + $$PWD/OverviewModel.h \ + $$PWD/NamePrettyPrinter.h \ + $$PWD/TypeOfExpression.h \ + $$PWD/TypePrettyPrinter.h \ + $$PWD/ResolveExpression.h \ + $$PWD/LookupContext.h \ + $$PWD/PreprocessorClient.h \ + $$PWD/PreprocessorEnvironment.h \ + $$PWD/Macro.h \ + $$PWD/pp.h \ + $$PWD/pp-cctype.h \ + $$PWD/pp-engine.h \ + $$PWD/pp-macro-expander.h \ + $$PWD/pp-scanner.h + +SOURCES += \ + $$PWD/SimpleLexer.cpp \ + $$PWD/ExpressionUnderCursor.cpp \ + $$PWD/TokenUnderCursor.cpp \ + $$PWD/CppDocument.cpp \ + $$PWD/Icons.cpp \ + $$PWD/Overview.cpp \ + $$PWD/OverviewModel.cpp \ + $$PWD/NamePrettyPrinter.cpp \ + $$PWD/TypeOfExpression.cpp \ + $$PWD/TypePrettyPrinter.cpp \ + $$PWD/ResolveExpression.cpp \ + $$PWD/LookupContext.cpp \ + $$PWD/PreprocessorClient.cpp \ + $$PWD/PreprocessorEnvironment.cpp \ + $$PWD/Macro.cpp \ + $$PWD/pp-engine.cpp \ + $$PWD/pp-macro-expander.cpp \ + $$PWD/pp-scanner.cpp + +RESOURCES += $$PWD/cplusplus.qrc |