27 lines
735 B
Plaintext
27 lines
735 B
Plaintext
# Boost.GIL (Generic Image Library) - IO tests
|
|
#
|
|
# Copyright (c) 2012 Christian Henning
|
|
# Copyright (c) 2017 Stefan Seefeld
|
|
# Copyright (c) 2012-2020 Mateusz Loskot <mateusz@loskot.net>
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or
|
|
# copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
import testing ;
|
|
|
|
# TODO: Download PNM test suite images and build with BOOST_GIL_IO_USE_PNM_TEST_SUITE_IMAGES
|
|
|
|
project
|
|
: requirements
|
|
<define>BOOST_GIL_IO_TEST_ALLOW_READING_IMAGES
|
|
<define>BOOST_GIL_IO_TEST_ALLOW_WRITING_IMAGES
|
|
<library>/boost/filesystem//boost_filesystem
|
|
;
|
|
|
|
run pnm_test.cpp ;
|
|
run pnm_read_test.cpp ;
|
|
run pnm_write_test.cpp ;
|
|
|
|
run pnm_old_test.cpp ;
|