mirror of
https://github.com/boostorg/gil.git
synced 2026-02-27 17:12:10 +00:00
The linked variant of the Boost.UTF seems recommended.
It may help to avoid mysterious run-time error on Mac OS:
boost::runtime::access_to_missing_argument:
There is no argument provided for parameter color_output
It also may speed up compilation during CI builds.
36 lines
965 B
Plaintext
36 lines
965 B
Plaintext
# Boost.GIL (Generic Image Library) - tests
|
|
#
|
|
# Copyright (c) 2007-2015 Andrey Semashev
|
|
# Copyright (c) 2008 Lubomir Bourdev, Hailin Jin
|
|
# Copyright (c) 2018 Mateusz Loskot <mateusz@loskot.net>
|
|
# Copyright (c) 2018 Dmitry Arkhipov
|
|
#
|
|
# 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)
|
|
|
|
import os ;
|
|
import path ;
|
|
import regex ;
|
|
import testing ;
|
|
|
|
project
|
|
: requirements
|
|
<include>$(BOOST_ROOT)
|
|
<include>.
|
|
;
|
|
|
|
run promote_integral.cpp /boost/test//boost_unit_test_framework : : : <link>shared:<define>BOOST_TEST_DYN_LINK=1 ;
|
|
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 algorithm ;
|
|
build-project channel ;
|
|
build-project image_view ;
|
|
build-project point ;
|
|
|
|
alias perf : [ run performance.cpp ] ;
|
|
explicit perf ;
|