blob: 7769420e4246014bd4e0a89a5b32a66c423e8e1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright Eric Niebler 2006
# Use, modification, and distribution is subject to the Boost Software
# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
#project
# : requirements <library>../../../../boost/libs/regex/build//boost_regex
# ;
BOOST_REGEX_SOURCES =
c_regex_traits
cpp_regex_traits
cregex
fileiter
icu
instances
posix_api
regex
regex_debug
regex_raw_buffer
regex_traits_defaults
static_mutex
w32_regex_traits
wc_regex_traits
wide_posix_api
winstances
usinstances ;
exe xprperf
:
command_line.cpp
main.cpp
time_boost.cpp
time_dynamic_xpressive.cpp
time_static_xpressive.cpp
$(BOOST_ROOT)/libs/regex/src/$(BOOST_REGEX_SOURCES).cpp
:
<include>$(BOOST_ROOT)
<define>BOOST_REGEX_NO_LIB=1
<define>BOOST_REGEX_RECURSIVE
<define>BOOST_REGEX_USE_CPP_LOCALE
<define>BOOST_XPRESSIVE_USE_CPP_TRAITS
;
|