blob: 10d0373ebc15ff7fcd318dcce3c3e401c84c6de2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
if [ -z "$1" ]; then
echo "Please specify the location of the boost source tree"
exit -1
fi
bcp --boost="$1" \
bind.hpp \
date_time/posix_time/posix_time.hpp \
foreach.hpp \
filesystem.hpp \
filesystem/fstream.hpp \
noncopyable.hpp \
numeric/conversion/cast.hpp \
shared_ptr.hpp \
optional.hpp \
signals.hpp \
thread.hpp asio.hpp \
.
rm -rf libs/config
rm -rf libs/smart_ptr
LIBS="date_time regex system thread signals filesystem"
for lib in $LIBS; do
rm -rf libs/$lib/build libs/$lib/*.doc libs/$lib/src/*.doc libs/$lib/src/CMakeLists.txt libs/$lib/test
done
# We don't use regex (yet)
rm -rf libs/regex
|