Skip to content

Commit 45494b8

Browse files
committed
Add script for generating html documentation
1 parent 2520336 commit 45494b8

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

scripts/generate_html_docs.sh

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
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+

0 commit comments

Comments
 (0)