blob: 5b53fe8b46a03eb23253a6dae39e14ab5b4904bf (
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/Input/cdaudio
HEADERS += decodercdaudiofactory.h \
decoder_cdaudio.h \
settingsdialog.h
SOURCES += decoder_cdaudio.cpp \
decodercdaudiofactory.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
LIBS += -lqmmp
unix {
LIBS += -L/usr/lib -I/usr/include
PKGCONFIG += libcdio libcdio_cdda libcdio_paranoia libcddb
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
}
win32 {
LIBS += -lcdio -lcdio_paranoia -lcdio_cdda -lm -lwinmm -mwindows -liconv -lcddb -lws2_32
}
|