Jamfile 644 B

123456789101112131415161718192021222324252627
  1. # Boost.Format Library benchmark Jamfile
  2. #
  3. # Copyright (c) 2003 Samuel Krempp
  4. #
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # See www.boost.org/LICENSE_1_0.txt
  7. #
  8. project libs/format/benchmark
  9. : requirements
  10. <toolset>msvc:<define>_CRT_SECURE_NO_WARNINGS
  11. ;
  12. exe bench_format_no_locale
  13. : bench_format.cpp
  14. : <define>BOOST_NO_STD_LOCALE <location-prefix>no_locale
  15. ;
  16. exe bench_format_normal
  17. : bench_format.cpp
  18. : <location-prefix>normal
  19. ;
  20. exe bench_format_no_reuse_stream
  21. : bench_format.cpp
  22. : <include>alts <define>BOOST_FORMAT_NO_OSS_MEMBER <location-prefix>no_reuse_stream
  23. ;