summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/regex/test/noeh_test/Jamfile.v2
blob: dcaa84b961cd098ee970827739a80bf46de417d5 (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
45
46
47
48
49
50
# copyright John Maddock 2011
# Distributed under 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 
      <threading>multi 
      <link>shared:<define>BOOST_REGEX_DYN_LINK=1 
      <toolset>msvc-7.1:<define>TEST_MFC=1 
      <toolset>msvc-7.0:<define>TEST_MFC=1
      <toolset>msvc:<asynch-exceptions>on
      # There are unidentified linker problems on these platforms:
      <toolset>mipspro-7.4:<link>static
      <toolset>sun-5.9:<link>static
      <warnings>all
      <toolset>gcc:<cxxflags>-Wextra
      <toolset>gcc:<cxxflags>-Wshadow
      <define>U_USING_ICU_NAMESPACE=0
      #<toolset>gcc-mw:<link>static
      #<toolset>gcc-mingw:<link>static
      <toolset>gcc-cygwin:<link>static
    ;


lib boost_regex_noeh :    
   ../../src/c_regex_traits.cpp
   ../../src/cpp_regex_traits.cpp
   ../../src/cregex.cpp
   ../../src/fileiter.cpp
   ../../src/icu.cpp
   ../../src/instances.cpp
   ../../src/posix_api.cpp
   ../../src/regex.cpp
   ../../src/regex_debug.cpp
   ../../src/regex_raw_buffer.cpp
   ../../src/regex_traits_defaults.cpp
   ../../src/static_mutex.cpp
   ../../src/w32_regex_traits.cpp
   ../../src/wc_regex_traits.cpp
   ../../src/wide_posix_api.cpp
   ../../src/winstances.cpp 
   ../../src/usinstances.cpp 
   ../../build//icu_options
    : 
        <link>static
        <define>BOOST_NO_EXCEPTIONS=1
        <exception-handling>off
    : 
    ;