From 6a33e1e3cddac31b762e4376e29c03ccf8f92107 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 4 Aug 2015 21:02:46 -0400 Subject: Initial commit --- CMake/FindWLC.cmake | 20 ++++++++++++++++++++ CMake/FindXKBCommon.cmake | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 CMake/FindWLC.cmake create mode 100644 CMake/FindXKBCommon.cmake (limited to 'CMake') diff --git a/CMake/FindWLC.cmake b/CMake/FindWLC.cmake new file mode 100644 index 00000000..15b26ce7 --- /dev/null +++ b/CMake/FindWLC.cmake @@ -0,0 +1,20 @@ +# - Find wlc +# Find the wlc libraries +# +# This module defines the following variables: +# WLC_FOUND - True if wlc is found +# WLC_LIBRARIES - wlc libraries +# WLC_INCLUDE_DIRS - wlc include directories +# WLC_DEFINITIONS - Compiler switches required for using wlc +# + +find_package(PkgConfig) +pkg_check_modules(PC_WLC QUIET wlc) +find_path(WLC_INCLUDE_DIRS NAMES wlc/wlc.h HINTS ${PC_WLC_INCLUDE_DIRS}) +find_library(WLC_LIBRARIES NAMES wlc HINTS ${PC_WLC_LIBRARY_DIRS}) + +set(WLC_DEFINITIONS ${PC_WLC_CFLAGS_OTHER}) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(wlc DEFAULT_MSG WLC_LIBRARIES WLC_INCLUDE_DIRS) +mark_as_advanced(WLC_LIBRARIES WLC_INCLUDE_DIRS) diff --git a/CMake/FindXKBCommon.cmake b/CMake/FindXKBCommon.cmake new file mode 100644 index 00000000..30ac503a --- /dev/null +++ b/CMake/FindXKBCommon.cmake @@ -0,0 +1,19 @@ +# - Find XKBCommon +# Once done, this will define +# +# XKBCOMMON_FOUND - System has XKBCommon +# XKBCOMMON_INCLUDE_DIRS - The XKBCommon include directories +# XKBCOMMON_LIBRARIES - The libraries needed to use XKBCommon +# XKBCOMMON_DEFINITIONS - Compiler switches required for using XKBCommon + +find_package(PkgConfig) +pkg_check_modules(PC_XKBCOMMON QUIET xkbcommon) +find_path(XKBCOMMON_INCLUDE_DIRS NAMES xkbcommon/xkbcommon.h HINTS ${PC_XKBCOMMON_INCLUDE_DIRS}) +find_library(XKBCOMMON_LIBRARIES NAMES xkbcommon HINTS ${PC_XKBCOMMON_LIBRARY_DIRS}) + +set(XKBCOMMON_DEFINITIONS ${PC_XKBCOMMON_CFLAGS_OTHER}) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(XKBCOMMON DEFAULT_MSG XKBCOMMON_LIBRARIES XKBCOMMON_INCLUDE_DIRS) +mark_as_advanced(XKBCOMMON_LIBRARIES XKBCOMMON_INCLUDE_DIRS) + -- cgit v1.2.3-70-g09d2