Added CI framework

- travis with valgrind, cppcheck, ubsan, codecov, covscan (future)
      - appveyor with MSVC 2010 through 2017, cygwin 32/64, mingw 32/64
      - README, LICENSE, etc.
This commit is contained in:
James E. King III
2018-05-15 00:02:02 +00:00
parent 52fae95412
commit 2afccba173
12 changed files with 488 additions and 146 deletions

20
example/Jamfile.v2 Normal file
View File

@ -0,0 +1,20 @@
# 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 ]
;