aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/library/library.pro
blob: 8655a9cc300ded9c4b20893cf58c3aab80491742 (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
include(../../plugins.pri)

TARGET = $$PLUGINS_PREFIX/General/library

QT += sql concurrent

HEADERS += libraryfactory.h \
    library.h \
    settingsdialog.h \
    librarywidget.h \
    librarymodel.h

SOURCES += libraryfactory.cpp \
    library.cpp \
    settingsdialog.cpp \
    librarywidget.cpp \
    librarymodel.cpp


RESOURCES = translations/translations.qrc

LIBS += $$QMMPUI_LIB

unix {
    target.path = $$PLUGIN_DIR/General
    INSTALLS += target
}

FORMS += \
    settingsdialog.ui \
    librarywidget.ui