blob: 049db03a8159d3e1572fda2e99844051e43c82db (
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
|
include(../../plugins.pri)
TARGET =$$PLUGINS_PREFIX/General/streambrowser
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libstreambrowser.so
LIBS += -lqmmpui
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
HEADERS += streambrowserfactory.h \
streambrowser.h \
streamwindow.h
win32:HEADERS += ../../../../src/qmmpui/general.h
SOURCES += streambrowserfactory.cpp \
streambrowser.cpp \
streamwindow.cpp
FORMS += streamwindow.ui
QT += network
|