File: http.pri

package info (click to toggle)
minitube 3.9.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,600 kB
  • sloc: cpp: 19,800; xml: 68; sh: 18; makefile: 11
file content (22 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
QT *= network

INCLUDEPATH += $$PWD/src
DEPENDPATH += $$PWD/src
DEFINES += HTTP

HEADERS += \
    $$PWD/src/cachedhttp.h \
    $$PWD/src/http.h \
    $$PWD/src/httpreply.h \
    $$PWD/src/httprequest.h \
    $$PWD/src/localcache.h \
    $$PWD/src/networkhttpreply.h \
    $$PWD/src/throttledhttp.h

SOURCES += \
    $$PWD/src/cachedhttp.cpp \
    $$PWD/src/http.cpp \
    $$PWD/src/httpreply.cpp \
    $$PWD/src/localcache.cpp \
    $$PWD/src/networkhttpreply.cpp \
    $$PWD/src/throttledhttp.cpp