File: .strap_dev

package info (click to toggle)
sp-gxmlcpp 1.0.20040603-1.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,152 kB
  • ctags: 274
  • sloc: sh: 8,678; cpp: 1,626; makefile: 120
file content (14 lines) | stat: -rwxr-xr-x 360 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -e
cd `dirname $0`

# This can cause trouble with libtool when linking if set
echo export LD_LIBRARY_PATH=""

if [ "${CPLUS_INCLUDE_PATH}" = "" ]; then
	echo export CPLUS_INCLUDE_PATH="`pwd`"
else
	echo export CPLUS_INCLUDE_PATH="`pwd`:${CPLUS_INCLUDE_PATH}"
fi

# Linking with g++
echo export LIBRARY_PATH="`pwd`/sp-gxmlcpp/.libs:${LIBRARY_PATH}"