File: tests.pro

package info (click to toggle)
sonic-visualiser 5.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,744 kB
  • sloc: cpp: 158,888; ansic: 11,920; sh: 1,785; makefile: 517; xml: 64; perl: 31
file content (42 lines) | stat: -rw-r--r-- 761 bytes parent folder | download | duplicates (5)
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)
    }
}