Salome HOME
Removed debug message - minor fix for "import salome_test"
[modules/paravis.git] / src / PV_SWIG / CMakeLists.txt
index 1b89763d723f71d8f63a43eba30f3e0c120e48ce..4ff3e185bb64cb5614495391864d9ddf8c4b4770 100644 (file)
 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
 
-IF(SALOME_PARAVIS_MINIMAL_CORBA)
-  # Use another set of Python files redirecting the API directly 
-  # to the original ParaView modules.
-  SET(_PYFILES_TO_INSTALL
-    paravis.py
+SET(_PYFILES_TO_INSTALL)
+
+IF(SALOME_LIGHT_ONLY)
+  LIST(APPEND _PYFILES_TO_INSTALL
     pvsimple.py
     presentations.py
-    paravisSM.py
-  )
-ELSE()
-  SET(_PYFILES_TO_INSTALL
-    VTKWrapping/paravis.py
-    VTKWrapping/paravisSM.py
-    VTKWrapping/pvsimple.py
-    VTKWrapping/presentations.py
   )
-ENDIF()
+ELSE(SALOME_LIGHT_ONLY)
+  IF(SALOME_PARAVIS_MINIMAL_CORBA)
+    # Use another set of Python files redirecting the API directly 
+    # to the original ParaView modules.
+    LIST(APPEND _PYFILES_TO_INSTALL
+      no_wrap/pvserver.py
+      no_wrap/pvsimple.py
+      no_wrap/presentations.py
+      no_wrap/paravisSM.py
+    )
+  ELSE()
+    LIST(APPEND _PYFILES_TO_INSTALL
+      paravis.py
+      paravisSM.py
+      pvsimple.py
+      presentations.py
+    )
+  ENDIF()
+ENDIF(SALOME_LIGHT_ONLY)
 
 INSTALL_AND_COMPILE_PYTHON_FILE("${_PYFILES_TO_INSTALL}" ${SALOME_INSTALL_SCRIPT_PYTHON})