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