X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fbases%2FTest%2FCMakeLists.txt;h=bd5ae8cf64b2048ad353920b017c272e5bf15007;hb=09cbf696c05bcf689364417ad0f97a34ca938cdc;hp=ee8911343beb4c084955cf7cf8b77ee62f99306a;hpb=301fcc69dc7b0f1f3f1f1e844a22cfa722253c8d;p=modules%2Fyacs.git diff --git a/src/bases/Test/CMakeLists.txt b/src/bases/Test/CMakeLists.txt index ee8911343..bd5ae8cf6 100644 --- a/src/bases/Test/CMakeLists.txt +++ b/src/bases/Test/CMakeLists.txt @@ -1,9 +1,9 @@ -# Copyright (C) 2012-2013 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2012-2014 CEA/DEN, EDF R&D # # 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. +# version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,29 +21,35 @@ # additional include directories INCLUDE_DIRECTORIES( - ${PTHREAD_INCLUDE_DIR} ${CPPUNIT_INCLUDE_DIRS} - ) - -# additional preprocessor / compiler flags -ADD_DEFINITIONS( - ${CPPUNIT_DEFINITIONS} - ) - -# libraries to link to -SET(_link_LIBRARIES - ${CPPUNIT_LIBRARIES} - YACSBases - ) + ${CMAKE_CURRENT_SOURCE_DIR}/.. +) # --- sources --- SET(YACSDLTest_SOURCES DLTest.cxx - ) +) + +SET(InitTests_SOURCES + InitTests.cxx +) + +SET(TestBases_SOURCES + TestBases.cxx + basesTest.cxx +) # --- rules --- ADD_LIBRARY(YACSDLTest ${YACSDLTest_SOURCES}) -TARGET_LINK_LIBRARIES(YACSDLTest ${_link_LIBRARIES}) INSTALL(TARGETS YACSDLTest EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS}) + +ADD_EXECUTABLE(InitTests ${InitTests_SOURCES}) +ADD_TEST(InitTests InitTests) + +ADD_EXECUTABLE(TestBases ${TestBases_SOURCES}) +TARGET_LINK_LIBRARIES(TestBases YACSBases ${CPPUNIT_LIBRARIES} ${PTHREAD_LIBRARIES}) +SALOME_GENERATE_TESTS_ENVIRONMENT(tests_env) +ADD_TEST(TestBases TestBases) +SET_TESTS_PROPERTIES(TestBases PROPERTIES ENVIRONMENT "${tests_env}") \ No newline at end of file