1# Boost.GIL (Generic Image Library) - IO tests 2# 3# Copyright (c) 2012 Christian Henning 4# Copyright (c) 2017 Stefan Seefeld 5# Copyright (c) 2012-2020 Mateusz Loskot <mateusz@loskot.net> 6# 7# Distributed under the Boost Software License, Version 1.0. 8# (See accompanying file LICENSE_1_0.txt or 9# copy at http://www.boost.org/LICENSE_1_0.txt) 10 11import ac ; 12import testing ; 13 14using libjpeg : : : : true ; # work around bug on master 15 16project 17 : requirements 18 <define>BOOST_GIL_IO_TEST_ALLOW_READING_IMAGES 19 <define>BOOST_GIL_IO_TEST_ALLOW_WRITING_IMAGES 20 <library>/boost/filesystem//boost_filesystem 21 [ ac.check-library /libjpeg//libjpeg : <library>/libjpeg//libjpeg : <build>no ] 22 ; 23 24 25run jpeg_test.cpp ; 26run jpeg_read_test.cpp ; 27run jpeg_write_test.cpp ; 28 29run jpeg_old_test.cpp ; 30