Salome HOME
Merge branch 'agr/medcoupling_tool'
[tools/medcoupling.git] / src / MEDCoupling / Test / CMakeLists.txt
1 # Copyright (C) 2012-2015  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 ADD_EXECUTABLE(TestMEDCoupling ${TestMEDCoupling_SOURCES})
58 TARGET_LINK_LIBRARIES(TestMEDCoupling medcoupling ${CPPUNIT_LIBRARIES} ${PLATFORM_LIBS})
59 ADD_TEST(TestMEDCoupling TestMEDCoupling)
60
61 ADD_EXECUTABLE(TestMEDCouplingRemapper ${TestMEDCouplingRemapper_SOURCES})
62 TARGET_LINK_LIBRARIES(TestMEDCouplingRemapper medcouplingremapper ${CPPUNIT_LIBRARIES} ${PLATFORM_LIBS})
63 ADD_TEST(TestMEDCouplingRemapper TestMEDCouplingRemapper)
64
65 ADD_EXECUTABLE(TestMEDCouplingExamples ${TestMEDCouplingExamples_SOURCES})
66 TARGET_LINK_LIBRARIES(TestMEDCouplingExamples medcoupling ${CPPUNIT_LIBRARIES} ${PLATFORM_LIBS})
67 ADD_TEST(TestMEDCouplingExamples TestMEDCouplingExamples)
68
69 INSTALL(TARGETS TestMEDCoupling TestMEDCouplingRemapper TestMEDCouplingExamples DESTINATION ${MEDCOUPLING_INSTALL_BINS})
70
71 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES UnitTestsResult)
72
73 # Application tests
74
75 SET(TEST_INSTALL_DIRECTORY ${MEDCOUPLING_INSTALL_SCRIPT_SCRIPTS}/test/MEDCoupling/MEDCoupling)
76 INSTALL(TARGETS TestMEDCoupling TestMEDCouplingRemapper TestMEDCouplingExamples DESTINATION ${TEST_INSTALL_DIRECTORY})
77
78 INSTALL(FILES CTestTestfileInstall.cmake
79         DESTINATION ${TEST_INSTALL_DIRECTORY}
80         RENAME CTestTestfile.cmake)