blob: 8e83dc49b6870c55da712f904e8ceeae2d9974ec (
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/FileDialogs/qmmpfiledialog
HEADERS += qmmpfiledialog.h \
qmmpfiledialogimpl.h
SOURCES += qmmpfiledialog.cpp \
qmmpfiledialogimpl.cpp
FORMS += qmmpfiledialog.ui
RESOURCES += translations/translations.qrc
LIBS += -lqmmpui
unix {
target.path = $$LIB_DIR/qmmp/FileDialogs
INSTALLS += target
QMAKE_CLEAN =$$PLUGINS_PREFIX/FileDialogs/libqmmpfiledialog.so
}
|