Code

Cmake: More Dependency work, added new files
[inkscape.git] / CMakeScripts / FindXSLT.cmake
1 # - Try to find XSLT
2 # Once done this will define
3 #
4 #  XSLT_FOUND - system has XSLT
5 #  XSLT_INCLUDE_DIRS - the XSLT include directory
6 #  XSLT_LIBRARIES - Link these to use XSLT
7 #  XSLT_DEFINITIONS - Compiler switches required for using XSLT
8 #
9 #  Copyright (c) 2008 Joshua L. Blocher <verbalshadow@gmail.com>
10 #
11 #  Redistribution and use is allowed according to the terms of the New
12 #  BSD license.
13 #  For details see the accompanying COPYING-CMAKE-SCRIPTS file.
14 #
17 if (XSLT_LIBRARIES AND XSLT_INCLUDE_DIRS)
18   # in cache already
19   set(XSLT_FOUND TRUE)
20 else (XSLT_LIBRARIES AND XSLT_INCLUDE_DIRS)
21   # use pkg-config to get the directories and then use these values
22   # in the FIND_PATH() and FIND_LIBRARY() calls
23   if (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
24     include(UsePkgConfig)
25     pkgconfig(libxslt _XSLT_INCLUDEDIR _XSLT_LIBDIR _XSLT_LDFLAGS _XSLT_CFLAGS)
26   else (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
27     find_package(PkgConfig)
28     if (PKG_CONFIG_FOUND)
29       pkg_check_modules(_XSLT libxslt)
30     endif (PKG_CONFIG_FOUND)
31   endif (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
32   find_path(XSLT_INCLUDE_DIR
33     NAMES
34       xslt.h
35     PATHS
36       ${_XSLT_INCLUDEDIR}
37       /usr/include
38       /usr/local/include
39       /opt/local/include
40       /sw/include
41     PATH_SUFFIXES
42       libxslt
43   )
45   find_library(XSLT_LIBRARY
46     NAMES
47       xslt
48     PATHS
49       ${_XSLT_LIBDIR}
50       /usr/lib
51       /usr/local/lib
52       /opt/local/lib
53       /sw/lib
54   )
56   if (XSLT_LIBRARY)
57     set(XSLT_FOUND TRUE)
58   endif (XSLT_LIBRARY)
60   set(XSLT_INCLUDE_DIRS
61     ${XSLT_INCLUDE_DIR}
62   )
64   if (XSLT_FOUND)
65     set(XSLT_LIBRARIES
66       ${XSLT_LIBRARIES}
67       ${XSLT_LIBRARY}
68     )
69   endif (XSLT_FOUND)
71   if (XSLT_INCLUDE_DIRS AND XSLT_LIBRARIES)
72      set(XSLT_FOUND TRUE)
73   endif (XSLT_INCLUDE_DIRS AND XSLT_LIBRARIES)
75   if (XSLT_FOUND)
76     if (NOT XSLT_FIND_QUIETLY)
77       message(STATUS "Found XSLT: ${XSLT_LIBRARIES}")
78     endif (NOT XSLT_FIND_QUIETLY)
79   else (XSLT_FOUND)
80     if (XSLT_FIND_REQUIRED)
81       message(FATAL_ERROR "Could not find XSLT")
82     endif (XSLT_FIND_REQUIRED)
83   endif (XSLT_FOUND)
85   # show the XSLT_INCLUDE_DIRS and XSLT_LIBRARIES variables only in the advanced view
86   mark_as_advanced(XSLT_INCLUDE_DIRS XSLT_LIBRARIES)
88 endif (XSLT_LIBRARIES AND XSLT_INCLUDE_DIRS)