From 0099454bd6167f63570771edb9f1f10e5afbe8c8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 28 Jun 2011 17:19:18 +0200 Subject: Add regex support --- cutl/makefile | 20 ++++++++++++++++++++ tests/makefile | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/cutl/makefile b/cutl/makefile index 63915c9..b90e211 100644 --- a/cutl/makefile +++ b/cutl/makefile @@ -16,6 +16,26 @@ compiler/context.cxx \ compiler/type-info.cxx \ compiler/cxx-indenter.cxx +cxx_tun += \ +details/boost/regex/src/regex.cxx \ +details/boost/regex/src/usinstances.cxx \ +details/boost/regex/src/regex_raw_buffer.cxx \ +details/boost/regex/src/fileiter.cxx \ +details/boost/regex/src/cpp_regex_traits.cxx \ +details/boost/regex/src/instances.cxx \ +details/boost/regex/src/wide_posix_api.cxx \ +details/boost/regex/src/regex_debug.cxx \ +details/boost/regex/src/c_regex_traits.cxx \ +details/boost/regex/src/posix_api.cxx \ +details/boost/regex/src/wc_regex_traits.cxx \ +details/boost/regex/src/cregex.cxx \ +details/boost/regex/src/w32_regex_traits.cxx \ +details/boost/regex/src/regex_traits_defaults.cxx \ +details/boost/regex/src/static_mutex.cxx \ +details/boost/regex/src/icu.cxx \ +details/boost/regex/src/winstances.cxx + + cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) cxx_od := $(cxx_obj:.o=.o.d) diff --git a/tests/makefile b/tests/makefile index 09f9d29..3a09887 100644 --- a/tests/makefile +++ b/tests/makefile @@ -5,7 +5,7 @@ include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make -tests := compiler fs shared-ptr +tests := compiler fs re shared-ptr default := $(out_base)/ test := $(out_base)/.test -- cgit v1.1