Salome HOME
CppUnit tests updated to the new test procedure based on salome_test_driver.
[modules/kernel.git] / src / CMakeLists.txt
1 # Copyright (C) 2012-2015  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 IF(SALOME_LAUNCHER_ONLY)
79   SET(SUBDIRS Basics ResourcesManager Launcher)
80 ELSE()
81   SET(SUBDIRS ${SUBDIR_BASE})
82   IF(NOT SALOME_LIGHT_ONLY)
83     LIST(APPEND SUBDIRS ${SUBDIR_CORBA})
84   ENDIF()
85
86   IF(SALOME_USE_MPI)
87     LIST(APPEND SUBDIRS ${SUBDIR_MPI})
88   ENDIF(SALOME_USE_MPI)
89
90   IF(SALOME_BUILD_TESTS)
91     LIST(APPEND SUBDIRS ${SUBDIR_CPPUNIT_BASE} ${SUBDIR_CPPUNIT_GENERAL})
92     IF(NOT SALOME_LIGHT_ONLY)
93       LIST(APPEND SUBDIRS ${SUBDIR_CPPUNIT_CORBA})
94     ENDIF()
95   ENDIF()
96
97   IF(SALOME_PACO_PARALLEL)
98     LIST(APPEND SUBDIRS  ${SUBDIR_PARALLEL})
99   ENDIF()
100 ENDIF()
101
102 # For salome test
103 SET(KERNEL_TEST_DIR ${SALOME_INSTALL_SCRIPT_SCRIPTS}/test)
104 SET(KERNEL_TEST_LIB ${SALOME_INSTALL_SCRIPT_SCRIPTS}/test/lib)
105 CONFIGURE_FILE(CTestTestfileInstall.cmake.in CTestTestfileInstall.cmake @ONLY)
106 INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/CTestTestfileInstall.cmake
107         DESTINATION ${KERNEL_TEST_DIR}
108         RENAME CTestTestfile.cmake)
109
110 FOREACH(_dir ${SUBDIRS})
111   ADD_SUBDIRECTORY(${_dir})
112 ENDFOREACH()