2
0
mirror of https://github.com/boostorg/gil.git synced 2026-01-24 05:52:13 +00:00
Files
gil/test/legacy/Jamfile
René Ferdinand Rivera Morell 8fd5cc5b32 Add support for modular build structure. (#752)
* Make the library modular usable.

* Add missing modular build.jam. And fix gitignore that caused it to be originally deleted!

* Switch to library requirements instead of source. As source puts extra source in install targets.

* Add missing import-search for cconfig/predef checks.

* Add requires-b2 check to top-level build file.

* Bump B2 require to 5.2

* Update copyright dates.

* Move inter-lib dependencies to a project variable and into the build targets.

* Update build deps.
2024-08-20 15:03:19 +02:00

27 lines
862 B
Plaintext

# Boost.GIL (Generic Image Library) - legacy tests
#
# Copyright (c) 2007-2015 Andrey Semashev
# Copyright (c) 2008 Lubomir Bourdev, 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)
#
# *** IMPORTANT MAINTENANCE RULES ***
# These are GIL's original, comprehensive, all-in-one test suites.
# * Keep as reference.
# * Do NOT extend.
# * Do NOT refactor.
# * Modify only if absolutely necessary (a bug found in the tests).
# See the accompanying README.md
import testing ;
run image.cpp sample_image.cpp error_if.cpp : : gil_reference_checksums.txt : <library>/boost/crc//boost_crc ;
run channel.cpp error_if.cpp ;
run pixel.cpp error_if.cpp ;
run pixel_iterator.cpp error_if.cpp ;
alias perf : [ run performance.cpp ] ;
explicit perf ;