File: .strap_dev

package info (click to toggle)
sp-gxmlcpp 1.0.20040603-5
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,196 kB
  • sloc: sh: 11,118; cpp: 1,629; makefile: 118
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}"