2009-10-26 17:26:53 +01:00
|
|
|
contains(CONFIG, dll) {
|
|
|
|
|
DEFINES += CPLUSPLUS_BUILD_LIB
|
|
|
|
|
} else {
|
|
|
|
|
DEFINES += CPLUSPLUS_BUILD_STATIC_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-09-17 12:29:06 +02:00
|
|
|
$$PWD/BackwardsScanner.h \
|
2009-09-17 15:44:54 +02:00
|
|
|
$$PWD/MatchingText.h \
|
2009-02-10 10:48:19 +01:00
|
|
|
$$PWD/OverviewModel.h
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/Icons.cpp \
|
|
|
|
|
$$PWD/ExpressionUnderCursor.cpp \
|
|
|
|
|
$$PWD/TokenUnderCursor.cpp \
|
2009-09-17 12:29:06 +02:00
|
|
|
$$PWD/BackwardsScanner.cpp \
|
2009-09-17 15:44:54 +02:00
|
|
|
$$PWD/MatchingText.cpp \
|
2009-02-10 10:48:19 +01:00
|
|
|
$$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-07-07 12:06:34 +02:00
|
|
|
$$PWD/ASTParent.h \
|
2009-10-26 12:41:13 +01:00
|
|
|
$$PWD/GenTemplateInstance.h \
|
2009-10-27 12:01:45 +01:00
|
|
|
$$PWD/FindUsages.h \
|
2009-07-13 11:40:54 +02:00
|
|
|
$$PWD/CheckUndefinedSymbols.h \
|
2010-03-17 12:34:29 +01:00
|
|
|
$$PWD/DependencyTable.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-07-07 12:06:34 +02:00
|
|
|
$$PWD/ASTParent.cpp \
|
2009-10-26 12:41:13 +01:00
|
|
|
$$PWD/GenTemplateInstance.cpp \
|
2009-10-27 12:01:45 +01:00
|
|
|
$$PWD/FindUsages.cpp \
|
2009-07-13 11:40:54 +02:00
|
|
|
$$PWD/CheckUndefinedSymbols.cpp \
|
2010-03-17 12:34:29 +01:00
|
|
|
$$PWD/DependencyTable.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
|