Compare commits

..

12 Commits

Author SHA1 Message Date
Peter Dimov 8991751e3b Regenerate CMakeLists.txt 2025-01-27 21:22:01 +02:00
Peter Dimov b2f6f0ca65 Update build.jam 2025-01-27 21:21:34 +02:00
Peter Dimov 703ad46b81 Fix test/Jamfile project requirements 2025-01-27 21:18:15 +02:00
Peter Dimov 7482efd0a1 Merge branch 'modular' of https://github.com/grafikrobot/boostorg.array into feature/pr-24 2025-01-27 21:16:20 +02:00
Rene Rivera 78fb6a71dd Adjust self dependencies as inter-lib deps no longer apply globally. 2024-07-27 11:03:42 -05:00
Rene Rivera 40e2a2d4d8 Move inter-lib dependencies to a project variable and into the build targets. 2024-07-23 22:34:23 -05:00
Rene Rivera fc10453994 Update copyright dates. 2024-07-20 22:52:04 -05:00
Rene Rivera 28d8d30b57 Bump B2 require to 5.2 2024-06-14 11:33:55 -05:00
Rene Rivera fe1e99eb31 Add requires-b2 check to top-level build file. 2024-05-05 09:00:00 -05:00
Rene Rivera 1469f4b28e Sync from upstream. 2024-04-12 22:21:21 -05:00
Rene Rivera d535c37a57 Switch to library requirements instead of source. As source puts extra source in install targets. 2024-03-29 21:12:36 -05:00
Rene Rivera 36bba5af2d Make the library modular usable. 2024-03-11 08:27:02 -05:00
3 changed files with 28 additions and 2 deletions
-1
View File
@@ -16,7 +16,6 @@ target_link_libraries(boost_array
INTERFACE
Boost::assert
Boost::config
Boost::core
Boost::static_assert
Boost::throw_exception
)
+24
View File
@@ -0,0 +1,24 @@
# Copyright 2023-2024 René Ferdinand Rivera Morell
# Copyright 2024 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# https://www.boost.org/LICENSE_1_0.txt
require-b2 5.2 ;
constant boost_dependencies :
/boost/assert//boost_assert
/boost/config//boost_config
/boost/static_assert//boost_static_assert
/boost/throw_exception//boost_throw_exception
;
project /boost/array ;
explicit
[ alias boost_array : : : : <include>include <library>$(boost_dependencies) ]
[ alias all : boost_array test ]
;
call-if : boost-library array
;
+4 -1
View File
@@ -10,6 +10,9 @@ import config : requires ;
project
: requirements
<library>/boost/array//boost_array
<library>/boost/core//boost_core
<warnings>extra
<toolset>msvc:<warnings-as-errors>on
@@ -58,7 +61,7 @@ compile-fail array_getfail2.cpp
: <warnings>off ;
run array_hash.cpp
: : : [ requires cxx11_noexcept ] ;
: : : <library>/boost/container_hash//boost_container_hash [ requires cxx11_noexcept ] ;
#