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