mirror of
https://github.com/boostorg/config.git
synced 2025-06-25 03:51:39 +02:00
* Make the library modular usable. * Add missing import-search for cconfig/predef checks. * Add requires-b2 check to top-level build file. * Bump B2 require to 5.2 * Remove boost-root target refs. * Change all <source> references to <library>. * Update copyright dates. * Fix library global (relative) references. * Move inter-lib dependencies to a project variable and into the build targets. * Add Boost.StaticAssert transitive dep module. * Only test on latest macOS. * Add Boost.ThrowExceptions transitive dep module. * Add Boost.Preprocessor transitive dep module. * Change MacOS Clang std version to 20 from 2a * Disable ranges on MacOS. Remove CUDA testing - I just can't get CUDA to install any more. * Update drone checkouts. --------- Co-authored-by: Rene Rivera <grafikrobot@gmail.com>
33 lines
760 B
Plaintext
33 lines
760 B
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 ;
|
|
|
|
path-constant BOOST_CONFIG_ROOT : . ;
|
|
import-search $(BOOST_CONFIG_ROOT)/checks ;
|
|
|
|
project /boost/config
|
|
: common-requirements
|
|
<include>include
|
|
;
|
|
|
|
explicit
|
|
[ alias boost_config : : : : <library>$(boost_dependencies) ]
|
|
[ alias all : boost_config test ]
|
|
[ alias testing
|
|
: # sources
|
|
: # requirements
|
|
: # default-buidl
|
|
: # usage-requirements
|
|
<include>test
|
|
]
|
|
;
|
|
|
|
call-if : boost-library config
|
|
;
|
|
|
|
use-project /boost/architecture : checks/architecture ;
|
|
|