blob: 48c3592bb4438fd5922798e141eb97edd9ce76b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include(../../plugins.pri)
FORMS +=
HEADERS += decoderaacfactory.h \
decoder_aac.h \
aacfile.h \
aacmetadatamodel.h
SOURCES += decoder_aac.cpp \
decoderaacfactory.cpp \
aacfile.cpp \
aacmetadatamodel.cpp
TARGET = $$PLUGINS_PREFIX/Input/aac
QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libaac.so
LIBS += -lfaad \
-L/usr/lib \
-I/usr/include
PKGCONFIG += taglib
RESOURCES = translations/translations.qrc
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
|