summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Boost/update.sh')
-rwxr-xr-x3rdParty/Boost/update.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/3rdParty/Boost/update.sh b/3rdParty/Boost/update.sh
new file mode 100755
index 0000000..10d0373
--- /dev/null
+++ b/3rdParty/Boost/update.sh
@@ -0,0 +1,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