summaryrefslogtreecommitdiffstats
path: root/src/oauth/oauth.pro
blob: 19af5c2998403d50eb6be64b7edbe530143abc9b (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
TARGET = QtNetworkAuth
MODULE = networkauth

QT += core core-private network

PUBLIC_HEADERS += \
    qoauth1.h \
    qoauthglobal.h \
    qabstractoauth.h \
    qabstractoauth2.h \
    qoauth1signature.h \
    qoauthoobreplyhandler.h \
    qabstractoauthreplyhandler.h \
    qoauth2authorizationcodeflow.h \
    qoauthhttpserverreplyhandler.h

PRIVATE_HEADERS += \
    qoauth1_p.h \
    qabstractoauth_p.h \
    qabstractoauth2_p.h \
    qoauth1signature_p.h \
    qoauth2authorizationcodeflow_p.h \
    qoauthhttpserverreplyhandler_p.h

SOURCES += \
    qoauth1.cpp \
    qabstractoauth.cpp \
    qabstractoauth2.cpp \
    qoauth1signature.cpp \
    qoauthoobreplyhandler.cpp \
    qabstractoauthreplyhandler.cpp \
    qoauth2authorizationcodeflow.cpp \
    qoauthhttpserverreplyhandler.cpp

HEADERS += $$PUBLIC_HEADERS $$PRIVATE_HEADERS

QMAKE_DOCS = $$PWD/doc/qtnetworkauth.qdocconf

load(qt_module)