Jamfile.v2 1.0 KB

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