Salome HOME
Merge branch 'V9_9_BR'
[modules/kernel.git] / src / CMakeLists.txt
1 # Copyright (C) 2012-2022  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   ArgvKeeper
22   AppQuickStart
23   Basics
24   SALOMELocalTrace
25   HDFPersist
26   KERNEL_PY
27   Utils
28 )
29
30 SET(SUBDIR_CORBA
31   DF
32   Logger
33   SALOMETraceCollector
34   NamingService
35   GenericObj
36   Registry
37   ModuleCatalog
38   ResourcesManager
39   Notification
40   NOTIFICATION_SWIG
41   Container
42   SALOMESDS
43   TestContainer
44   Launcher
45   Launcher_SWIG
46   LifeCycleCORBA
47   LifeCycleCORBA_SWIG
48   SALOMEDSClient
49   TOOLSDS
50   KernelHelpers
51   SALOMEDSImpl
52   SALOMEDS
53   ModuleGenerator
54   Communication
55   Communication_SWIG
56   DSC
57 )
58
59 SET(SUBDIR_MPI MPIContainer TestMPIContainer)
60 SET(SUBDIR_PARALLEL ParallelContainer)
61
62 # CppUnit directories:
63 SET(SUBDIR_CPPUNIT_BASE
64   Basics/Test
65   SALOMELocalTrace/Test
66 )
67 SET(SUBDIR_CPPUNIT_CORBA
68   Logger/Test
69   SALOMETraceCollector/Test
70   Utils/Test
71   NamingService/Test
72   LifeCycleCORBA/Test
73   LifeCycleCORBA_SWIG/Test
74   SALOMEDSImpl/Test
75   SALOMEDS/Test
76   KernelHelpers/Test
77 )
78 SET(SUBDIR_CPPUNIT_GENERAL UnitTests)
79
80 SET(SUBDIRS ${SUBDIR_BASE})
81 IF(NOT SALOME_LIGHT_ONLY)
82   LIST(APPEND SUBDIRS ${SUBDIR_CORBA})
83 ENDIF()
84
85 IF(SALOME_USE_MPI)
86   LIST(APPEND SUBDIRS ${SUBDIR_MPI})
87 ENDIF(SALOME_USE_MPI)
88
89 IF(SALOME_BUILD_TESTS)
90   LIST(APPEND SUBDIRS ${SUBDIR_CPPUNIT_BASE} ${SUBDIR_CPPUNIT_GENERAL})
91   IF(NOT SALOME_LIGHT_ONLY)
92     LIST(APPEND SUBDIRS ${SUBDIR_CPPUNIT_CORBA})
93   ENDIF()
94 ENDIF()
95
96 IF(SALOME_PACO_PARALLEL)
97   LIST(APPEND SUBDIRS  ${SUBDIR_PARALLEL})
98 ENDIF()
99
100 FOREACH(_dir ${SUBDIRS})
101   ADD_SUBDIRECTORY(${_dir})
102 ENDFOREACH()