mirror of
https://github.com/boostorg/function.git
synced 2026-01-20 16:42:12 +00:00
- travis with valgrind, cppcheck, ubsan, codecov, covscan (future)
- appveyor with MSVC 2010 through 2017, cygwin 32/64, mingw 32/64
- README, LICENSE, etc.
21 lines
429 B
Plaintext
21 lines
429 B
Plaintext
# 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)
|
|
|
|
import os ;
|
|
import testing ;
|
|
|
|
project
|
|
: requirements
|
|
;
|
|
|
|
test-suite "function-examples"
|
|
: [ run bind1st.cpp ]
|
|
[ run int_div.cpp ]
|
|
[ run sum_avg.cpp ]
|
|
;
|
|
|