Imported Upstream version 1.71.0
[platform/upstream/boost.git] / libs / gil / toolbox / test / Jamfile
1 # Boost.GIL (Generic Image Library) - Toolbox tests
2 #
3 # Copyright (c) 2012 Christian Henning
4 # Copyright (c) 2012 Mateusz Loskot <mateusz@loskot.net>
5 #
6 # Distributed under the Boost Software License, Version 1.0.
7 # (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8
9 import testing ;
10
11 project
12     : requirements
13     <include>$(BOOST_ROOT)
14     <library>/boost/test//boost_unit_test_framework
15     <link>shared:<define>BOOST_TEST_DYN_LINK=1
16     ;
17
18 run
19     test.cpp
20     channel_type.cpp
21     channel_view.cpp
22     cmyka.cpp
23     get_num_bits.cpp
24     get_pixel_type.cpp
25     gray_alpha.cpp
26     gray_to_rgba.cpp
27     hsl_hsv_test.cpp
28     indexed_image_test.cpp
29     is_bit_aligned.cpp
30     is_homogeneous.cpp
31     is_similar.cpp
32     lab_test.cpp
33     pixel_bit_size.cpp
34     rgb_to_luminance.cpp
35     # TODO: Add subchroma_image.cpp after fixing run-time failure,
36     #       for details see https://github.com/boostorg/gil/pull/164
37     #subchroma_image.cpp
38     xyz_test.cpp
39     ;