forked from Cutehacks/duperagent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom_cutehacks_duperagent.pri
More file actions
34 lines (30 loc) · 881 Bytes
/
com_cutehacks_duperagent.pri
File metadata and controls
34 lines (30 loc) · 881 Bytes
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
HEADERS += $$PWD/duperagent.h \
$$PWD/qpm.h \
$$PWD/request.h \
$$PWD/response.h \
$$PWD/serialization.h \
$$PWD/jsvalueiterator.h \
$$PWD/config.h \
$$PWD/cookiejar.h \
$$PWD/promise.h \
$$PWD/promisemodule.h \
$$PWD/networkactivityindicator.h \
$$PWD/imageutils.h \
$$PWD/multipartsource.h
SOURCES += $$PWD/duperagent.cpp \
$$PWD/request.cpp \
$$PWD/response.cpp \
$$PWD/serialization.cpp \
$$PWD/config.cpp \
$$PWD/cookiejar.cpp \
$$PWD/promise.cpp \
$$PWD/promisemodule.cpp \
$$PWD/networkactivityindicator.cpp \
$$PWD/imageutils.cpp \
$$PWD/multipartsource.cpp
contains(QT_CONFIG, ssl) | contains(QT_CONFIG, openssl) | contains(QT_CONFIG, openssl-linked) {
HEADERS += $$PWD/ssl.h
SOURCES += $$PWD/ssl.cpp
}
ios:OBJECTIVE_SOURCES += \
$$PWD/networkactivityindicator_ios.mm