File: generate_framework_header.sh

package info (click to toggle)
libkml 1.3.0~r864%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 27,396 kB
  • ctags: 13,514
  • sloc: cpp: 65,998; sh: 19,598; ansic: 13,333; python: 3,289; makefile: 2,645; xml: 1,806; php: 223; java: 195; ruby: 109; perl: 108
file content (15 lines) | stat: -rwxr-xr-x 358 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

echo "// This file is automatically generated. Do not edit manually."
echo ""
echo "// libkml includes."

for f in $( find ../../src -type f -name "*.h" | egrep -v "internal|test|stdafx" )
do
  echo "#include \"${f:10}\""
done

echo ""
echo "// boost includes."
echo "#include \"boost/intrusive_ptr.hpp\""
echo "#include \"boost/scoped_ptr.hpp\""