logging: add a LogConfig class and parsing code
[folly.git] / folly / experimental / logging / Makefile.am
1 SUBDIRS = . example
2
3 lib_LTLIBRARIES = libfollylogging.la
4
5 libfollylogging_la_SOURCES = \
6         AsyncFileWriter.cpp \
7         GlogStyleFormatter.cpp \
8         ImmediateFileWriter.cpp \
9         Init.cpp \
10         LogCategory.cpp \
11         LogCategoryConfig.cpp \
12         LogConfig.cpp \
13         LogConfigParser.cpp \
14         Logger.cpp \
15         LoggerDB.cpp \
16         LogHandlerConfig.cpp \
17         LogLevel.cpp \
18         LogMessage.cpp \
19         LogName.cpp \
20         LogStream.cpp \
21         LogStreamProcessor.cpp \
22         printf.cpp \
23         RateLimiter.cpp \
24         StandardLogHandler.cpp \
25         xlog.cpp
26
27 libfollylogging_la_LIBADD = $(top_builddir)/libfolly.la
28 libfollylogging_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LT_VERSION)