aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Transports/http/http.pro
blob: 10d47d16fa8e401187eec8e6cd5290dfb2549952 (plain) (blame)
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
include(../../plugins.pri)

TARGET = $$PLUGINS_PREFIX/Transports/http

HEADERS += \
    httpinputfactory.h \
    httpinputsource.h \
    settingsdialog.h \
    httpstreamreader.h

SOURCES += \
    httpinputfactory.cpp \
    httpinputsource.cpp \
    settingsdialog.cpp \
    httpstreamreader.cpp

FORMS += settingsdialog.ui

RESOURCES = translations/translations.qrc

contains(CONFIG, WITH_ENCA){
   DEFINES += WITH_ENCA
   unix:PKGCONFIG += enca
   win32:LIBS += -lenca.dll
}

unix {
    LIBS += -L/usr/lib
    PKGCONFIG += libcurl
    target.path = $$LIB_DIR/qmmp/Transports
    INSTALLS += target
}
win32 {
    LIBS += -lcurldll
}