blob: ef641e97939ff5c5afe85d77939ea4f59c4c73cd (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/General/fileops
HEADERS += fileopsfactory.h \
fileops.h \
settingsdialog.h \
hotkeydialog.h
SOURCES += fileopsfactory.cpp \
fileops.cpp \
settingsdialog.cpp \
hotkeydialog.cpp
FORMS += settingsdialog.ui \
hotkeydialog.ui
RESOURCES = translations/translations.qrc
LIBS += $$QMMPUI_LIB
unix {
target.path = $$PLUGIN_DIR/General
INSTALLS += target
}
|