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