Salome HOME
Script, template and documentation for the generation of default profile
[modules/kernel.git] / src / CMakeLists.txt
1 # Copyright (C) 2012-2014  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   TestContainer
42   Launcher
43   LifeCycleCORBA
44   LifeCycleCORBA_SWIG
45   SALOMEDSClient
46   TOOLSDS
47   KernelHelpers
48   SALOMEDSImpl
49   SALOMEDS
50   ModuleGenerator
51   Communication
52   Communication_SWIG
53   DSC
54 )
55
56 SET(SUBDIR_MPI MPIContainer TestMPIContainer)
57 SET(SUBDIR_PARALLEL ParallelContainer)
58
59 # CppUnit directories:
60 SET(SUBDIR_CPPUNIT_BASE
61   Basics/Test
62   SALOMELocalTrace/Test
63 )
64 SET(SUBDIR_CPPUNIT_CORBA
65   Logger/Test
66   SALOMETraceCollector/Test
67   Utils/Test
68   NamingService/Test
69   LifeCycleCORBA/Test
70   LifeCycleCORBA_SWIG/Test
71   SALOMEDSImpl/Test
72   SALOMEDS/Test
73   KernelHelpers/Test
74 )
75 SET(SUBDIR_CPPUNIT_GENERAL UnitTests)
76
77 IF(SALOME_LAUNCHER_ONLY)
78   SET(SUBDIRS Basics ResourcesManager Launcher)
79 ELSE()
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 ENDIF()
100
101 FOREACH(_dir ${SUBDIRS})
102   ADD_SUBDIRECTORY(${_dir})
103 ENDFOREACH()