Salome HOME
CMake:
authormpa <mpa@opencascade.com>
Fri, 8 Nov 2013 10:41:28 +0000 (10:41 +0000)
committermpa <mpa@opencascade.com>
Fri, 8 Nov 2013 10:41:28 +0000 (10:41 +0000)
- add tests for current module

src/engine/Test/CMakeLists.txt [new file with mode: 0644]

diff --git a/src/engine/Test/CMakeLists.txt b/src/engine/Test/CMakeLists.txt
new file mode 100644 (file)
index 0000000..681c9c1
--- /dev/null
@@ -0,0 +1,71 @@
+# Copyright (C) 2012-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+#
+# 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.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+# --- options ---
+
+# additional include directories
+INCLUDE_DIRECTORIES(
+  ${CPPUNIT_INCLUDE_DIRS}
+  ${CMAKE_CURRENT_SOURCE_DIR}/..
+  ${CMAKE_CURRENT_SOURCE_DIR}/../../bases
+  ${CMAKE_CURRENT_SOURCE_DIR}/../../bases/Test
+)
+
+# libraries to link to
+SET(_link_LIBRARIES
+  ${CPPUNIT_LIBRARIES} 
+  ${PTHREAD_LIBRARIES}
+  YACSlibEngine 
+  YACSBases
+)
+
+# --- sources ---
+
+SET(PluginOptEvTest1_SOURCES
+  PluginOptEvTest1.cxx
+)
+  
+SET(TestEngine_SOURCES
+  TestEngine.cxx
+  RuntimeForEngineTest.cxx
+  engineTest.cxx
+)
+
+SET(IntegrationTestEngine_SOURCES
+  ToyNode.cxx
+  ContainerTest.cxx
+  ComponentInstanceTest.cxx
+  IntegrationTestEngine.cxx
+  engineIntegrationTest.cxx
+  RuntimeForEngineIntegrationTest.cxx
+)
+
+# --- rules ---
+
+ADD_LIBRARY(PluginOptEvTest1 ${PluginOptEvTest1_SOURCES})
+TARGET_LINK_LIBRARIES(PluginOptEvTest1 YACSlibEngine)
+INSTALL(TARGETS PluginOptEvTest1 EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
+
+ADD_EXECUTABLE(TestEngine ${TestEngine_SOURCES})
+TARGET_LINK_LIBRARIES(TestEngine ${_link_LIBRARIES})
+ADD_TEST(TestEngine TestEngine)
+
+ADD_EXECUTABLE(IntegrationTestEngine ${IntegrationTestEngine_SOURCES})
+TARGET_LINK_LIBRARIES(IntegrationTestEngine ${_link_LIBRARIES})
+ADD_TEST(IntegrationTestEngine IntegrationTestEngine)
\ No newline at end of file