1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
TEMPLATE = app
CONFIG += debug console warn_on c++11 testcase
QT += testlib
QT -= gui
TARGET = test-dataquay
win*: TARGET = "TestDataquay"
exists(../config.pri) {
include(../config.pri)
}
!defined(DESTDIR) {
DESTDIR = ./
}
INCLUDEPATH += . ..
DEPENDPATH += . ..
QMAKE_LIBDIR += ..
OBJECTS_DIR = o
MOC_DIR = o
!win32: LIBS += -Wl,-rpath,..
LIBS += -L.. -ldataquay $${EXTRALIBS}
HEADERS += TestBasicStore.h TestDatatypes.h TestTransactionalStore.h TestImportOptions.h TestObjectMapper.h
SOURCES += TestDatatypes.cpp main.cpp
exists(../../platform-dataquay.pri) {
include(../../platform-dataquay.pri)
}
exists(./platform.pri) {
include(./platform.pri)
}
!exists(./platform.pri) {
exists(../platform.pri) {
include(../platform.pri)
}
}
|