1 # - 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 Hglund <fredrik (a] kde.org> 10 # Copyright (c) 2008 Helio Chissini de Castro, <helio (a] kde.org> 11 # Copyright (c) 2007 Matthias Kretz, <kretz (a] 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 16 IF (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) 31 ENDIF (NOT WIN32) 32 33