You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.2 KiB
28 lines
1.2 KiB
QT += testlib
|
|
QT -= gui
|
|
|
|
CONFIG += qt console warn_on depend_includepath testcase
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
# Link with core project
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../appLogReaderCore/release/ -lappLogReaderCore
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../appLogReaderCore/debug/ -lappLogReaderCore
|
|
else:unix: LIBS += -L$$OUT_PWD/../appLogReaderCore/ -lappLogReaderCore
|
|
|
|
INCLUDEPATH += $$PWD/../appLogReaderCore
|
|
DEPENDPATH += $$PWD/../appLogReaderCore
|
|
|
|
win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/release/libappLogReaderCore.a
|
|
else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/debug/libappLogReaderCore.a
|
|
else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/release/appLogReaderCore.lib
|
|
else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/debug/appLogReaderCore.lib
|
|
else:unix: PRE_TARGETDEPS += $$OUT_PWD/../appLogReaderCore/libappLogReaderCore.a
|
|
|
|
SOURCES += \
|
|
LinkedListTest.cpp \
|
|
main.cpp
|
|
|
|
HEADERS += \
|
|
LinkedListTest.h
|
|
|