2002-05-24 12:53:12 +00:00
|
|
|
include $(top_srcdir)/config/common.am
|
2000-10-03 18:38:10 +00:00
|
|
|
|
2008-11-15 17:45:55 +00:00
|
|
|
noinst_LIBRARIES = liblyxboost.a
|
2007-08-10 22:33:54 +00:00
|
|
|
|
2014-08-31 13:21:20 +00:00
|
|
|
EXTRA_DIST = boost \
|
|
|
|
CMakeLists.txt \
|
2016-02-13 17:34:08 +00:00
|
|
|
LICENSE_1_0.txt \
|
2014-08-31 13:21:20 +00:00
|
|
|
libs/CMakeLists.txt \
|
|
|
|
libs/regex/CMakeLists.txt \
|
2016-06-15 20:21:21 +00:00
|
|
|
libs/regex/src/CMakeLists.txt \
|
|
|
|
libs/regex/src/usinstances.cpp
|
|
|
|
# The last file above is only compiled for msvc (see cmake)
|
2008-05-04 22:49:19 +00:00
|
|
|
|
2007-08-10 22:33:54 +00:00
|
|
|
AM_CPPFLAGS += -DBOOST_USER_CONFIG="<config.h>"
|
|
|
|
AM_CPPFLAGS += $(BOOST_INCLUDES)
|
|
|
|
|
2016-06-09 20:25:34 +00:00
|
|
|
# This version is more than three times faster than the one below
|
|
|
|
|
|
|
|
if MONOLITHIC_BOOST
|
|
|
|
|
2008-11-15 17:45:55 +00:00
|
|
|
liblyxboost_a_SOURCES = \
|
2007-08-13 21:58:05 +00:00
|
|
|
lyxboost.cpp \
|
|
|
|
libs/regex/src/instances.cpp \
|
|
|
|
libs/regex/src/cpp_regex_traits.cpp \
|
2016-06-15 20:21:21 +00:00
|
|
|
libs/regex/src/c_regex_traits.cpp \
|
|
|
|
libs/regex/src/wc_regex_traits.cpp
|
2015-01-06 12:53:18 +00:00
|
|
|
|
2007-08-13 21:58:05 +00:00
|
|
|
else
|
|
|
|
|
2008-11-15 17:45:55 +00:00
|
|
|
liblyxboost_a_SOURCES = \
|
2012-01-06 07:59:36 +00:00
|
|
|
libs/regex/src/internals.hpp \
|
2007-08-13 23:48:39 +00:00
|
|
|
libs/regex/src/c_regex_traits.cpp \
|
|
|
|
libs/regex/src/cpp_regex_traits.cpp \
|
2007-08-13 21:58:05 +00:00
|
|
|
libs/regex/src/cregex.cpp \
|
|
|
|
libs/regex/src/fileiter.cpp \
|
2007-08-13 23:48:39 +00:00
|
|
|
libs/regex/src/instances.cpp \
|
|
|
|
libs/regex/src/posix_api.cpp \
|
2007-08-13 21:58:05 +00:00
|
|
|
libs/regex/src/regex.cpp \
|
2007-08-13 23:48:39 +00:00
|
|
|
libs/regex/src/regex_debug.cpp \
|
2007-08-13 21:58:05 +00:00
|
|
|
libs/regex/src/regex_raw_buffer.cpp \
|
|
|
|
libs/regex/src/regex_traits_defaults.cpp \
|
|
|
|
libs/regex/src/w32_regex_traits.cpp \
|
2016-06-15 20:21:21 +00:00
|
|
|
libs/regex/src/wc_regex_traits.cpp \
|
2007-08-13 21:58:05 +00:00
|
|
|
libs/regex/src/wide_posix_api.cpp \
|
|
|
|
libs/regex/src/winstances.cpp \
|
2016-06-09 20:25:34 +00:00
|
|
|
libs/regex/src/static_mutex.cpp
|
2015-01-06 12:53:18 +00:00
|
|
|
|
|
|
|
endif #MONOLITHIC_BOOST
|
2016-06-09 20:25:34 +00:00
|
|
|
|