blob: fc3a717a78a44373f11ccfca89dfea0ec8528a49 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/lyrics
QT += network
HEADERS += lyricsfactory.h \
lyrics.h \
lyricswindow.h \
lyricsprovider.h \
ultimatelyricsparser.h
SOURCES += lyricsfactory.cpp \
lyrics.cpp \
lyricswindow.cpp \
lyricsprovider.cpp \
ultimatelyricsparser.cpp
FORMS += lyricswindow.ui
RESOURCES = translations/translations.qrc \
providers/providers.qrc
LIBS += $$QMMPUI_LIB
unix {
target.path = $$PLUGIN_DIR/General
INSTALLS += target
}
|