gil/test/extension/numeric/Jamfile
MIRAL SHAH ca696ce6d0
Added 2D convolution definitions to numeric extension (#367)
2D convolution tests added

`convolve` function renamed to `convolve_1d`

closes #356
2019-08-09 03:17:09 +05:30

30 lines
803 B
Plaintext

# Boost.GIL (Generic Image Library) - Numeric tests
#
# Copyright (c) 2013 Christian Henning
# Copyright (c) 2019 Mateusz Loskot <mateusz at loskot dot 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
<library>/boost/test//boost_unit_test_framework
<link>shared:<define>BOOST_TEST_DYN_LINK=1
;
alias headers : [ generate_self_contained_headers extension/numeric ] ;
run channel_numeric_operations.cpp ;
run convolve.cpp ;
run convolve_cols.cpp ;
run convolve_rows.cpp ;
run kernel.cpp ;
compile-fail kernel_1d_fixed_even_size_fail.cpp ;
run matrix3x2.cpp ;
run numeric.cpp ;
run pixel_numeric_operations.cpp ;
run convolve_2d.cpp ;