blob: 956bf89d7715fdc9c25354ea693c90c47053f31c [file] [log] [blame]
FslNopperddf1e452015-12-01 13:17:34 +01001# - Try to find libX11-xcb
2# Once done this will define
3#
4# X11_XCB_FOUND - system has libX11-xcb
5# X11_XCB_LIBRARIES - Link these to use libX11-xcb
6# X11_XCB_INCLUDE_DIR - the libX11-xcb include dir
7# X11_XCB_DEFINITIONS - compiler switches required for using libX11-xcb
8
9# Copyright (c) 2011 Fredrik Höglund <fredrik@kde.org>
10# Copyright (c) 2008 Helio Chissini de Castro, <helio@kde.org>
11# Copyright (c) 2007 Matthias Kretz, <kretz@kde.org>
12#
13# Redistribution and use is allowed according to the terms of the BSD license.
14# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
15
16IF (NOT WIN32)
17 # use pkg-config to get the directories and then use these values
18 # in the FIND_PATH() and FIND_LIBRARY() calls
19 FIND_PACKAGE(PkgConfig)
20 PKG_CHECK_MODULES(PKG_X11_XCB QUIET x11-xcb)
21
22 SET(X11_XCB_DEFINITIONS ${PKG_X11_XCB_CFLAGS})
23
24 FIND_PATH(X11_XCB_INCLUDE_DIR NAMES X11/Xlib-xcb.h HINTS ${PKG_X11_XCB_INCLUDE_DIRS})
25 FIND_LIBRARY(X11_XCB_LIBRARIES NAMES X11-xcb HINTS ${PKG_X11_XCB_LIBRARY_DIRS})
26
27 include(FindPackageHandleStandardArgs)
28 FIND_PACKAGE_HANDLE_STANDARD_ARGS(X11_XCB DEFAULT_MSG X11_XCB_LIBRARIES X11_XCB_INCLUDE_DIR)
29
30 MARK_AS_ADVANCED(X11_XCB_INCLUDE_DIR X11_XCB_LIBRARIES)
31ENDIF (NOT WIN32)
32