mirror of
https://github.com/boostorg/gil.git
synced 2026-02-20 02:42:11 +00:00
35 lines
930 B
Plaintext
35 lines
930 B
Plaintext
# Jamfile for building the GIL test app
|
|
|
|
project libs/gil/test ;
|
|
|
|
import testing ;
|
|
|
|
test-suite gil :
|
|
[ run image.cpp
|
|
sample_image.cpp
|
|
error_if.cpp
|
|
:
|
|
:
|
|
: <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
|
|
[ run channel.cpp
|
|
error_if.cpp
|
|
:
|
|
:
|
|
: <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
|
|
[ run pixel.cpp
|
|
error_if.cpp
|
|
:
|
|
:
|
|
: <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
|
|
[ run pixel_iterator.cpp
|
|
error_if.cpp
|
|
:
|
|
:
|
|
: <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
|
|
[ run image_io.cpp
|
|
error_if.cpp
|
|
:
|
|
:
|
|
: <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
|
|
;
|