You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
605 B
24 lines
605 B
#!/bin/sh
|
|
# Environment variables for the Qt package.
|
|
#
|
|
# It's best to use the generic directory to avoid
|
|
# compiling in a version-containing path:
|
|
if [ -d /usr/lib${LIBDIRSUFFIX}/tqt3 ]; then
|
|
QTDIR=/usr/lib${LIBDIRSUFFIX}/tqt3
|
|
else
|
|
# Find the newest Qt directory and set $QTDIR to that:
|
|
for qtd in /usr/lib${LIBDIRSUFFIX}/tqt3-* ; do
|
|
if [ -d $qtd ]; then
|
|
QTDIR=$qtd
|
|
fi
|
|
done
|
|
fi
|
|
if [ ! "$CPLUS_INCLUDE_PATH" = "" ]; then
|
|
CPLUS_INCLUDE_PATH=$QTDIR/include:$CPLUS_INCLUDE_PATH
|
|
else
|
|
CPLUS_INCLUDE_PATH=$QTDIR/include
|
|
fi
|
|
PATH="$PATH:$QTDIR/bin"
|
|
export QTDIR
|
|
export CPLUS_INCLUDE_PATH
|