File: genBoostIncFile.sh

package info (click to toggle)
coin3 4.0.6%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 53,416 kB
  • sloc: cpp: 256,463; ansic: 21,309; makefile: 8,662; sh: 3,141; perl: 1,504; lex: 1,372; lisp: 1,247; pascal: 961; xml: 604; yacc: 387; sed: 68
file content (13 lines) | stat: -rwxr-xr-x 349 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/env bash
#Run this script ro regenerate the Boost include file, when updating the boost headerlibs.


DELIM=' \
	'

cd $(dirname $0)/..
(
echo -ne "BOOST_HEADER_FILES = \\
\t"
find include/boost -name '*.hpp' | xargs | cut -d\  -f1- --output-delimiter="${DELIM}") > include/Makefile.inc
echo '<COIN_SOURCEDIR>/include/Makefile.inc' generated