blob: 770604428fc3db9adcf780ff82679b2514a060e9 (
plain) (
tree)
|
|
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 += $$QMMPUI_LIB
unix {
target.path = $$PLUGIN_DIR/Effect
INSTALLS += target
PKGCONFIG += ogg vorbis vorbisenc
}
win32 {
LIBS += -lvorbisfile -lvorbis -logg -lvorbisenc
LD_FLAGS += -no-undefined
}
|