summaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/Tests/TestUtils/TestUtils.pro
blob: f448ccbd8c454ebd3915a3aa21c9c763be9d493f (plain) (blame)
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
43
44
45
46
47
48
49
50
51
52
53
#-------------------------------------------------
#
# Project created by QtCreator 2013-03-29T23:25:17
#
#-------------------------------------------------

include(test_common.pri)

QT       -= gui

TARGET = TestUtils
TEMPLATE = lib

QMAKE_CXXFLAGS += -std=c++11

DEFINES += TESTUTILS_LIBRARY

SOURCES += \
    dbsqlite3mock.cpp \
    functionmanagermock.cpp \
    pluginmanagermock.cpp \
    configmock.cpp \
    mocks.cpp \
    dbattachermock.cpp \
    dbmanagermock.cpp \
    collationmanagermock.cpp

HEADERS +=\
        testutils_global.h \
    dbsqlite3mock.h \
    hippomocks.h \
    functionmanagermock.h \
    pluginmanagermock.h \
    configmock.h \
    mocks.h \
    dbattachermock.h \
    dbmanagermock.h \
    collationmanagermock.h

unix:!symbian {
    maemo5 {
        target.path = /opt/usr/lib
    } else {
        target.path = /usr/lib
    }
    INSTALLS += target
}

LIBS += -lcoreSQLiteStudio -lsqlite3
LIBS -= -lTestUtils

OTHER_FILES += \
    test_common.pri