2009-06-03 11:10:04 +02:00
|
|
|
DEFINES += CPLUSPLUS_BUILD_LIB
|
2009-02-09 10:21:29 +01:00
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
|
|
|
|
|
|
include(../../shared/cplusplus/cplusplus.pri)
|
|
|
|
|
|
2009-02-10 11:21:42 +01:00
|
|
|
contains(QT, gui) {
|
2009-02-09 10:21:29 +01:00
|
|
|
HEADERS += \
|
2009-02-10 10:48:19 +01:00
|
|
|
$$PWD/Icons.h \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$PWD/ExpressionUnderCursor.h \
|
|
|
|
|
$$PWD/TokenUnderCursor.h \
|
2009-02-10 10:48:19 +01:00
|
|
|
$$PWD/OverviewModel.h
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/Icons.cpp \
|
|
|
|
|
$$PWD/ExpressionUnderCursor.cpp \
|
|
|
|
|
$$PWD/TokenUnderCursor.cpp \
|
|
|
|
|
$$PWD/OverviewModel.cpp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
$$PWD/SimpleLexer.h \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$PWD/CppDocument.h \
|
|
|
|
|
$$PWD/Overview.h \
|
|
|
|
|
$$PWD/NamePrettyPrinter.h \
|
|
|
|
|
$$PWD/TypeOfExpression.h \
|
|
|
|
|
$$PWD/TypePrettyPrinter.h \
|
|
|
|
|
$$PWD/ResolveExpression.h \
|
|
|
|
|
$$PWD/LookupContext.h \
|
2009-06-03 11:55:52 +02:00
|
|
|
$$PWD/CppBindings.h \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$PWD/PreprocessorClient.h \
|
|
|
|
|
$$PWD/PreprocessorEnvironment.h \
|
|
|
|
|
$$PWD/Macro.h \
|
2009-06-03 15:51:37 +02:00
|
|
|
$$PWD/FastPreprocessor.h \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$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/CppDocument.cpp \
|
|
|
|
|
$$PWD/Overview.cpp \
|
|
|
|
|
$$PWD/NamePrettyPrinter.cpp \
|
|
|
|
|
$$PWD/TypeOfExpression.cpp \
|
|
|
|
|
$$PWD/TypePrettyPrinter.cpp \
|
|
|
|
|
$$PWD/ResolveExpression.cpp \
|
|
|
|
|
$$PWD/LookupContext.cpp \
|
2009-06-03 11:55:52 +02:00
|
|
|
$$PWD/CppBindings.cpp \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$PWD/PreprocessorClient.cpp \
|
|
|
|
|
$$PWD/PreprocessorEnvironment.cpp \
|
2009-06-03 15:51:37 +02:00
|
|
|
$$PWD/FastPreprocessor.cpp \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$PWD/Macro.cpp \
|
|
|
|
|
$$PWD/pp-engine.cpp \
|
|
|
|
|
$$PWD/pp-macro-expander.cpp \
|
|
|
|
|
$$PWD/pp-scanner.cpp
|
|
|
|
|
|
|
|
|
|
RESOURCES += $$PWD/cplusplus.qrc
|