]> SALOME platform Git repositories - modules/geom.git/blob - bin/geom_setenv.py
Salome HOME
Issue 0020400: EDF 1057 GEOM: Point coordinate operation gives (0,0,0)
[modules/geom.git] / bin / geom_setenv.py
1 #!/usr/bin/env python
2 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 #  This library is free software; you can redistribute it and/or
8 #  modify it under the terms of the GNU Lesser General Public
9 #  License as published by the Free Software Foundation; either
10 #  version 2.1 of the License.
11 #
12 #  This library is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 #  Lesser General Public License for more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public
18 #  License along with this library; if not, write to the Free Software
19 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 import os
25 from salome_utils import getTmpDir, generateFileName, uniteFiles
26 from setenv import salome_subdir
27
28 # -----------------------------------------------------------------------------
29
30 def set_env( args ):
31     """Add to the PATH-variables modules specific paths"""
32     
33     tmp_dir = getTmpDir()
34     env_dir = generateFileName( tmp_dir, prefix="env", with_port=True )
35     res_dir = os.path.join( os.getenv( "GEOM_ROOT_DIR" ), "share", salome_subdir, "resources", "geom" )
36
37     csf_list = ["Plugin", "GEOMDS_Resources", "ShHealing"]
38
39     for csf_file in csf_list:
40        uniteFiles( os.path.join( res_dir, csf_file ), os.path.join( env_dir, csf_file ) )
41        pass
42
43     for csf_string in csf_list:
44         csf_var = "CSF_" + csf_string + "Defaults"
45         if not os.getenv( csf_var ):
46             os.environ[ csf_var ] = env_dir
47             pass
48         pass
49