Made it possible to compile libCPlusPlus without `gui'.

This commit is contained in:
Roberto Raggi
2009-02-10 10:48:19 +01:00
parent fba8e1510c
commit 9d52a72534
2 changed files with 17 additions and 8 deletions

View File

@@ -3,14 +3,24 @@ INCLUDEPATH += $$PWD
include(../../shared/cplusplus/cplusplus.pri)
contains(QT_CONFIG, gui) {
HEADERS += \
$$PWD/SimpleLexer.h \
$$PWD/Icons.h \
$$PWD/ExpressionUnderCursor.h \
$$PWD/TokenUnderCursor.h \
$$PWD/OverviewModel.h
SOURCES += \
$$PWD/Icons.cpp \
$$PWD/ExpressionUnderCursor.cpp \
$$PWD/TokenUnderCursor.cpp \
$$PWD/OverviewModel.cpp
}
HEADERS += \
$$PWD/SimpleLexer.h \
$$PWD/CppDocument.h \
$$PWD/Icons.h \
$$PWD/Overview.h \
$$PWD/OverviewModel.h \
$$PWD/NamePrettyPrinter.h \
$$PWD/TypeOfExpression.h \
$$PWD/TypePrettyPrinter.h \
@@ -27,12 +37,8 @@ HEADERS += \
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 \

View File

@@ -1,4 +1,7 @@
load(qttest_p4)
TEMPLATE = app
CONFIG += qt warn_on console depend_includepath
QT = core testlib
include(../../../../src/libs/cplusplus/cplusplus-lib.pri)
SOURCES += tst_lookup.cpp