comparison Resources/CMake/BoostConfiguration.sh @ 553:27d32fc6209a

simplifications to cmake, use a digest of boost 1.54.0 thanks bcp
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 17 Sep 2013 15:06:16 +0200
parents
children 2681bcc1eb37
comparison
equal deleted inserted replaced
552:938d8461cf8f 553:27d32fc6209a
1 #!/bin/bash
2
3 set -e
4 set -u
5
6 ## Starting with version 0.6.2, Orthanc is shipped with a subset of the
7 ## Boost libraries that is generated with the BCP tool:
8 ##
9 ## http://www.boost.org/doc/libs/1_54_0/tools/bcp/doc/html/index.html
10 ##
11 ## This script generates this subset.
12
13 rm -rf /tmp/boost_1_54_0
14 rm -rf /tmp/bcp/boost_1_54_0
15
16 cd /tmp
17 echo "Uncompressing the source of Boost 1.54.0..."
18 tar xfz boost_1_54_0.tar.gz
19
20 echo "Generating the subset..."
21 mkdir -p /tmp/bcp/boost_1_54_0
22 bcp --boost=/tmp/boost_1_54_0 thread system locale date_time filesystem math/special_functions /tmp/bcp/boost_1_54_0
23 cd /tmp/bcp
24
25 echo "Compressing the subset..."
26 tar cfz boost_1_54_0_bcpdigest.tar.gz boost_1_54_0
27 ls -l boost_1_54_0_bcpdigest.tar.gz
28 md5sum boost_1_54_0_bcpdigest.tar.gz