mirror of
https://github.com/boostorg/accumulators.git
synced 2026-01-19 03:22:08 +00:00
* Make the library modular usable. * Fix to avoid using gcc/clang option in other compilers. * Switch to library requirements instead of source. As source puts extra source in install targets. * Change global boost refs to local refs. * Add requires-b2 check to top-level build file. * Add missing test deps. * Fix library name in lib declaration. * Bump B2 require to 5.2 * Update copyright dates. * Move inter-lib dependencies to a project variable and into the build targets. * Adjust self dependencies as inter-lib deps no longer apply globally. * Kludge node20 into containers. * Checkout needs to happen after node20 is set up. * Rewrite GHA CI to use alandefreitas/cpp-actions utilities. * Fix GHA CI matrix evaluation value. * Need to copy tested lib to boost-root. * Tweak copy-library step to work on Windows bash. * Move library name to matrix variable instead of env var. * Add test dir to scan to fill missing deps. * Clear out library dir to be able to copy in workspace tree. * Avoid the boost tree cache for testing the scanning. * Remove CI debug listing. * Tweak factors to reduce over-builds. * Try and coax more msvc testing. * Move project global include to target local include. * Only msvc gets minor version tests. * Revert GHA CI changes. * Less impactful update of CI. * Bump gcc-11 container and be explicit about the exe to try and make it findable. * Be explicit about compiler gcc commands. * Undo compiler spec change.
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Copyright René Ferdinand Rivera Morell 2023-2024
|
|
# 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)
|
|
|
|
require-b2 5.2 ;
|
|
|
|
constant boost_dependencies :
|
|
/boost/array//boost_array
|
|
/boost/assert//boost_assert
|
|
/boost/circular_buffer//boost_circular_buffer
|
|
/boost/concept_check//boost_concept_check
|
|
/boost/config//boost_config
|
|
/boost/core//boost_core
|
|
/boost/fusion//boost_fusion
|
|
/boost/iterator//boost_iterator
|
|
/boost/mpl//boost_mpl
|
|
/boost/numeric_conversion//boost_numeric_conversion
|
|
/boost/ublas//boost_ublas
|
|
/boost/parameter//boost_parameter
|
|
/boost/preprocessor//boost_preprocessor
|
|
/boost/range//boost_range
|
|
/boost/serialization//boost_serialization
|
|
/boost/static_assert//boost_static_assert
|
|
/boost/throw_exception//boost_throw_exception
|
|
/boost/tuple//boost_tuple
|
|
/boost/type_traits//boost_type_traits
|
|
/boost/typeof//boost_typeof ;
|
|
|
|
project /boost/accumulators
|
|
;
|
|
|
|
explicit
|
|
[ alias boost_accumulators : : :
|
|
: <include>include <library>$(boost_dependencies) ]
|
|
[ alias all : boost_accumulators example test ]
|
|
;
|
|
|
|
call-if : boost-library accumulators
|
|
;
|
|
|