blob: 75680c8fbfb2f788064684385d86a524bc589fa1 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/streambrowser
QT += network
HEADERS += streambrowserfactory.h \
streambrowser.h \
streamwindow.h
SOURCES += streambrowserfactory.cpp \
streambrowser.cpp \
streamwindow.cpp
FORMS += streamwindow.ui
RESOURCES = translations/translations.qrc
LIBS += $$QMMPUI_LIB
unix {
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
|