gil/test/core/Jamfile
MIRAL SHAH 716fe9ad8c Implement algorithms for binary and binary inverse thresholding (#313)
Add public functions threshold_binary and threshold_truncate.
Add tests and example.
Closes #310
2019-06-18 21:42:43 +02:00

34 lines
951 B
Plaintext

# Boost.GIL (Generic Image Library) - core tests
#
# Copyright (c) 2008 Lubomir Bourdev, Hailin Jin
# Copyright (c) 2018-2019 Mateusz Loskot <mateusz@loskot.net>
#
# 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 testing ;
project
:
requirements
<define>BOOST_GIL_USE_CONCEPT_CHECK=1
;
alias headers_concepts : [ generate_self_contained_headers concepts ] ;
alias headers : [ generate_self_contained_headers : concepts extension io ] ;
build-project point ;
build-project channel ;
build-project color ;
build-project color_base ;
build-project pixel ;
build-project iterator ;
build-project locator ;
build-project image ;
build-project image_view ;
build-project algorithm ;
build-project image_processing ;
run promote_integral.cpp /boost/test//boost_unit_test_framework : : : <link>shared:<define>BOOST_TEST_DYN_LINK=1 ;