summaryrefslogtreecommitdiff
path: root/CMake/FindXLib.cmake
blob: 5047a0f3abf7647a63c52a47d3578b8d4bd0a798 (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
#
# Try to find X library and include path.
# Once done this will define
#
# XLIB_FOUND
# XLIB_INCLUDE_PATH
# XLIB_LIBRARY
# 

FIND_PATH(XLIB_INCLUDE_PATH X11/Xlib.h
  /usr/include
  /usr/local/include
  /sw/include
  /opt/local/include
  DOC "The directory where X11/Xlib.h resides")
FIND_LIBRARY(XLIB_LIBRARY
  NAMES XLIB X11
  PATHS
  /usr/lib64
  /usr/lib
  /usr/local/lib64
  /usr/local/lib
  /sw/lib
  /opt/local/lib
  DOC "The XLIB library")

IF(XLIB_INCLUDE_PATH)
  SET(XLIB_FOUND 1 CACHE STRING "Set to 1 if XLIB is found, 0 otherwise")
ELSE(XLIB_INCLUDE_PATH)
  SET(XLIB_FOUND 0 CACHE STRING "Set to 1 if XLIB is found, 0 otherwise")
ENDIF(XLIB_INCLUDE_PATH)

MARK_AS_ADVANCED(XLIB_FOUND)