Jamfile.v2 597 B

1234567891011121314151617181920
  1. # Boost Build v2 Jamroot for Polygon unit
  2. #
  3. # Copyright 2010 Intel Corporation
  4. #
  5. # Use, modification and distribution is subject to the Boost Software License,
  6. # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. project
  9. : requirements
  10. <warnings>all
  11. <toolset>intel:<warnings>on
  12. <toolset>intel-win:<cxxflags>"/bigobj"
  13. <toolset>gcc:<cxxflags>"-pedantic -Wall -Wstrict-aliasing -fstrict-aliasing -Wno-long-long"
  14. <toolset>msvc:<cxxflags>"/W4 /bigobj"
  15. <include>../..
  16. <include>.
  17. ;