Code

Filters. Custom predefined filters update and new ABC filters.
[inkscape.git] / CMakeScripts / FindLCMS.cmake
1 # - Try to find LCMS
2 # Once done this will define
3 #
4 #  LCMS_FOUND - system has LCMS
5 #  LCMS_INCLUDE_DIRS - the LCMS include directory
6 #  LCMS_LIBRARIES - Link these to use LCMS
7 #  LCMS_DEFINITIONS - Compiler switches required for using LCMS
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 (LCMS_LIBRARIES AND LCMS_INCLUDE_DIRS)
18   # in cache already
19   set(LCMS_FOUND TRUE)
20 else (LCMS_LIBRARIES AND LCMS_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(lcms _LCMS_INCLUDEDIR _LCMS_LIBDIR _LCMS_LDFLAGS _LCMS_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(_LCMS lcms)
30     endif (PKG_CONFIG_FOUND)
31   endif (${CMAKE_MAJOR_VERSION} EQUAL 2 AND ${CMAKE_MINOR_VERSION} EQUAL 4)
32   find_path(LCMS_INCLUDE_DIR
33     NAMES
34       lcms.h
35     PATHS
36       ${_LCMS_INCLUDEDIR}
37       /usr/include
38       /usr/local/include
39       /opt/local/include
40       /sw/include
41       $ENV{DEVLIBS_PATH}//include//
42     PATH_SUFFIXES
43       lcms
44   )
46   find_library(LCMS_LIBRARY
47     NAMES
48       lcms
49     PATHS
50       ${_LCMS_LIBDIR}
51       /usr/lib
52       /usr/local/lib
53       /opt/local/lib
54       /sw/lib
55   )
57   if (LCMS_LIBRARY)
58     set(LCMS_FOUND TRUE)
59   endif (LCMS_LIBRARY)
61   set(LCMS_INCLUDE_DIRS
62     ${LCMS_INCLUDE_DIR}
63   )
65   if (LCMS_FOUND)
66     set(LCMS_LIBRARIES
67       ${LCMS_LIBRARIES}
68       ${LCMS_LIBRARY}
69     )
70   endif (LCMS_FOUND)
72   if (LCMS_INCLUDE_DIRS AND LCMS_LIBRARIES)
73      set(LCMS_FOUND TRUE)
74   endif (LCMS_INCLUDE_DIRS AND LCMS_LIBRARIES)
76   if (LCMS_FOUND)
77     if (NOT LCMS_FIND_QUIETLY)
78       message(STATUS "Found LCMS: ${LCMS_LIBRARIES}")
79     endif (NOT LCMS_FIND_QUIETLY)
80   else (LCMS_FOUND)
81     if (LCMS_FIND_REQUIRED)
82       message(FATAL_ERROR "Could not find LCMS")
83     endif (LCMS_FIND_REQUIRED)
84   endif (LCMS_FOUND)
86   # show the LCMS_INCLUDE_DIRS and LCMS_LIBRARIES variables only in the advanced view
87   mark_as_advanced(LCMS_INCLUDE_DIRS LCMS_LIBRARIES)
89 endif (LCMS_LIBRARIES AND LCMS_INCLUDE_DIRS)