Jamfile.v2 545 B

123456789101112131415161718192021222324
  1. # Boost.Pool Library example Jamfile
  2. #
  3. # Copyright (c) 2008 James E. King III
  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 os ;
  8. import testing ;
  9. project
  10. : requirements
  11. <library>/boost/system//boost_system
  12. <define>BOOST_ALL_NO_LIB=1
  13. <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
  14. ;
  15. if ! [ os.environ VALGRIND_OPTS ]
  16. {
  17. test-suite "pool-examples"
  18. : [ run time_pool_alloc.cpp ]
  19. ;
  20. }