You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
386 B
Prolog
22 lines
386 B
Prolog
1 year ago
|
QT += core
|
||
|
|
||
|
TARGET = QsLogUnitTest
|
||
|
CONFIG += console qtestlib
|
||
|
CONFIG -= app_bundle
|
||
|
TEMPLATE = app
|
||
|
|
||
|
# test-case sources
|
||
|
SOURCES += TestLog.cpp
|
||
|
|
||
|
# component sources
|
||
|
include(../QsLog.pri)
|
||
|
|
||
|
SOURCES += \
|
||
|
./QtTestUtil/TestRegistry.cpp \
|
||
|
./QtTestUtil/SimpleChecker.cpp
|
||
|
|
||
|
HEADERS += \
|
||
|
./QtTestUtil/TestRegistry.h \
|
||
|
./QtTestUtil/TestRegistration.h \
|
||
|
./QtTestUtil/QtTestUtil.h
|