aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Effect/filewriter/filewriter.pro
blob: bc37846406361f06e241f130ac02bef4ccbe27b6 (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
32
33
34
include(../../plugins.pri)

HEADERS += effectfilewriterfactory.h \
    filewriterplugin.h \
    settingsdialog.h

SOURCES += effectfilewriterfactory.cpp \
    filewriterplugin.cpp \
    settingsdialog.cpp

TARGET =$$PLUGINS_PREFIX/Effect/filewriter

CONFIG += warn_on plugin link_pkgconfig

TEMPLATE = lib

#RESOURCES = translations/translations.qrc

unix {
    target.path = $$LIB_DIR/qmmp/Effect
    INSTALLS += target

    LIBS += -lqmmp
    QMAKE_CLEAN =$$PLUGINS_PREFIX/Effect/libfilewriter.so
    PKGCONFIG += ogg vorbis vorbisenc
}

win32 {
    LIBS += -lqmmp0
}

FORMS += \
    settingsdialog.ui