mirror of
https://github.com/boostorg/wave.git
synced 2026-01-19 16:52:15 +00:00
* Make the library modular usable. * Switch to library requirements instead of source. As source puts extra source in install targets. * Add wave tool build to all target. * Add missing NO_LIB usage requirements. * Add requires-b2 check to top-level build file. * Bump B2 require to 5.2 * Change all <source> references to <library>. * Move inter-lib dependencies to a project variable and into the build targets. * Update build deps.
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
# Copyright René Ferdinand Rivera Morell 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/assert//boost_assert
|
|
/boost/concept_check//boost_concept_check
|
|
/boost/config//boost_config
|
|
/boost/core//boost_core
|
|
/boost/filesystem//boost_filesystem
|
|
/boost/format//boost_format
|
|
/boost/iterator//boost_iterator
|
|
/boost/lexical_cast//boost_lexical_cast
|
|
/boost/mpl//boost_mpl
|
|
/boost/multi_index//boost_multi_index
|
|
/boost/optional//boost_optional
|
|
/boost/pool//boost_pool
|
|
/boost/preprocessor//boost_preprocessor
|
|
/boost/serialization//boost_serialization
|
|
/boost/smart_ptr//boost_smart_ptr
|
|
/boost/spirit//boost_spirit
|
|
/boost/static_assert//boost_static_assert
|
|
/boost/throw_exception//boost_throw_exception
|
|
/boost/type_traits//boost_type_traits ;
|
|
|
|
project /boost/wave
|
|
: common-requirements
|
|
<include>include
|
|
;
|
|
|
|
explicit
|
|
[ alias boost_wave : build//boost_wave ]
|
|
[ alias wave : tool/build//wave ]
|
|
[ alias all : boost_wave wave samples test ]
|
|
;
|
|
|
|
call-if : boost-library wave
|
|
: install boost_wave
|
|
;
|
|
|