Jamfile.v2 866 B

1234567891011121314151617181920
  1. # Boost.Format Library test Jamfile
  2. #
  3. # Copyright (c) 2003 Samuel Krempp
  4. #
  5. # Distributed under the Boost Software License, Version 1.0. (See accompany-
  6. # ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. import testing ;
  8. test-suite "format"
  9. : [ run format_test1.cpp ]
  10. [ run format_test1.cpp : : : <toolset>msvc:<cxxflags>"/FIWindows.h" : format_test1_windows_h ]
  11. [ run format_test2.cpp ]
  12. [ run format_test2.cpp : : : <toolset>msvc:<cxxflags>"/FIWindows.h" : format_test2_windows_h ]
  13. [ run format_test3.cpp ]
  14. [ run format_test3.cpp : : : <toolset>msvc:<cxxflags>"/FIWindows.h" : format_test3_windows_h ]
  15. [ run format_test_enum.cpp : : : <toolset>clang:<cxxflags>-Wno-unnamed-type-template-args ]
  16. [ run format_test_exceptions.cpp ]
  17. [ run format_test_wstring.cpp ]
  18. ;