summaryrefslogtreecommitdiffstats
path: root/libqdb/libqdb.pro
blob: 042a621a480e1d887c882bde1c1925b064384bcf (plain)
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
QT -= gui

TARGET = qdb
TEMPLATE = lib
CONFIG += staticlib

SOURCES += \
    abstractconnection.cpp \
    protocol/qdbmessage.cpp \
    protocol/qdbtransport.cpp \
    stream.cpp \
    streampacket.cpp \

win32 {
    SOURCES += interruptsignalhandler_win.cpp
} else {
    SOURCES += interruptsignalhandler_unix.cpp
}

HEADERS += \
    abstractconnection.h \
    interruptsignalhandler.h \
    protocol/protocol.h \
    protocol/qdbmessage.h \
    protocol/qdbtransport.h \
    protocol/services.h \
    stream.h \
    streampacket.h \

target.path = $$[QT_INSTALL_LIBS]
INSTALLS += target

INCLUDEPATH += $$PWD/..