blob: 937044e5ee99e32b88dc99d1b9107cd5ebd15224 (
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)
HEADERS += effectfilewriterfactory.h \
filewriterplugin.h \
settingsdialog.h
SOURCES += effectfilewriterfactory.cpp \
filewriterplugin.cpp \
settingsdialog.cpp
TARGET =$$PLUGINS_PREFIX/Effect/filewriter
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/Effect
INSTALLS += target
LIBS += -lqmmp -lqmmpui
QMAKE_CLEAN =$$PLUGINS_PREFIX/Effect/libfilewriter.so
PKGCONFIG += ogg vorbis vorbisenc
}
win32 {
LIBS += -lqmmp0 -lqmmpui0 -lvorbisfile -lvorbis -logg -lvorbisenc
LD_FLAGS += -no-undefined
}
FORMS += \
settingsdialog.ui
|