2
0
mirror of https://github.com/boostorg/gil.git synced 2026-02-19 02:22:09 +00:00
Files
gil/test/Jamfile
Mateusz Łoskot b8af11db87 Add promote_integral metafunction
Copied from Boost.Geometry, including original tests, with some non-functional
modifications explained in the comments.
The utility can be used where it is important to avoid integer overflow.
2018-06-27 00:02:27 -04:00

32 lines
719 B
Plaintext

# Boost.GIL
#
# (C) Copyright 2008: Lubomir Bourdev and Hailin Jin
#
# Distributed under 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)
# bring in rules for testing
import testing ;
project
: requirements
<include>$(BOOST_ROOT)
<include>.
<library>/boost/filesystem//boost_filesystem
;
test-suite "boost-gil-test" :
[ run promote_integral.cpp ]
[ run image.cpp sample_image.cpp error_if.cpp
:
: gil_reference_checksums.txt
:
]
[ run channel.cpp error_if.cpp ]
[ run pixel.cpp error_if.cpp ]
[ run pixel_iterator.cpp error_if.cpp ]
;
build-project channel ;