Jamfile.v2 764 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # copyright John Maddock 2003
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt.
  5. project
  6. : source-location ../../src
  7. ;
  8. EX_SOURCES =
  9. c_regex_traits.cpp
  10. cpp_regex_traits.cpp
  11. cregex.cpp
  12. fileiter.cpp
  13. icu.cpp
  14. instances.cpp
  15. posix_api.cpp
  16. regex.cpp
  17. regex_debug.cpp
  18. regex_raw_buffer.cpp
  19. regex_traits_defaults.cpp
  20. static_mutex.cpp
  21. w32_regex_traits.cpp
  22. wc_regex_traits.cpp
  23. wide_posix_api.cpp
  24. winstances.cpp
  25. usinstances.cpp ;
  26. lib boost_regex_extra : $(EX_SOURCES) ../../build//icu_options
  27. :
  28. <define>BOOST_REGEX_MATCH_EXTRA=1
  29. <link>shared:<define>BOOST_REGEX_DYN_LINK=1
  30. :
  31. ;