]> git.lyx.org Git - lyx.git/blob - 3rdparty/boost/Makefile.am
Cmake build: Adapt handling of mytheslib to automek behaviour
[lyx.git] / 3rdparty / boost / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 noinst_LIBRARIES = liblyxboost.a
4
5 EXTRA_DIST = boost \
6         CMakeLists.txt \
7         LICENSE_1_0.txt \
8         libs/CMakeLists.txt \
9         libs/regex/CMakeLists.txt \
10         libs/regex/src/CMakeLists.txt \
11         libs/regex/src/usinstances.cpp
12 # The last file above is only compiled for msvc (see cmake)
13
14 AM_CPPFLAGS += -DBOOST_USER_CONFIG="<config.h>" 
15 AM_CPPFLAGS +=  $(BOOST_INCLUDES)
16
17 # This version is more than three times faster than the one below
18
19 if MONOLITHIC_BOOST
20
21 liblyxboost_a_SOURCES = \
22         lyxboost.cpp \
23         libs/regex/src/instances.cpp \
24         libs/regex/src/cpp_regex_traits.cpp \
25         libs/regex/src/c_regex_traits.cpp \
26         libs/regex/src/wc_regex_traits.cpp 
27
28 else
29
30 liblyxboost_a_SOURCES = \
31         libs/regex/src/internals.hpp \
32         libs/regex/src/c_regex_traits.cpp \
33         libs/regex/src/cpp_regex_traits.cpp \
34         libs/regex/src/cregex.cpp \
35         libs/regex/src/fileiter.cpp \
36         libs/regex/src/instances.cpp \
37         libs/regex/src/posix_api.cpp \
38         libs/regex/src/regex.cpp \
39         libs/regex/src/regex_debug.cpp \
40         libs/regex/src/regex_raw_buffer.cpp \
41         libs/regex/src/regex_traits_defaults.cpp \
42         libs/regex/src/w32_regex_traits.cpp \
43         libs/regex/src/wc_regex_traits.cpp \
44         libs/regex/src/wide_posix_api.cpp \
45         libs/regex/src/winstances.cpp \
46         libs/regex/src/static_mutex.cpp
47
48 endif #MONOLITHIC_BOOST
49