Salome HOME
Copyright update: 2016
[modules/kernel.git] / src / CMakeLists.txt
1 # Copyright (C) 2012-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 SET(SUBDIR_BASE
21   AppQuickStart
22   Basics
23   SALOMELocalTrace
24   HDFPersist
25   KERNEL_PY
26   Utils
27 )
28
29 SET(SUBDIR_CORBA
30   DF
31   Logger
32   SALOMETraceCollector
33   NamingService
34   GenericObj
35   Registry
36   ModuleCatalog
37   ResourcesManager
38   Notification
39   NOTIFICATION_SWIG
40   Container
41   SALOMESDS
42   TestContainer
43   Launcher
44   LifeCycleCORBA
45   LifeCycleCORBA_SWIG
46   SALOMEDSClient
47   TOOLSDS
48   KernelHelpers
49   SALOMEDSImpl
50   SALOMEDS
51   ModuleGenerator
52   Communication
53   Communication_SWIG
54   DSC
55 )
56
57 SET(SUBDIR_MPI MPIContainer TestMPIContainer)
58 SET(SUBDIR_PARALLEL ParallelContainer)
59
60 # CppUnit directories:
61 SET(SUBDIR_CPPUNIT_BASE
62   Basics/Test
63   SALOMELocalTrace/Test
64 )
65 SET(SUBDIR_CPPUNIT_CORBA
66   Logger/Test
67   SALOMETraceCollector/Test
68   Utils/Test
69   NamingService/Test
70   LifeCycleCORBA/Test
71   LifeCycleCORBA_SWIG/Test
72   SALOMEDSImpl/Test
73   SALOMEDS/Test
74   KernelHelpers/Test
75 )
76 SET(SUBDIR_CPPUNIT_GENERAL UnitTests)
77
78 SET(SUBDIRS ${SUBDIR_BASE})
79 IF(NOT SALOME_LIGHT_ONLY)
80   LIST(APPEND SUBDIRS ${SUBDIR_CORBA})
81 ENDIF()
82
83 IF(SALOME_USE_MPI)
84   LIST(APPEND SUBDIRS ${SUBDIR_MPI})
85 ENDIF(SALOME_USE_MPI)
86
87 IF(SALOME_BUILD_TESTS)
88   LIST(APPEND SUBDIRS ${SUBDIR_CPPUNIT_BASE} ${SUBDIR_CPPUNIT_GENERAL})
89   IF(NOT SALOME_LIGHT_ONLY)
90     LIST(APPEND SUBDIRS ${SUBDIR_CPPUNIT_CORBA})
91   ENDIF()
92 ENDIF()
93
94 IF(SALOME_PACO_PARALLEL)
95   LIST(APPEND SUBDIRS  ${SUBDIR_PARALLEL})
96 ENDIF()
97
98 FOREACH(_dir ${SUBDIRS})
99   ADD_SUBDIRECTORY(${_dir})
100 ENDFOREACH()