2
0
mirror of https://github.com/boostorg/random.git synced 2026-02-02 09:02:16 +00:00
Files
random/example/Jamfile
Matthias Troyer c32589bf9f Added buffered generator examples
[SVN r3061]
2006-07-05 11:31:13 +00:00

35 lines
887 B
Plaintext

# Boost parallel random Library test Jamfile
# (C) Copyright 2006 Mattthias Troyer.
# Use, modification, and distribution are subject to the
# Boost Software License, Version 1.0. (See accompanying file
# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
subproject libs/random/test ;
# bring in rules for testing
import testing ;
# Make tests run by default.
DEPENDS all : test ;
# look in BOOST_ROOT for sources first, just in this Jamfile
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
test-suite random_parallel
:
[ run buffered_generator_example.cpp
<lib>../build/boost_random
: : : : buffered_generator_example ]
[ run buffered_uniform_01_example.cpp
<lib>../build/boost_random
: : : : buffered_uniform_01_example ]
[ run buffered_examples.cpp
<lib>../build/boost_random
: : : : buffered_examples ]
;