blob: 3fa2668629d99087d02f2b25165a0b284bd284c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# - Try to find Cups
# Once done this will define
#
# CUPS_FOUND - system has Cups
# CUPS_INCLUDE_DIR - the Cups include directory
# CUPS_LIBRARY - Link these to use OpenGL and GLU
# CUPS_DEFINITIONS - Compiler switches required for using Cups
#
FIND_PATH(CUPS_INCLUDE_DIR cups/cups.h
/usr/include
/usr/local/include
)
FIND_LIBRARY(CUPS_LIBRARY NAMES cups
PATHS
/usr/lib
/usr/local/lib
)
IF(CUPS_INCLUDE_DIR AND CUPS_LIBRARY)
SET(CUPS_FOUND TRUE)
ENDIF(CUPS_INCLUDE_DIR AND CUPS_LIBRARY)
IF(CUPS_FOUND)
IF(NOT Cups_FIND_QUIETLY)
MESSAGE(STATUS "Found Cups: ${CUPS_LIBRARY}")
ENDIF(NOT Cups_FIND_QUIETLY)
ELSE(CUPS_FOUND)
IF(Cups_FIND_REQUIRED)
MESSAGE(FATAL_ERROR "Could not find Cups")
ENDIF(Cups_FIND_REQUIRED)
ENDIF(CUPS_FOUND)
|