File tree Expand file tree Collapse file tree 1 file changed +63
-0
lines changed
Expand file tree Collapse file tree 1 file changed +63
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ git clone git@github.com:boostorg/boost.git || exit 1
4+
5+ pushd boost/libs && git submodule init callable_traits \
6+ algorithm \
7+ align \
8+ any \
9+ array \
10+ array \
11+ assert \
12+ atomic \
13+ bind \
14+ concept_check \
15+ config \
16+ container \
17+ container_hash \
18+ core \
19+ detail \
20+ exception \
21+ filesystem \
22+ format \
23+ function \
24+ functional \
25+ io \
26+ iostreams \
27+ integer \
28+ iterator \
29+ lexical_cast \
30+ move \
31+ mpl \
32+ numeric \
33+ optional \
34+ optional \
35+ predef \
36+ preprocessor \
37+ program_options \
38+ range \
39+ regex \
40+ smart_ptr \
41+ spirit \
42+ static_assert \
43+ system \
44+ throw_exception \
45+ tokenizer \
46+ tuple \
47+ type_index \
48+ type_traits \
49+ unordered \
50+ utility || exit 1
51+
52+ popd
53+ pushd boost && git submodule init tools || exit 1
54+
55+ git submodule update || exit 1
56+ ./bootstrap.sh || exit 1
57+
58+ ./b2 headers
59+ ./b2 tools/quickbook
60+ ./b2 libs/callable_traits/doc && echo " $PWD /libs/callable_traits/doc/html/index.html"
61+
62+ popd
63+
You can’t perform that action at this time.
0 commit comments