Salome HOME
bos #33720: implement static libraries for windows. These changes are aimed to resol...
[modules/yacs.git] / src / bases / Test / CMakeLists.txt
1 # Copyright (C) 2012-2022  CEA/DEN, EDF R&D
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 # --- options ---
21
22 # additional include directories
23 INCLUDE_DIRECTORIES(
24   ${CPPUNIT_INCLUDE_DIRS}
25   ${CMAKE_CURRENT_SOURCE_DIR}/..
26 )
27
28 # --- sources ---
29
30 SET(YACSDLTest_SOURCES
31   DLTest.cxx
32 )
33   
34 SET(InitTests_SOURCES
35   InitTests.cxx
36 )
37
38 SET(TestBases_SOURCES
39   TestBases.cxx
40   basesTest.cxx
41 )
42
43 # --- rules ---
44
45 if(WIN32)
46   add_library(YACSDLTest_lib STATIC  ${YACSDLTest_SOURCES})
47   TARGET_LINK_LIBRARIES(YACSDLTest_lib ${_link_LIBRARIES})
48   set_target_properties(YACSDLTest_lib PROPERTIES OUTPUT_NAME YACSDLTest)
49 endif(WIN32)
50
51 ADD_LIBRARY(YACSDLTest ${YACSDLTest_SOURCES})
52 INSTALL(TARGETS YACSDLTest EXPORT ${PROJECT_NAME}TargetGroup 
53         DESTINATION ${SALOME_YACS_INSTALL_TEST_LIB})
54
55 ADD_EXECUTABLE(InitTests ${InitTests_SOURCES})
56 ADD_TEST(InitTests InitTests)
57
58 ADD_EXECUTABLE(TestBases ${TestBases_SOURCES})
59 TARGET_LINK_LIBRARIES(TestBases YACSBases ${CPPUNIT_LIBRARIES} ${PTHREAD_LIBRARIES})
60 SALOME_GENERATE_TESTS_ENVIRONMENT(tests_env)
61 ADD_TEST(TestBases TestBases)
62 SET_TESTS_PROPERTIES(TestBases PROPERTIES ENVIRONMENT "${tests_env}")
63
64 # For salome test
65 SET(LOCAL_TEST_DIR ${SALOME_YACS_INSTALL_TEST}/bases)
66 INSTALL(TARGETS InitTests DESTINATION ${LOCAL_TEST_DIR})
67 INSTALL(TARGETS TestBases DESTINATION ${LOCAL_TEST_DIR})
68 INSTALL(FILES CTestTestfileInstall.cmake
69         DESTINATION ${LOCAL_TEST_DIR}
70         RENAME CTestTestfile.cmake)