2
0
mirror of https://github.com/boostorg/gil.git synced 2026-01-19 16:22:14 +00:00
Files
gil/test/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

109 lines
3.7 KiB
Plaintext

# Boost.GIL (Generic Image Library) - tests
#
# Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
# Copyright (c) 2018-2019 Mateusz Loskot <mateusz@loskot.net>
# Copyright (c) 2018 Dmitry Arkhipov
# Copyright (c) 2007-2015 Andrey Semashev
#
# Use, modification and distribution is subject to 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-search /boost/config/checks ;
import config : requires ;
import os ;
import path ;
import regex ;
import sequence ;
import testing ;
# The <experimental/filesystem> header providing std::experimental::filesystem
# is deprecated by Microsoft and will be REMOVED. It is superseded by the C++17
# <filesystem> header providing std::filesystem.
# You can define _SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING
# to acknowledge that you have received this warning.
local msvc-cxxs-with-experimental-fs = 14 ;
project
:
requirements
<library>/boost/gil//boost_gil
[ requires
cxx11_constexpr
cxx11_defaulted_functions
cxx11_template_aliases
cxx11_trailing_result_types # implies decltype and auto
cxx11_variadic_templates
cxx14_constexpr
cxx14_return_type_deduction
]
<include>.
# TODO: Enable concepts check for all, not just test/core
#<define>BOOST_GIL_USE_CONCEPT_CHECK=1
<toolset>msvc,<cxxstd>$(msvc-cxxs-with-experimental-fs):<define>_SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING=1
<toolset>msvc:<cxxflags>/bigobj
;
variant gil_ubsan_integer
: release
:
<cxxflags>"-Wno-unused -fstrict-aliasing -fno-omit-frame-pointer -fsanitize=integer -fno-sanitize-recover=integer -fsanitize-blacklist=libs/gil/.ci/blacklist.supp"
<linkflags>"-fsanitize=integer"
<debug-symbols>on
<define>BOOST_USE_ASAN=1
;
variant gil_ubsan_nullability
: release
:
<cxxflags>"-Wno-unused -fstrict-aliasing -fno-omit-frame-pointer -fsanitize=nullability -fno-sanitize-recover=nullability -fsanitize-blacklist=libs/gil/.ci/blacklist.supp"
<linkflags>"-fsanitize=nullability"
<debug-symbols>on
<define>BOOST_USE_ASAN=1
;
variant gil_ubsan_undefined
: release
:
<cxxflags>"-Wno-unused -fstrict-aliasing -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=undefined -fsanitize-blacklist=libs/gil/.ci/blacklist.supp"
<linkflags>"-fsanitize=undefined"
<debug-symbols>on
<define>BOOST_USE_ASAN=1
;
rule generate_self_contained_headers ( headers_subpath * : exclude_subpaths * )
{
# On CI services, test the self-contained headers on-demand only to avoid build timeouts
# CI environment is common for Travis CI, AppVeyor, CircleCI, etc.
# For example:
# if ! [ os.environ CI ] || [ os.environ TEST_HEADERS ] {
# alias self_contained_headers : [ generate_self_contained_headers ] ;
# }
local targets ;
# NOTE: All '/' in test names are replaced with '-' because apparently
# test scripts have a problem with test names containing slashes.
for local file in [ glob-tree-ex ../include/boost/gil : *.hpp : $(exclude_subpaths) ]
{
local target_no = [ sequence.length $(targets) ] ;
local rel_file = [ path.relative-to ../include/boost/gil $(file) ] ;
local target_name = [ regex.replace h/$(target_no)/$(rel_file) "/" "-" ] ;
local target_name = [ regex.replace $(target_name) "\.hpp" "" ] ;
targets += [
compile header/main.cpp
: <define>"BOOST_GIL_TEST_HEADER=$(rel_file)" <dependency>$(file)
: $(target_name)
] ;
}
return $(targets) ;
}
run test_utility_output_stream.cpp ;
build-project core ;
build-project legacy ;
build-project extension ;