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.
23 lines
705 B
23 lines
705 B
9 years ago
|
#!/bin/csh
|
||
|
# Environment path variables for the Qt package:
|
||
|
if ( ! $?QTDIR ) then
|
||
|
# It's best to use the generic directory to avoid
|
||
|
# compiling in a version-containing path:
|
||
|
if ( -d /usr/lib${LIBDIRSUFFIX}/tqt3 ) then
|
||
|
setenv QTDIR /usr/lib${LIBDIRSUFFIX}/tqt3
|
||
|
else
|
||
|
# Find the newest Qt directory and set $QTDIR to that:
|
||
|
foreach qtd ( /usr/lib${LIBDIRSUFFIX}/tqt3-* )
|
||
|
if ( -d $qtd ) then
|
||
|
setenv QTDIR $qtd
|
||
|
endif
|
||
|
end
|
||
|
endif
|
||
|
endif
|
||
|
set path = ( $path $QTDIR/bin )
|
||
|
if ( $?CPLUS_INCLUDE_PATH ) then
|
||
|
setenv CPLUS_INCLUDE_PATH $QTDIR/include:$CPLUS_INCLUDE_PATH
|
||
|
else
|
||
|
setenv CPLUS_INCLUDE_PATH $QTDIR/include
|
||
|
endif
|