X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCMakeLists.txt;h=d8b99daa943acefdc758131741deee9fc4cb350e;hb=7440aef5f1bcc32d34002f157868a7f6c0d7c03f;hp=188fc8825b7240820cf45f011087d013d1f0e79f;hpb=89c33033151baa33eeac8fb09d9c0488acb43c35;p=modules%2Fparavis.git diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 188fc882..d8b99daa 100644 --- a/src/CMakeLists.txt +++ b/src/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(SUBDIRS - ENGINE - PVGUI +SET(_subdirs PV_SWIG Macro +) + +IF(NOT SALOME_LIGHT_ONLY) + LIST(APPEND _subdirs + PVGUI ) +ENDIF(NOT SALOME_LIGHT_ONLY) -IF(BUILD_PLUGINS) - SET(SUBDIRS - ${SUBDIRS} - Plugins - ) -ENDIF(BUILD_PLUGINS) +IF(SALOME_PARAVIS_BUILD_PLUGINS) + LIST(APPEND _subdirs Plugins) +ENDIF() -FOREACH(dir ${SUBDIRS}) +FOREACH(dir ${_subdirs}) ADD_SUBDIRECTORY(${dir}) -ENDFOREACH(dir ${SUBDIRS}) +ENDFOREACH() +