Salome HOME
4193644cd9ae3235f0966f111c200d939f80e641
[tools/solverlab.git] / CDMATH / cmake_files / FindCPPUNIT.cmake
1 # Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License.
10 #
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # Lesser General Public License for more details.
15 #
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22
23 # ------
24
25 MESSAGE(STATUS "Check for cppunit ...")
26
27 # ------
28
29 IF(CPPUNIT_IS_MANDATORY STREQUAL 0)
30   SET(CPPUNIT_IS_MANDATORY 0)
31   SET(CPPUNIT_IS_OPTIONAL 1)
32 ENDIF(CPPUNIT_IS_MANDATORY STREQUAL 0)
33 IF(CPPUNIT_IS_OPTIONAL STREQUAL 0)
34   SET(CPPUNIT_IS_MANDATORY 1)
35   SET(CPPUNIT_IS_OPTIONAL 0)
36 ENDIF(CPPUNIT_IS_OPTIONAL STREQUAL 0)
37 IF(NOT CPPUNIT_IS_MANDATORY AND NOT CPPUNIT_IS_OPTIONAL)
38   SET(CPPUNIT_IS_MANDATORY 0)
39   SET(CPPUNIT_IS_OPTIONAL 1)
40 ENDIF(NOT CPPUNIT_IS_MANDATORY AND NOT CPPUNIT_IS_OPTIONAL)
41
42 # ------
43
44 SET(CPPUNIT_STATUS 1)
45 IF(WITHOUT_CPPUNIT OR WITH_CPPUNIT STREQUAL 0)
46   SET(CPPUNIT_STATUS 0)
47   MESSAGE(STATUS "cppunit disabled from command line.")
48 ENDIF(WITHOUT_CPPUNIT OR WITH_CPPUNIT STREQUAL 0)
49
50 # ------
51
52 IF(CPPUNIT_STATUS)
53   IF(WITH_CPPUNIT)
54     SET(CPPUNIT_ROOT_USER ${WITH_CPPUNIT})
55   ELSE(WITH_CPPUNIT)
56     SET(CPPUNIT_ROOT_USER $ENV{CPPUNIT_ROOT})
57   ENDIF(WITH_CPPUNIT)
58 ENDIF(CPPUNIT_STATUS)
59
60 # -----
61
62 IF(CPPUNIT_STATUS)
63   IF(CPPUNIT_ROOT_USER)
64     SET(CPPUNIT_FIND_PATHS_OPTION NO_DEFAULT_PATH)
65   ELSE(CPPUNIT_ROOT_USER)
66     SET(CPPUNIT_FIND_PATHS_OPTION)
67   ENDIF(CPPUNIT_ROOT_USER)
68 ENDIF(CPPUNIT_STATUS)
69
70 # -----
71
72 IF(CPPUNIT_STATUS)
73   IF(CPPUNIT_ROOT_USER)
74     SET(CPPUNIT_INCLUDE_PATHS ${CPPUNIT_ROOT_USER} ${CPPUNIT_ROOT_USER}/include)
75   ELSE(CPPUNIT_ROOT_USER)
76     SET(CPPUNIT_INCLUDE_PATHS)
77   ENDIF(CPPUNIT_ROOT_USER)
78   SET(CPPUNIT_INCLUDE_TO_FIND cppunit/extensions/HelperMacros.h)
79   FIND_PATH(CPPUNIT_INCLUDE_DIR ${CPPUNIT_INCLUDE_TO_FIND} PATHS ${CPPUNIT_INCLUDE_PATHS} ${CPPUNIT_FIND_PATHS_OPTION})
80   IF(CPPUNIT_INCLUDE_DIR)
81     IF(CPPUNIT_ROOT_USER)
82       SET(CPPUNIT_INCLUDES -I${CPPUNIT_INCLUDE_DIR})# to be removed
83       IF(${CPPUNIT_INCLUDE_DIR} STREQUAL /usr/include)
84         SET(CPPUNIT_INCLUDE_DIRS)
85       ELSE(${CPPUNIT_INCLUDE_DIR} STREQUAL /usr/include)
86         SET(CPPUNIT_INCLUDE_DIRS ${CPPUNIT_INCLUDE_DIR})
87       ENDIF(${CPPUNIT_INCLUDE_DIR} STREQUAL /usr/include)
88     ENDIF(CPPUNIT_ROOT_USER)
89     MESSAGE(STATUS "${CPPUNIT_INCLUDE_TO_FIND} found in ${CPPUNIT_INCLUDE_DIR}")
90   ELSE(CPPUNIT_INCLUDE_DIR)
91     SET(CPPUNIT_STATUS 0)
92     IF(CPPUNIT_ROOT_USER)
93       MESSAGE(STATUS "${CPPUNIT_INCLUDE_TO_FIND} not found in ${CPPUNIT_INCLUDE_PATHS}, check your CPPUNIT installation.")
94     ELSE(CPPUNIT_ROOT_USER)
95       MESSAGE(STATUS "${CPPUNIT_INCLUDE_TO_FIND} not found on system, try to use WITH_CPPUNIT option or CPPUNIT_ROOT environment variable.")
96     ENDIF(CPPUNIT_ROOT_USER)
97   ENDIF(CPPUNIT_INCLUDE_DIR)
98 ENDIF(CPPUNIT_STATUS)
99
100 # ----
101
102 IF(CPPUNIT_STATUS)
103   IF(CPPUNIT_ROOT_USER)
104     SET(CPPUNIT_LIB_PATHS ${CPPUNIT_ROOT_USER}/lib)
105   ELSE(CPPUNIT_ROOT_USER)
106     SET(CPPUNIT_LIB_PATHS)
107   ENDIF(CPPUNIT_ROOT_USER)
108 ENDIF(CPPUNIT_STATUS)
109
110 IF(CPPUNIT_STATUS)
111   IF(WINDOWS)
112     IF(CMAKE_BUILD_TYPE STREQUAL Debug)
113       FIND_LIBRARY(CPPUNIT_LIB cppunitd_dll PATHS ${CPPUNIT_LIB_PATHS} ${CPPUNIT_FIND_PATHS_OPTION})
114     ELSE(CMAKE_BUILD_TYPE STREQUAL Debug)
115       FIND_LIBRARY(CPPUNIT_LIB cppunit_dll PATHS ${CPPUNIT_LIB_PATHS} ${CPPUNIT_FIND_PATHS_OPTION})
116     ENDIF(CMAKE_BUILD_TYPE STREQUAL Debug)
117   ELSE(WINDOWS)
118     FIND_LIBRARY(CPPUNIT_LIB cppunit PATHS ${CPPUNIT_LIB_PATHS} ${CPPUNIT_FIND_PATHS_OPTION})
119   ENDIF(WINDOWS)
120   SET(CPPUNIT_LIBS)
121   IF(CPPUNIT_LIB)
122     SET(CPPUNIT_LIBS ${CPPUNIT_LIBS} ${CPPUNIT_LIB})
123     MESSAGE(STATUS "cppunit lib found: ${CPPUNIT_LIB}")
124   ELSE(CPPUNIT_LIB)
125     SET(CPPUNIT_STATUS 0)
126     IF(CPPUNIT_ROOT_USER)
127       MESSAGE(STATUS "cppunit lib not found in ${CPPUNIT_LIB_PATHS}, check your CPPUNIT installation.")
128     ELSE(CPPUNIT_ROOT_USER)
129       MESSAGE(STATUS "cppunit lib not found on system, try to use WITH_CPPUNIT option or CPPUNIT_ROOT environment variable.")
130     ENDIF(CPPUNIT_ROOT_USER)
131   ENDIF(CPPUNIT_LIB)
132 ENDIF(CPPUNIT_STATUS)
133
134 # ----
135
136 IF(CPPUNIT_STATUS)
137   SET(CPPUNIT_IS_OK 1)
138   SET(CPPUNIT_DEFINITIONS)
139   IF(WINDOWS)
140     SET(CPPUNIT_INCLUDES ${CPPUNIT_INCLUDES} -DCPPUNIT_DLL)
141     SET(CPPUNIT_DEFINITIONS "-DCPPUNIT_DLL")
142   ENDIF(WINDOWS)
143 ELSE(CPPUNIT_STATUS)
144   IF(CPPUNIT_IS_MANDATORY)
145     MESSAGE(FATAL_ERROR "cppunit not found ... mandatory ... abort")
146   ELSE(CPPUNIT_IS_MANDATORY)
147     MESSAGE(STATUS "cppunit not found ... optional ... disabled")
148   ENDIF(CPPUNIT_IS_MANDATORY)
149 ENDIF(CPPUNIT_STATUS)
150
151 # ------