diff options
author | Scott Anderson <ascent12@hotmail.com> | 2017-07-11 00:20:31 +1200 |
---|---|---|
committer | Scott Anderson <ascent12@hotmail.com> | 2017-07-11 00:28:56 +1200 |
commit | 924bf0f669cde20b414cd9f12e72750ca5fdbbaf (patch) | |
tree | eedb833983f05b26f09236c7a9bd74d908d3a354 /CMake/FindDRM.cmake | |
parent | 8189c64d7f07a756abf5a6189719f02b2f1af967 (diff) |
Changed build system to meson
Diffstat (limited to 'CMake/FindDRM.cmake')
-rw-r--r-- | CMake/FindDRM.cmake | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/CMake/FindDRM.cmake b/CMake/FindDRM.cmake deleted file mode 100644 index 383647cd..00000000 --- a/CMake/FindDRM.cmake +++ /dev/null @@ -1,40 +0,0 @@ -#.rst: -# FindDRM -# ------- -# -# Find DRM library -# -# Try to find DRM library on UNIX systems. The following values are defined -# -# :: -# -# DRM_FOUND - True if drm is available -# DRM_INCLUDE_DIRS - Include directories for drm -# DRM_LIBRARIES - List of libraries for drm -# DRM_DEFINITIONS - List of definitions for drm -# -#============================================================================= -# Copyright (c) 2015 Jari Vetoniemi -# -# Distributed under the OSI-approved BSD License (the "License"); -# -# This software is distributed WITHOUT ANY WARRANTY; without even the -# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# See the License for more information. -#============================================================================= - -include(FeatureSummary) -set_package_properties(DRM PROPERTIES - URL "http://dri.freedesktop.org/" - DESCRIPTION "Kernel module that gives direct hardware access to DRI clients") - -find_package(PkgConfig) -pkg_check_modules(PC_DRM QUIET libdrm) -find_library(DRM_LIBRARIES NAMES drm HINTS ${PC_DRM_LIBRARY_DIRS}) -find_path(DRM_INCLUDE_DIRS NAMES drm.h PATH_SUFFIXES libdrm drm HINTS ${PC_DRM_INCLUDE_DIRS}) - -set(DRM_DEFINITIONS ${PC_DRM_CFLAGS_OTHER}) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(DRM DEFAULT_MSG DRM_INCLUDE_DIRS DRM_LIBRARIES) -mark_as_advanced(DRM_INCLUDE_DIRS DRM_LIBRARIES DRM_DEFINITIONS) |