• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
8import os ;
9import testing ;
10
11project
12    :   requirements
13        <library>/boost/system//boost_system
14        <define>BOOST_ALL_NO_LIB=1
15        <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
16    ;
17
18if ! [ os.environ VALGRIND_OPTS ]
19{
20test-suite "pool-examples"
21   :    [ run time_pool_alloc.cpp ]
22   ;
23}
24
25