1# Copyright 2008 Lubomir Bourdev and Hailin Jin
2#
3# Distributed under the Boost Software License, Version 1.0.
4# (See accompanying file LICENSE_1_0.txt or copy at
5# http://www.boost.org/LICENSE_1_0.txt)
6
7# Jamfile for building the GIL test app
8
9project libs/gil/test ;
10
11import testing ;
12
13test-suite gil :
14    [ run  image.cpp
15           sample_image.cpp
16           error_if.cpp
17        :
18        :
19        : <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
20    [ run  channel.cpp
21           error_if.cpp
22        :
23        :
24        : <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
25    [ run  pixel.cpp
26           error_if.cpp
27        :
28        :
29        : <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
30    [ run  pixel_iterator.cpp
31           error_if.cpp
32        :
33        :
34        : <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
35    [ run  image_io.cpp
36           error_if.cpp
37        :
38        :
39        : <include>$(BOOST_ROOT) <define>BOOST_GIL_NO_IO <define>_SCL_SECURE_NO_WARNINGS ]
40;
41