30 lines
621 B
Prolog
30 lines
621 B
Prolog
TEMPLATE = app
|
|
TARGET = test-filelist
|
|
DEPENDPATH += .
|
|
INCLUDEPATH += . ../../../externals/simplecpp
|
|
OBJECTS_DIR = ../../temp
|
|
MOC_DIR = ../../temp
|
|
|
|
QT -= gui
|
|
QT += core
|
|
QT += testlib
|
|
|
|
include(../common.pri)
|
|
|
|
DEFINES += SRCDIR=\\\"$$PWD\\\"
|
|
|
|
# tests
|
|
SOURCES += testfilelist.cpp \
|
|
../../filelist.cpp \
|
|
../../../lib/pathmatch.cpp \
|
|
../../../lib/path.cpp \
|
|
../../../lib/utils.cpp \
|
|
../../../externals/simplecpp/simplecpp.cpp
|
|
|
|
HEADERS += testfilelist.h \
|
|
../../filelist.h \
|
|
../../../lib/pathmatch.h \
|
|
../../../lib/path.h \
|
|
../../../lib/utils.h \
|
|
../../../externals/simplecpp/simplecpp.h
|