Salome HOME
Merge branch 'omu/insitu'
[modules/paravis.git] / src / PV_SWIG / CMakeLists.txt
index e4bdaf3a15ea188b722bc6190bf7fb356fe164bb..e77b077a950118c1cbeaf323c4293451593a198f 100644 (file)
@@ -1,9 +1,9 @@
-# Copyright (C) 2010-2013  CEA/DEN, EDF R&D
+# Copyright (C) 2010-2016  CEA/DEN, EDF R&D
 #
 # 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.
+# version 2.1 of the License, or (at your option) any later version.
 #
 # This library is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-SET(dist_salomescript_DATA
-  paravis.py
-  paravisSM.py
-  pvsimple.py
-  presentations.py
-  )
+SET(_PYFILES_TO_INSTALL)
 
-FOREACH(f ${dist_salomescript_DATA})
-  INSTALL(FILES ${f} DESTINATION bin/salome)
+IF(SALOME_LIGHT_ONLY)
+  LIST(APPEND _PYFILES_TO_INSTALL
+    pvsimple.py
+    presentations.py
+  )
+ELSE(SALOME_LIGHT_ONLY)
+    # Use a set of Python files redirecting the API directly 
+    # to the original ParaView modules.
+    LIST(APPEND _PYFILES_TO_INSTALL
+      pvserver.py
+      pvsimple.py
+      presentations.py
+      paravisSM.py
+    )
+ENDIF(SALOME_LIGHT_ONLY)
 
-  INSTALL(CODE "SET(PYTHON_FILE ${f})")
-  INSTALL(CODE "SET(CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})")
-  INSTALL(CODE "SET(DEST bin/salome)")
-  INSTALL(CODE "SET(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE})")
-  INSTALL(SCRIPT ${KERNEL_ROOT_DIR}/salome_adm/cmake_files/deprecated/install_and_compile_python_file.cmake)
-  
-ENDFOREACH(f ${dist_salomescript_DATA})
+SALOME_INSTALL_SCRIPTS("${_PYFILES_TO_INSTALL}" ${SALOME_INSTALL_PYTHON})