Salome HOME
b742f5c68ed669b2dacff3b3dc6cd76ced740828
[tools/medcoupling.git] / src / MEDCoupling / Test / CMakeLists.txt
1 # Copyright (C) 2012-2016  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 # Author : Anthony Geay (CEA/DEN)
20
21 ADD_DEFINITIONS(${CPPUNIT_DEFINITIONS})
22
23 INCLUDE_DIRECTORIES(
24   ${CPPUNIT_INCLUDE_DIRS}
25   ${PTHREADS_INCLUDE_DIRS}
26   ${CMAKE_CURRENT_SOURCE_DIR}/..
27   ${CMAKE_CURRENT_SOURCE_DIR}/../../INTERP_KERNEL
28   ${CMAKE_CURRENT_SOURCE_DIR}/../../INTERP_KERNEL/Bases
29   ${CMAKE_CURRENT_SOURCE_DIR}/../../INTERP_KERNEL/Geometric2D
30   ${CMAKE_CURRENT_SOURCE_DIR}/../../INTERP_KERNEL/ExprEval
31   ${CMAKE_CURRENT_SOURCE_DIR}/../../INTERP_KERNEL/GaussPoints
32   ${CMAKE_CURRENT_SOURCE_DIR}/../../INTERP_KERNELTest
33   )
34
35 SET(TestMEDCoupling_SOURCES
36   MEDCouplingBasicsTestInterp.cxx
37   TestMEDCoupling.cxx
38   MEDCouplingBasicsTest0.cxx
39   MEDCouplingBasicsTest1.cxx
40   MEDCouplingBasicsTest2.cxx
41   MEDCouplingBasicsTest3.cxx
42   MEDCouplingBasicsTest4.cxx
43   MEDCouplingBasicsTest5.cxx
44   )
45
46 SET(TestMEDCouplingRemapper_SOURCES
47   TestMEDCouplingRemapper.cxx
48   MEDCouplingRemapperTest.cxx
49   MEDCouplingBasicsTest0.cxx
50   )
51
52 SET(TestMEDCouplingExamples_SOURCES
53   MEDCouplingExamplesTest.cxx
54   MEDCouplingBasicsTest0.cxx
55   )
56
57 SALOME_GENERATE_TESTS_ENVIRONMENT(tests_env)
58
59 ADD_EXECUTABLE(TestMEDCoupling ${TestMEDCoupling_SOURCES})
60 TARGET_LINK_LIBRARIES(TestMEDCoupling medcouplingcpp ${CPPUNIT_LIBRARIES} ${PLATFORM_LIBS})
61 ADD_TEST(TestMEDCoupling TestMEDCoupling)
62 SET_TESTS_PROPERTIES(TestMEDCoupling PROPERTIES ENVIRONMENT "${tests_env}")
63
64 ADD_EXECUTABLE(TestMEDCouplingRemapper ${TestMEDCouplingRemapper_SOURCES})
65 TARGET_LINK_LIBRARIES(TestMEDCouplingRemapper medcouplingremapper ${CPPUNIT_LIBRARIES} ${PLATFORM_LIBS})
66 ADD_TEST(TestMEDCouplingRemapper TestMEDCouplingRemapper)
67 SET_TESTS_PROPERTIES(TestMEDCouplingRemapper PROPERTIES ENVIRONMENT "${tests_env}")
68
69 ADD_EXECUTABLE(TestMEDCouplingExamples ${TestMEDCouplingExamples_SOURCES})
70 TARGET_LINK_LIBRARIES(TestMEDCouplingExamples medcouplingcpp ${CPPUNIT_LIBRARIES} ${PLATFORM_LIBS})
71 ADD_TEST(TestMEDCouplingExamples TestMEDCouplingExamples)
72 SET_TESTS_PROPERTIES(TestMEDCouplingExamples PROPERTIES ENVIRONMENT "${tests_env}")
73
74 INSTALL(TARGETS TestMEDCoupling TestMEDCouplingRemapper TestMEDCouplingExamples DESTINATION ${MEDCOUPLING_INSTALL_BINS})
75
76 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES UnitTestsResult)
77
78 # Application tests
79
80 SET(TEST_INSTALL_DIRECTORY ${MEDCOUPLING_INSTALL_TESTS}/MEDCoupling)
81 INSTALL(TARGETS TestMEDCoupling TestMEDCouplingRemapper TestMEDCouplingExamples DESTINATION ${TEST_INSTALL_DIRECTORY})
82
83 INSTALL(FILES CTestTestfileInstall.cmake
84         DESTINATION ${TEST_INSTALL_DIRECTORY}
85         RENAME CTestTestfile.cmake)