mirror of
https://github.com/boostorg/gil.git
synced 2026-02-20 02:42:11 +00:00
Added kth_channel_view (like nth_channel_view but operates on heterogeneous views) [SVN r37659]
19 lines
356 B
Plaintext
19 lines
356 B
Plaintext
# Jamfile for building the GIL test app
|
|
|
|
project libs/gil/test ;
|
|
|
|
import testing ;
|
|
|
|
test-suite gil :
|
|
[ run main.cpp
|
|
image.cpp
|
|
image_io.cpp
|
|
pixel.cpp
|
|
pixel_iterator.cpp
|
|
channel.cpp
|
|
sample_image.cpp
|
|
:
|
|
:
|
|
: <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO ]
|
|
;
|