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
|
|
|
|
|
|
2011-05-16 10:53:42 +02:00
|
|
|
include(../3rdparty/cplusplus/cplusplus.pri)
|
2009-02-09 10:21:29 +01:00
|
|
|
|
2012-02-08 14:44:30 +01:00
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += concurrent
|
|
|
|
|
|
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 \
|
2009-09-17 12:29:06 +02:00
|
|
|
$$PWD/BackwardsScanner.h \
|
2009-09-17 15:44:54 +02:00
|
|
|
$$PWD/MatchingText.h \
|
2010-06-29 17:47:59 +02:00
|
|
|
$$PWD/OverviewModel.h
|
2009-02-10 10:48:19 +01:00
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/Icons.cpp \
|
|
|
|
|
$$PWD/ExpressionUnderCursor.cpp \
|
2009-09-17 12:29:06 +02:00
|
|
|
$$PWD/BackwardsScanner.cpp \
|
2009-09-17 15:44:54 +02:00
|
|
|
$$PWD/MatchingText.cpp \
|
2010-06-29 17:47:59 +02:00
|
|
|
$$PWD/OverviewModel.cpp
|
2009-02-10 10:48:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
$$PWD/SimpleLexer.h \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$PWD/CppDocument.h \
|
2010-07-16 11:03:39 +02:00
|
|
|
$$PWD/CppRewriter.h \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$PWD/Overview.h \
|
|
|
|
|
$$PWD/NamePrettyPrinter.h \
|
|
|
|
|
$$PWD/TypeOfExpression.h \
|
|
|
|
|
$$PWD/TypePrettyPrinter.h \
|
|
|
|
|
$$PWD/ResolveExpression.h \
|
2010-05-05 09:54:19 +02:00
|
|
|
$$PWD/LookupItem.h \
|
2010-05-05 10:28:32 +02:00
|
|
|
$$PWD/LookupContext.h \
|
2009-07-07 12:06:34 +02:00
|
|
|
$$PWD/ASTParent.h \
|
2010-05-28 15:25:24 +02:00
|
|
|
$$PWD/ASTPath.h \
|
2010-12-15 15:11:59 +01:00
|
|
|
$$PWD/SnapshotSymbolVisitor.h \
|
|
|
|
|
$$PWD/SymbolNameVisitor.h \
|
2010-05-20 13:44:38 +02:00
|
|
|
$$PWD/DeprecatedGenTemplateInstance.h \
|
2009-10-27 12:01:45 +01:00
|
|
|
$$PWD/FindUsages.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 \
|
2010-12-03 13:49:35 +01:00
|
|
|
$$PWD/pp-scanner.h \
|
2011-05-09 13:25:32 +02:00
|
|
|
$$PWD/ModelManagerInterface.h \
|
2011-07-08 09:56:02 +02:00
|
|
|
$$PWD/findcdbbreakpoint.h \
|
|
|
|
|
$$PWD/TypeHierarchyBuilder.h
|
2009-02-09 10:21:29 +01:00
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/SimpleLexer.cpp \
|
|
|
|
|
$$PWD/CppDocument.cpp \
|
2010-07-16 11:03:39 +02:00
|
|
|
$$PWD/CppRewriter.cpp \
|
2009-02-09 10:21:29 +01:00
|
|
|
$$PWD/Overview.cpp \
|
|
|
|
|
$$PWD/NamePrettyPrinter.cpp \
|
|
|
|
|
$$PWD/TypeOfExpression.cpp \
|
|
|
|
|
$$PWD/TypePrettyPrinter.cpp \
|
|
|
|
|
$$PWD/ResolveExpression.cpp \
|
2010-05-05 09:54:19 +02:00
|
|
|
$$PWD/LookupItem.cpp \
|
2010-05-05 10:28:32 +02:00
|
|
|
$$PWD/LookupContext.cpp \
|
2009-07-07 12:06:34 +02:00
|
|
|
$$PWD/ASTParent.cpp \
|
2010-05-28 15:25:24 +02:00
|
|
|
$$PWD/ASTPath.cpp \
|
2010-12-15 15:11:59 +01:00
|
|
|
$$PWD/SnapshotSymbolVisitor.cpp \
|
|
|
|
|
$$PWD/SymbolNameVisitor.cpp \
|
2010-05-20 13:44:38 +02:00
|
|
|
$$PWD/DeprecatedGenTemplateInstance.cpp \
|
2009-10-27 12:01:45 +01:00
|
|
|
$$PWD/FindUsages.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 \
|
2010-12-03 13:49:35 +01:00
|
|
|
$$PWD/pp-scanner.cpp \
|
2011-05-09 13:25:32 +02:00
|
|
|
$$PWD/ModelManagerInterface.cpp \
|
2011-07-08 09:56:02 +02:00
|
|
|
$$PWD/findcdbbreakpoint.cpp \
|
|
|
|
|
$$PWD/TypeHierarchyBuilder.cpp
|
2009-02-09 10:21:29 +01:00
|
|
|
|
|
|
|
|
RESOURCES += $$PWD/cplusplus.qrc
|