Jamfile.v2 583 B

123456789101112131415161718192021222324
  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>msvc-8.0:<define>_SCL_SECURE_NO_DEPRECATE
  7. <toolset>msvc-9.0:<define>_SCL_SECURE_NO_DEPRECATE
  8. <toolset>msvc,<stdlib>stlport:<define>_STLP_EXPOSE_GLOBALS_IMPLEMENTATION
  9. ;
  10. exe examples
  11. :
  12. main.cpp
  13. :
  14. <include>$(BOOST_ROOT)
  15. ;
  16. exe numbers
  17. :
  18. numbers.cpp
  19. :
  20. <include>$(BOOST_ROOT)
  21. ;