2015-07-23 13:01:02 +02:00
|
|
|
INCLUDEPATH += ../mockup
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-07-22 16:56:17 +02:00
|
|
|
include(gmock_dependency.pri)
|
|
|
|
|
include(clang_dependency.pri)
|
|
|
|
|
include(creator_dependency.pri)
|
2015-07-08 14:07:13 +02:00
|
|
|
|
2015-07-22 16:56:17 +02:00
|
|
|
QT += core network testlib widgets
|
|
|
|
|
CONFIG += console c++14 testcase
|
|
|
|
|
CONFIG -= app_bundle
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
|
osx:QMAKE_CXXFLAGS = -stdlib=libc++
|
|
|
|
|
|
2015-07-22 16:56:17 +02:00
|
|
|
DEFINES += \
|
|
|
|
|
QT_NO_CAST_FROM_ASCII \
|
|
|
|
|
CLANGBACKEND_TESTS \
|
|
|
|
|
DONT_CHECK_COMMAND_COUNTER \
|
|
|
|
|
TESTDATA_DIR=\"R\\\"xxx($$PWD/data)xxx\\\"\"
|
|
|
|
|
win32:DEFINES += ECHOSERVER=\"R\\\"xxx($$OUT_PWD/../echo)xxx\\\"\"
|
|
|
|
|
unix: DEFINES += ECHOSERVER=\"R\\\"xxx($$OUT_PWD/../echoserver/echo)xxx\\\"\"
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
activationsequencecontextprocessortest.cpp \
|
|
|
|
|
activationsequenceprocessortest.cpp \
|
|
|
|
|
clangcodecompleteresultstest.cpp \
|
|
|
|
|
clangcompletioncontextanalyzertest.cpp \
|
|
|
|
|
clangipcservertest.cpp \
|
|
|
|
|
clangstringtest.cpp \
|
|
|
|
|
clientserverinprocesstest.cpp \
|
|
|
|
|
clientserveroutsideprocess.cpp \
|
|
|
|
|
codecompletionsextractortest.cpp \
|
|
|
|
|
codecompletiontest.cpp \
|
|
|
|
|
completionchunkstotextconvertertest.cpp \
|
2015-06-01 18:51:55 +02:00
|
|
|
createtablesqlstatementbuildertest.cpp \
|
2015-07-22 16:56:17 +02:00
|
|
|
lineprefixertest.cpp \
|
|
|
|
|
main.cpp \
|
|
|
|
|
projecttest.cpp \
|
|
|
|
|
readandwritecommandblocktest.cpp \
|
|
|
|
|
spydummy.cpp \
|
2015-06-01 18:51:55 +02:00
|
|
|
sqlitecolumntest.cpp \
|
2015-07-22 16:56:17 +02:00
|
|
|
sqlitedatabasebackendtest.cpp \
|
|
|
|
|
sqlitedatabasetest.cpp \
|
2015-06-01 18:51:55 +02:00
|
|
|
sqlitestatementtest.cpp \
|
|
|
|
|
sqlitetabletest.cpp \
|
2015-07-22 16:56:17 +02:00
|
|
|
sqlstatementbuildertest.cpp \
|
|
|
|
|
translationunitstest.cpp \
|
2015-06-01 18:51:55 +02:00
|
|
|
translationunittest.cpp \
|
|
|
|
|
unsavedfilestest.cpp \
|
2015-07-22 16:56:17 +02:00
|
|
|
utf8test.cpp
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
gtest-qt-printing.h \
|
|
|
|
|
mockipclient.h \
|
2015-07-22 16:56:17 +02:00
|
|
|
mockipcserver.h \
|
|
|
|
|
spydummy.h
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-07-22 16:56:17 +02:00
|
|
|
OTHER_FILES += $$files(data/*)
|