Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/regex/build/common.sh @ 29

Last change on this file since 29 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 1.2 KB
RevLine 
[29]1# copyright John Maddock 2003
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt or copy at
4# http://www.boost.org/LICENSE_1_0.txt.
5#
6# locate all the header dependencies:
7for file in ../../../boost/regex/*.hpp ; do
8        if [ -f $file ]; then
9                header="$header $file"
10        fi
11done
12
13for file in ../../../boost/regex/v3/*.hpp; do
14        if [ -f $file ]; then
15                header="$header $file"
16        fi
17done
18
19for file in ../../../boost/regex/v3/*.hxx; do
20        if [ -f $file ]; then
21                header="$header $file"
22        fi
23done
24
25for file in ../../../boost/regex/v4/*.hpp; do
26        if [ -f $file ]; then
27                header="$header $file"
28        fi
29done
30
31for file in ../../../boost/regex/v4/*.hxx; do
32        if [ -f $file ]; then
33                header="$header $file"
34        fi
35done
36
37for file in ../../../boost/regex/config/*.hpp; do
38        if [ -f $file ]; then
39                header="$header $file"
40        fi
41done
42
43for file in ../../../boost/regex/config/*.hxx; do
44        if [ -f $file ]; then
45                header="$header $file"
46        fi
47done
48
49#
50# locate all the source files:
51for file in ../src/*.cpp; do
52        if [ -f $file ]; then
53                src="$src $file"
54        fi
55done
56
57boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')
58echo Boost version tag = $boost_version
59
60
Note: See TracBrowser for help on using the repository browser.