X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPV_SWIG%2FCMakeLists.txt;h=4ff3e185bb64cb5614495391864d9ddf8c4b4770;hb=025ccb19379defe9e6a14c6f88f18f80edd3e2b2;hp=18e33dc40df55cc6e563ac99e0247adfa3b6c0b6;hpb=e2c075bb656e4e5b0d8e6fcb7e06b5c25f903dee;p=modules%2Fparavis.git diff --git a/src/PV_SWIG/CMakeLists.txt b/src/PV_SWIG/CMakeLists.txt index 18e33dc4..4ff3e185 100644 --- a/src/PV_SWIG/CMakeLists.txt +++ b/src/PV_SWIG/CMakeLists.txt @@ -1,9 +1,9 @@ -# Copyright (C) 2010-2013 CEA/DEN, EDF R&D +# Copyright (C) 2010-2014 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 @@ -17,22 +17,31 @@ # 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})