mirror of
https://github.com/boostorg/gil.git
synced 2026-02-19 14:32:10 +00:00
This enables test runners to copy the file to the target. It also makes the code that looks for the file in a different path unnecessary since Boost.Build will pass the proper relative path.
27 lines
631 B
Plaintext
27 lines
631 B
Plaintext
# Boost.GIL
|
|
#
|
|
# (C) Copyright 2008: Lubomir Bourdev and Hailin Jin
|
|
#
|
|
# 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)
|
|
|
|
# bring in rules for testing
|
|
import testing ;
|
|
|
|
project
|
|
: requirements
|
|
<include>$(BOOST_ROOT)
|
|
<library>/boost/filesystem//boost_filesystem
|
|
;
|
|
|
|
test-suite gil :
|
|
[ run image.cpp sample_image.cpp error_if.cpp
|
|
:
|
|
: gil_reference_checksums.txt
|
|
:
|
|
]
|
|
[ run channel.cpp error_if.cpp ]
|
|
[ run pixel.cpp error_if.cpp ]
|
|
[ run pixel_iterator.cpp error_if.cpp ]
|
|
;
|