X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPV_SWIG%2FCMakeLists.txt;h=e77b077a950118c1cbeaf323c4293451593a198f;hb=4095225705684389c98367e7ba154be482dfd468;hp=a6eed7e63ecf1ac1d64069f61e8f5b5ab5b81250;hpb=37982b1409825752861e76d733cd44e629e3e616;p=modules%2Fparavis.git diff --git a/src/PV_SWIG/CMakeLists.txt b/src/PV_SWIG/CMakeLists.txt index a6eed7e6..e77b077a 100644 --- a/src/PV_SWIG/CMakeLists.txt +++ b/src/PV_SWIG/CMakeLists.txt @@ -1,9 +1,9 @@ -# Copyright (C) 2010-2012 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 @@ -17,20 +17,22 @@ # 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})