]> git.sesse.net Git - vlc/blob - modules/logger/Makefile.am
qt4: fix COM leak and handle errors
[vlc] / modules / logger / Makefile.am
1 loggerdir = $(pluginsdir)/logger
2
3 libconsole_logger_plugin_la_SOURCES = logger/console.c
4 libfile_logger_plugin_la_SOURCES = logger/file.c
5 logger_LTLIBRARIES = libconsole_logger_plugin.la libfile_logger_plugin.la
6
7 libsyslog_plugin_la_SOURCES = logger/syslog.c
8 if HAVE_SYSLOG
9 logger_LTLIBRARIES += libsyslog_plugin.la
10 endif
11
12 libsd_journal_plugin_la_SOURCES = logger/journal.c
13 libsd_journal_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) $(SYSTEMD_CFLAGS)
14 libsd_journal_plugin_la_LIBADD = $(SYSTEMD_LIBS)
15 if HAVE_SYSTEMD
16 logger_LTLIBRARIES += libsd_journal_plugin.la
17 endif
18
19 libandroid_logger_plugin_la_SOURCES = logger/android.c
20 libandroid_logger_plugin_la_CFLAGS = $(AM_CFLAGS)
21 libandroid_logger_plugin_la_LIBADD = -llog
22 if HAVE_ANDROID
23 logger_LTLIBRARIES += libandroid_logger_plugin.la
24 endif