File: .strap_dev

package info (click to toggle)
sp-gxmlcpp 1.0.20040603-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,596 kB
  • ctags: 266
  • sloc: sh: 7,483; cpp: 1,629; makefile: 119
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}"