Jamfile 683 B

123456789101112131415161718192021222324252627
  1. # Boost.Format Library Jamfile
  2. #
  3. # Copyright (c) 2003 Samuel Krempp
  4. #
  5. # Use, modification, and distribution are subject to the
  6. # Boost Software License, Version 1.0. (See accompanying file
  7. # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. project
  9. : requirements
  10. <warnings>all
  11. <toolset>clang:<cxxflags>-Wextra
  12. <toolset>clang:<cxxflags>-ansi
  13. <toolset>clang:<cxxflags>-pedantic
  14. <toolset>gcc:<cxxflags>-Wextra
  15. <toolset>gcc:<cxxflags>-ansi
  16. <toolset>gcc:<cxxflags>-pedantic
  17. ;
  18. # please order by name to ease maintenance
  19. build-project benchmark ;
  20. build-project example ;
  21. build-project test ;
  22. build-project tools ;