Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/regex/build/common.sh @ 12

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

added boost

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