Skip to content

Commit

Permalink
Merge branch 'grafikrobot-modular' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
igaztanaga committed Aug 18, 2024
2 parents 70c57e8 + 6cd43ef commit 55b5a3e
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 17 deletions.
11 changes: 0 additions & 11 deletions Jamfile

This file was deleted.

23 changes: 23 additions & 0 deletions build.jam
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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/config//boost_config ;

project /boost/move
: common-requirements
<include>include
;

explicit
[ alias boost_move : : : : <library>$(boost_dependencies) ]
[ alias all : boost_move example test ]
;

call-if : boost-library move
;

6 changes: 3 additions & 3 deletions doc/Jamfile.v2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Boost.Move library documentation Jamfile
#
# Copyright Ion Gaztanaga 2009.
# Copyright Ion Gaztanaga 2009.
# 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)
Expand All @@ -13,8 +13,8 @@ import quickbook ;

doxygen autodoc
:
[ glob ../../../boost/move/*.hpp ]
[ glob ../../../boost/move/algo/*.hpp ]
[ glob ../include/boost/move/*.hpp ]
[ glob ../include/boost/move/algo/*.hpp ]
:
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
<doxygen:param>HIDE_UNDOC_MEMBERS=YES
Expand Down
9 changes: 7 additions & 2 deletions example/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
#
import testing ;

project : requirements
<library>/boost/container//boost_container
<library>/boost/type_traits//boost_type_traits
;

rule test_all
{
local all_rules = ;
Expand All @@ -25,7 +30,7 @@ rule test_all
return $(all_rules) ;
}

test-suite move_example : [ test_all r ]
test-suite move_example : [ test_all r ]
: <link>static
;

7 changes: 6 additions & 1 deletion test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@

import testing ;

project : requirements
<library>/boost/core//boost_core
<library>/boost/container//boost_container
;

rule test_all
{
local all_rules = ;
Expand All @@ -26,4 +31,4 @@ rule test_all
}

test-suite move_test : [ test_all r ] ;

0 comments on commit 55b5a3e

Please sign in to comment.