2017-08-26 22:44:31 +02:00
|
|
|
|
|
|
|
|
DESTDIR_UT = $$OUT_PWD/../..
|
|
|
|
|
DESTDIR = $$OUT_PWD/..
|
|
|
|
|
|
|
|
|
|
TARGET = tl_tests
|
|
|
|
|
|
|
|
|
|
include($$PWD/../../lib_ut.pri)
|
|
|
|
|
|
|
|
|
|
SOURCES = \
|
|
|
|
|
tlAlgorithm.cc \
|
|
|
|
|
tlClassRegistry.cc \
|
|
|
|
|
tlCommandLineParser.cc \
|
|
|
|
|
tlDataMapping.cc \
|
|
|
|
|
tlDeflate.cc \
|
|
|
|
|
tlEvents.cc \
|
|
|
|
|
tlExpression.cc \
|
|
|
|
|
tlFileUtils.cc \
|
|
|
|
|
tlGlobPattern.cc \
|
|
|
|
|
tlIntervalMap.cc \
|
|
|
|
|
tlIntervalSet.cc \
|
|
|
|
|
tlKDTree.cc \
|
|
|
|
|
tlMath.cc \
|
|
|
|
|
tlObject.cc \
|
|
|
|
|
tlReuseVector.cc \
|
|
|
|
|
tlStableVector.cc \
|
|
|
|
|
tlString.cc \
|
|
|
|
|
tlThreadedWorkers.cc \
|
|
|
|
|
tlUtils.cc \
|
|
|
|
|
tlVariant.cc \
|
2018-07-02 18:20:20 +02:00
|
|
|
tlInt128Support.cc
|
|
|
|
|
|
|
|
|
|
equals(HAVE_QT, "0") {
|
|
|
|
|
# nothing
|
|
|
|
|
} else {
|
|
|
|
|
SOURCES += \
|
|
|
|
|
tlWebDAV.cc \
|
|
|
|
|
tlDeferredExecution.cc \
|
|
|
|
|
tlXMLParser.cc \
|
|
|
|
|
tlFileSystemWatcher.cc \
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
equals(HAVE_CURL, "1") {
|
|
|
|
|
SOURCES += \
|
|
|
|
|
tlHttpStream.cc \
|
|
|
|
|
} else {
|
|
|
|
|
equals(HAVE_QT, "0") {
|
|
|
|
|
# no HTTP stream available
|
|
|
|
|
} else {
|
|
|
|
|
SOURCES += \
|
|
|
|
|
tlHttpStream.cc \
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-08-26 22:44:31 +02:00
|
|
|
|
2017-09-03 10:29:14 +02:00
|
|
|
INCLUDEPATH += $$TL_INC
|
|
|
|
|
DEPENDPATH += $$TL_INC
|
2017-08-26 22:44:31 +02:00
|
|
|
|
2017-09-03 10:29:14 +02:00
|
|
|
LIBS += -L$$DESTDIR_UT -lklayout_tl
|
2017-08-26 22:44:31 +02:00
|
|
|
|