Jamfile.v2 703 B

123456789101112131415161718192021
  1. # (C) Copyright 2004: Eric Niebler
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. project
  5. : requirements
  6. <toolset>intel:<debug-symbols>off
  7. <toolset>msvc-7.1:<debug-symbols>off
  8. <toolset>msvc-8.0:<define>_SCL_SECURE_NO_DEPRECATE
  9. <toolset>msvc-8.0:<define>_CRT_SECURE_NO_DEPRECATE
  10. <toolset>msvc-9.0:<define>_SCL_SECURE_NO_DEPRECATE
  11. <toolset>gcc:<cxxflags>-ftemplate-depth-1024
  12. <toolset>msvc,<stdlib>stlport:<define>_STLP_EXPOSE_GLOBALS_IMPLEMENTATION
  13. ;
  14. exe perl2xpr
  15. :
  16. perl2xpr.cpp
  17. :
  18. <include>$(BOOST_ROOT)
  19. ;