blob: 0bbf5a515461f11bc6bcafaf3071be094713f9da (
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
35
36
37
38
39
40
|
include(../../plugins.pri)
HEADERS += outputwaveoutfactory.h \
outputwaveout.h
SOURCES += outputwaveoutfactory.cpp \
outputwaveout.cpp
HEADERS += ../../../../src/qmmp/output.h
TARGET=$$PLUGINS_PREFIX/Output/waveout
INCLUDEPATH += ../../../
QMAKE_LIBDIR += ../../../../bin
CONFIG += release \
warn_on \
thread \
plugin
TEMPLATE = lib
LIBS += -lqmmp0 -lwinmm
TRANSLATIONS = translations/waveout_plugin_cs.ts \
translations/waveout_plugin_de.ts \
translations/waveout_plugin_zh_CN.ts \
translations/waveout_plugin_zh_TW.ts \
translations/waveout_plugin_ru.ts \
translations/waveout_plugin_pl.ts \
translations/waveout_plugin_uk_UA.ts \
translations/waveout_plugin_it.ts
RESOURCES = translations/translations.qrc
isEmpty (LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/Output
INSTALLS += target
|