Salome HOME
34b1210fafe1d560fa6549f4dff634dcdf01a255
[tools/configuration.git] / cmake / FindSalomeLibXml2.cmake
1 # Copyright (C) 2013-2021  CEA/DEN, EDF R&D, OPEN CASCADE
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 # LibXml2 detection for SALOME
21 #
22 #  !! Please read the generic detection procedure in SalomeMacros.cmake !!
23 #
24 IF(WIN32)
25   SALOME_FIND_PACKAGE_AND_DETECT_CONFLICTS(LibXml2 LIBXML2_INCLUDE_DIR 1)
26 ELSE()
27   SALOME_FIND_PACKAGE_AND_DETECT_CONFLICTS(LibXml2 LIBXML2_INCLUDE_DIR 2)
28 ENDIF()
29 #MARK_AS_ADVANCED()
30
31 IF(NOT LIBXML2_INCLUDE_DIR)
32   SET(LIBXML2_INCLUDE_DIR ${LIBXML2_INCLUDE_DIRS})
33 ENDIF()
34
35 IF(LIBXML2_FOUND) 
36   SALOME_ACCUMULATE_HEADERS(LIBXML2_INCLUDE_DIR)
37   SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${LIBXML2_LIBRARIES})
38   IF(WIN32 AND LIBXML2_XMLLINT_EXECUTABLE)
39     GET_FILENAME_COMPONENT(LIBXML2_BIN_DIR ${LIBXML2_XMLLINT_EXECUTABLE} DIRECTORY)
40     SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${LIBXML2_BIN_DIR})
41   ENDIF()
42 ENDIF()