summaryrefslogtreecommitdiffstats
path: root/libraries/qt4/profile.d/qt4.csh
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/qt4/profile.d/qt4.csh')
-rw-r--r--libraries/qt4/profile.d/qt4.csh20
1 files changed, 20 insertions, 0 deletions
diff --git a/libraries/qt4/profile.d/qt4.csh b/libraries/qt4/profile.d/qt4.csh
new file mode 100644
index 0000000000..f023c50759
--- /dev/null
+++ b/libraries/qt4/profile.d/qt4.csh
@@ -0,0 +1,20 @@
+#!/bin/csh
+
+# Environment path variables for the Qt package
+
+# It's a very bad idea to make this script executable. Anything that
+# needs to build with qt4 should instead source this script. Failure
+# to follow this advice will likely break various builds that use qt5.
+# I seriously doubt anything will ever source this csh version, either.
+
+setenv QT4DIR /usr/lib/qt4
+
+# put the qt4 stuff first in $PATH, so running e.g. 'qmake' will
+# run the qt4 version, not the qt5 one.
+set path = ( $QT4DIR/bin $path )
+
+if ( $?CPLUS_INCLUDE_PATH ) then
+ setenv CPLUS_INCLUDE_PATH $QT4DIR/include:$CPLUS_INCLUDE_PATH
+else
+ setenv CPLUS_INCLUDE_PATH $QT4DIR/include
+endif