We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d3eaa1 commit ac33d28Copy full SHA for ac33d28
build.jam
@@ -5,20 +5,23 @@
5
6
require-b2 5.2 ;
7
8
+constant boost_dependencies :
9
+ /boost/assert//boost_assert
10
+ /boost/config//boost_config
11
+ /boost/iterator//boost_iterator
12
+ /boost/throw_exception//boost_throw_exception
13
+ /boost/type_traits//boost_type_traits ;
14
+
15
project /boost/tokenizer
16
: common-requirements
- <library>/boost/assert//boost_assert
- <library>/boost/config//boost_config
- <library>/boost/iterator//boost_iterator
- <library>/boost/throw_exception//boost_throw_exception
- <library>/boost/type_traits//boost_type_traits
17
<include>include
18
;
19
20
explicit
- [ alias boost_tokenizer ]
21
+ [ alias boost_tokenizer : : : : <library>$(boost_dependencies) ]
22
[ alias all : boost_tokenizer example test ]
23
24
25
call-if : boost-library tokenizer
26
27
0 commit comments