2017-02-11 08:08:50 +01:00
|
|
|
include(../gtest_dependency.pri)
|
|
|
|
|
|
|
|
|
|
TEMPLATE = app
|
|
|
|
|
CONFIG += console c++11
|
|
|
|
|
CONFIG -= app_bundle
|
|
|
|
|
CONFIG += thread
|
|
|
|
|
CONFIG += qt
|
|
|
|
|
|
|
|
|
|
QT += core
|
|
|
|
|
|
2017-02-26 19:29:50 +01:00
|
|
|
HEADERS += \
|
|
|
|
|
tst_expected.h \
|
|
|
|
|
tst_SqlLexer.h \
|
|
|
|
|
tst_scopeguard.h \
|
|
|
|
|
tst_CsvWriter.h \
|
|
|
|
|
tst_PasswordManager.h
|
2017-02-11 08:08:50 +01:00
|
|
|
|
2017-02-26 19:29:50 +01:00
|
|
|
SOURCES += main.cpp
|
|
|
|
|
|
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../../core/release/ -lcore
|
|
|
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../../core/debug/ -lcore
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += C:\prog\include C:\VSproj\boost_1_63_0
|
|
|
|
|
INCLUDEPATH += $$PWD/../../../core
|
|
|
|
|
DEPENDPATH += $$PWD/../../../core
|
|
|
|
|
LIBS += c:\prog\lib\botand_imp.lib
|
|
|
|
|
|
|
|
|
|
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../../core/release/libcore.a
|
|
|
|
|
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../../core/debug/libcore.a
|
|
|
|
|
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../../core/release/core.lib
|
|
|
|
|
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../../../core/debug/core.lib
|