2
0
mirror of https://github.com/boostorg/gil.git synced 2026-02-02 08:52:10 +00:00
Files
gil/test/Jamfile
2018-06-27 00:02:27 -04:00

28 lines
1023 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
<toolset>intel:<debug-symbols>off
<toolset>msvc-7.1:<debug-symbols>off
<toolset>msvc-8.0:<define>_SCL_SECURE_NO_DEPRECATE <define>_CRT_SECURE_NO_DEPRECATE <define>_CRT_NONSTDC_NO_DEPRECATE
<toolset>msvc-9.0:<define>_SCL_SECURE_NO_DEPRECATE <define>_CRT_SECURE_NO_WARNINGS <define>_CRT_NONSTDC_NO_DEPRECATE
<toolset>msvc-10.0:<define>_SCL_SECURE_NO_DEPRECATE <define>_CRT_SECURE_NO_WARNINGS <define>_CRT_NONSTDC_NO_DEPRECATE
<include>$(BOOST_ROOT)
<library>/boost/filesystem//boost_filesystem
;
test-suite gil :
[ run image.cpp sample_image.cpp error_if.cpp ]
[ run channel.cpp error_if.cpp ]
[ run pixel.cpp error_if.cpp ]
[ run pixel_iterator.cpp error_if.cpp ]
;