Skip to content

Commit d04a8f0

Browse files
authored
Merge pull request #3 from grafikrobot/modular
Add support for modular build structure.
2 parents a2f90e9 + 9385704 commit d04a8f0

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

build.jam

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Copyright René Ferdinand Rivera Morell 2024
2+
# Distributed under the Boost Software License, Version 1.0.
3+
# (See accompanying file LICENSE_1_0.txt or copy at
4+
# http://www.boost.org/LICENSE_1_0.txt)
5+
6+
require-b2 5.2 ;
7+
8+
constant boost_dependencies :
9+
/boost/assert//boost_assert
10+
/boost/concept_check//boost_concept_check
11+
/boost/config//boost_config
12+
/boost/function//boost_function
13+
/boost/mpi//boost_mpi
14+
/boost/mpl//boost_mpl
15+
/boost/multi_index//boost_multi_index
16+
/boost/optional//boost_optional
17+
/boost/property_map//boost_property_map
18+
/boost/serialization//boost_serialization
19+
/boost/smart_ptr//boost_smart_ptr
20+
/boost/static_assert//boost_static_assert
21+
/boost/type_traits//boost_type_traits ;
22+
23+
project /boost/property_map_parallel
24+
;
25+
26+
explicit
27+
[ alias boost_property_map_parallel : : :
28+
: <include>include <library>$(boost_dependencies) ]
29+
[ alias all : boost_property_map_parallel ]
30+
;
31+
32+
call-if : boost-library property_map_parallel
33+
;
34+

0 commit comments

Comments
 (0)