aboutsummaryrefslogtreecommitdiffstats
path: root/src/coap/coap.pro
blob: fc81397b83618a15cd626c957e1b9cabbad8cf9f (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
TARGET = QtCoap

QT = core-private
QT_FOR_PRIVATE = network

QMAKE_DOCS = $$PWD/doc/qtcoap.qdocconf

PUBLIC_HEADERS += \
    qcoapclient.h \
    qcoapdiscoveryreply.h \
    qcoapglobal.h \
    qcoapmessage.h \
    qcoapnamespace.h \
    qcoapoption.h \
    qcoapreply.h \
    qcoaprequest.h \
    qcoapresource.h \
    qcoapsecurityconfiguration.h

PRIVATE_HEADERS += \
    qcoapclient_p.h \
    qcoapconnection_p.h \
    qcoapdiscoveryreply_p.h \
    qcoapinternalmessage_p.h \
    qcoapinternalreply_p.h \
    qcoapinternalrequest_p.h \
    qcoapmessage_p.h \
    qcoapoption_p.h \
    qcoapprotocol_p.h \
    qcoapqudpconnection_p.h \
    qcoapreply_p.h \
    qcoaprequest_p.h \
    qcoapresource_p.h

SOURCES += \
    qcoapclient.cpp \
    qcoapconnection.cpp \
    qcoapdiscoveryreply.cpp \
    qcoapinternalmessage.cpp \
    qcoapinternalreply.cpp \
    qcoapinternalrequest.cpp \
    qcoapmessage.cpp \
    qcoapnamespace.cpp \
    qcoapoption.cpp \
    qcoapprotocol.cpp \
    qcoapqudpconnection.cpp \
    qcoapreply.cpp \
    qcoaprequest.cpp \
    qcoapresource.cpp \
    qcoapsecurityconfiguration.cpp

HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS

load(qt_module)