Files
boost_function/example/Jamfile.v2
T

22 lines
509 B
Plaintext
Raw Normal View History

2018-05-15 00:02:02 +00:00
# Boost.Function Library example Jamfile
#
# Copyright (c) 2008 James E. King III
#
# Distributed under the Boost Software License, Version 1.0. (See accompany-
# ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
2018-11-03 16:25:07 -04:00
import ../../config/checks/config : requires ;
2018-05-15 00:02:02 +00:00
import os ;
import testing ;
project
: requirements
;
test-suite "function-examples"
2018-11-03 16:25:07 -04:00
: [ run bind1st.cpp : : : [ requires cxx98_binders ] ]
2018-05-15 00:02:02 +00:00
[ run int_div.cpp ]
[ run sum_avg.cpp ]
;