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