]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Automatically set VTK_AUTOLOAD_PATH variable in runtime, to override the crash when...
authorvsr <vsr@opencascade.com>
Thu, 7 Jun 2012 12:16:54 +0000 (12:16 +0000)
committervsr <vsr@opencascade.com>
Thu, 7 Jun 2012 12:16:54 +0000 (12:16 +0000)
bin/Makefile.am
bin/gui_setenv.py [new file with mode: 0644]

index cb7e596c12f6a4e0f080d96f3cb3f3f80190bad9..3d62fcb8a562902a704bd4fbd48979a042d3dc71 100644 (file)
@@ -34,3 +34,7 @@ nodist_salomescript_DATA = VERSION
 dist_salomescript_SCRIPTS =    \
        runLightSalome.csh      \
        runLightSalome.sh
+
+# python files
+dist_salomescript_PYTHON = \
+        gui_setenv.py
diff --git a/bin/gui_setenv.py b/bin/gui_setenv.py
new file mode 100644 (file)
index 0000000..ee96fbc
--- /dev/null
@@ -0,0 +1,31 @@
+#! /usr/bin/env python
+#  -*- coding: iso-8859-1 -*-
+# Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+import os
+
+# -----------------------------------------------------------------------------
+
+def set_env( args ):
+    """Add environment required for GUI module"""
+    os.environ[ 'VTK_AUTOLOAD_PATH' ] = os.path.join( os.getenv("GUI_ROOT_DIR"), "lib", "paraview" )
+    return
+
+