blob: ad3ca9e7e82a3041f0556a413a0bfa8e839e8e02 (
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
|
include(../../plugins.pri)
HEADERS += downloader.h \
streamreader.h \
httpinputfactory.h \
httpinputsource.h
SOURCES += downloader.cpp \
streamreader.cpp \
httpinputfactory.cpp \
httpinputsource.cpp
win32:HEADERS += ../../../../src/qmmp/inputsource.h \
../../../../src/qmmp/inputsourcefactory.h
TARGET = $$PLUGINS_PREFIX/Transports/http
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libhttp.so
INCLUDEPATH += ../../../
CONFIG += release \
warn_on \
plugin \
link_pkgconfig
TEMPLATE = lib
unix {
QMAKE_LIBDIR += ../../../../lib
LIBS += -lqmmp \
-L/usr/lib
PKGCONFIG += libcurl
isEmpty(LIB_DIR):LIB_DIR = /lib
target.path = $$LIB_DIR/qmmp/Transports
INSTALLS += target
}
win32 {
QMAKE_LIBDIR += ../../../../bin
LIBS += -lqmmp0 -lcurldll
}
|