]> SALOME platform Git repositories - tools/sat_salome.git/commitdiff
Salome HOME
sat #30348 use PARAVISADDONS.py environment file until fixed
authorNabil Ghodbane <nabil.ghodbane@cea.fr>
Tue, 21 Jun 2022 16:14:00 +0000 (18:14 +0200)
committerNabil Ghodbane <nabil.ghodbane@cea.fr>
Tue, 21 Jun 2022 16:14:00 +0000 (18:14 +0200)
products/PARAVISADDONS.pyconf
products/compil_scripts/ADAO.bat
products/env_scripts/PARAVISADDONS.py [new file with mode: 0644]

index a546be0c89fbcbd8fe3643b42ce3e72b24f878a3..d192044ffaa44a064759a228e902df02965bb359 100644 (file)
@@ -1,62 +1,62 @@
 #!/usr/bin/env python
 #-*- coding:utf-8 -*-
 
-  default :
-  {
+default :
+{
     name : 'PARAVISADDONS'
     build_source : 'cmake'
     cmake_options : ''
     get_source : "git"
     git_info :
     {
-      repo : $PROJECTS.projects.salome.git_info.default_git_server + 'modules/paravisaddons_common.git'
-      repo_dev : $PROJECTS.projects.salome.git_info.default_git_server_dev + 'paravisaddons_common.git'
+        repo : $PROJECTS.projects.salome.git_info.default_git_server + 'modules/paravisaddons_common.git'
+        repo_dev : $PROJECTS.projects.salome.git_info.default_git_server_dev + 'paravisaddons_common.git'
     }
     environ :
     {
-      PARAVISADDONS : $install_dir
-      PV_PLUGIN_PATH_ : $install_dir + $VARS.sep + 'lib' + $VARS.sep + 'paraview'
+        env_script : $name + ".py"
     }
     depend :
     [
-      'KERNEL'
-      'GUI'
-      'MEDCOUPLING'
-      'PARAVIS'
-      'FIELDS'
-      'GEOM'
-      'SMESH'
-      'Python'
-      'qt'
-      'boost'
-      'hdf5'
-      'medfile'
-      'ParaView'
-      'CAS'
-      'omniORB'
-      'docutils'
-      'libxml2'
-      'six'
-      'pytz'
+        'KERNEL'
+        'GUI'
+        'MEDCOUPLING'
+        'PARAVIS'
+        'FIELDS'
+        'GEOM'
+        'SMESH'
+        'Python'
+        'qt'
+        'boost'
+        'hdf5'
+        'medfile'
+        'ParaView'
+        'CAS'
+        'omniORB'
+        'docutils'
+        'libxml2'
+        'six'
+        'pytz'
     ]
     opt_depend : ['openmpi']
     build_depend :
     [
-      'cmake'
-      'swig'
-      'cppunit'
+        'cmake'
+        'swig'
+        'cppunit'
     ]
     source_dir : $APPLICATION.workdir + $VARS.sep + 'SOURCES' + $VARS.sep + $name
     build_dir : $APPLICATION.workdir + $VARS.sep + 'BUILD' + $VARS.sep + $name
     properties :
     {
-      incremental : 'yes'
+        incremental : 'yes'
     }
-  }
-  default_win :
-  {
+}
+
+default_win :
+{
     depend :
     [
-      'PARAVIS'
+        'PARAVIS'
     ]
-  }
+}
index c21b76baf025020cd1b7082512c14ea7536aad90..4b424068e240207730f696b4b6d5f75c9361ec31 100644 (file)
@@ -41,7 +41,7 @@ if NOT %ERRORLEVEL% == 0 (
 
 echo.
 echo *********************************************************************
-echo *** msbuild %MAKE_OPTIONS% /p:Configuration=Release /p:Platform=x64 ALL_BUILD.vcxproj"
+echo *** msbuild %MAKE_OPTIONS% /p:Configuration=Release /p:Platform=x64 ALL_BUILD.vcxproj
 echo *********************************************************************
 echo.
 
diff --git a/products/env_scripts/PARAVISADDONS.py b/products/env_scripts/PARAVISADDONS.py
new file mode 100644 (file)
index 0000000..d338697
--- /dev/null
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+import os.path
+
+def set_env(env, prereq_dir, version):
+    env.set('PARAVISADDONS', prereq_dir)
+    env.append('PV_PLUGIN_PATH', os.path.join(prereq_dir, 'lib','paraview'))
+
+def set_nativ_env(env):
+    pass