~ubuntu-branches/ubuntu/wily/kwin/wily-proposed

« back to all changes in this revision

Viewing changes to cmake/modules/FindLibdrm.cmake

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-08-10 23:16:37 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20150810231637-5zb2tstjkez93hml
Tags: 4:5.3.95-0ubuntu1
new upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#.rst:
 
2
# FindLibdrm
 
3
# -------
 
4
#
 
5
# Try to find libdrm on a Unix system.
 
6
#
 
7
# This will define the following variables:
 
8
#
 
9
# ``Libdrm_FOUND``
 
10
#     True if (the requested version of) libdrm is available
 
11
# ``Libdrm_VERSION``
 
12
#     The version of libdrm
 
13
# ``Libdrm_LIBRARIES``
 
14
#     This can be passed to target_link_libraries() instead of the ``Libdrm::Libdrm``
 
15
#     target
 
16
# ``Libdrm_INCLUDE_DIRS``
 
17
#     This should be passed to target_include_directories() if the target is not
 
18
#     used for linking
 
19
# ``Libdrm_DEFINITIONS``
 
20
#     This should be passed to target_compile_options() if the target is not
 
21
#     used for linking
 
22
#
 
23
# If ``Libdrm_FOUND`` is TRUE, it will also define the following imported target:
 
24
#
 
25
# ``Libdrm::Libdrm``
 
26
#     The libdrm library
 
27
#
 
28
# In general we recommend using the imported target, as it is easier to use.
 
29
# Bear in mind, however, that if the target is in the link interface of an
 
30
# exported library, it must be made available by the package config file.
 
31
 
 
32
#=============================================================================
 
33
# Copyright 2014 Alex Merry <alex.merry@kde.org>
 
34
# Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>
 
35
#
 
36
# Redistribution and use in source and binary forms, with or without
 
37
# modification, are permitted provided that the following conditions
 
38
# are met:
 
39
#
 
40
# 1. Redistributions of source code must retain the copyright
 
41
#    notice, this list of conditions and the following disclaimer.
 
42
# 2. Redistributions in binary form must reproduce the copyright
 
43
#    notice, this list of conditions and the following disclaimer in the
 
44
#    documentation and/or other materials provided with the distribution.
 
45
# 3. The name of the author may not be used to endorse or promote products
 
46
#    derived from this software without specific prior written permission.
 
47
#
 
48
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 
49
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
50
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 
51
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 
52
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
53
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
54
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
55
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
56
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
57
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
58
#=============================================================================
 
59
 
 
60
if(CMAKE_VERSION VERSION_LESS 2.8.12)
 
61
    message(FATAL_ERROR "CMake 2.8.12 is required by FindLibdrm.cmake")
 
62
endif()
 
63
if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.12)
 
64
    message(AUTHOR_WARNING "Your project should require at least CMake 2.8.12 to use FindLibdrm.cmake")
 
65
endif()
 
66
 
 
67
if(NOT WIN32)
 
68
    # Use pkg-config to get the directories and then use these values
 
69
    # in the FIND_PATH() and FIND_LIBRARY() calls
 
70
    find_package(PkgConfig)
 
71
    pkg_check_modules(PKG_Libdrm QUIET libdrm)
 
72
 
 
73
    set(Libdrm_DEFINITIONS ${PKG_Libdrm_CFLAGS_OTHER})
 
74
    set(Libdrm_VERSION ${PKG_Libdrm_VERSION})
 
75
 
 
76
    find_path(Libdrm_INCLUDE_DIR
 
77
        NAMES
 
78
            xf86drm.h
 
79
        HINTS
 
80
            ${PKG_Libdrm_INCLUDE_DIRS}
 
81
    )
 
82
    find_library(Libdrm_LIBRARY
 
83
        NAMES
 
84
            drm
 
85
        HINTS
 
86
            ${PKG_Libdrm_LIBRARY_DIRS}
 
87
    )
 
88
 
 
89
    include(FindPackageHandleStandardArgs)
 
90
    find_package_handle_standard_args(Libdrm
 
91
        FOUND_VAR
 
92
            Libdrm_FOUND
 
93
        REQUIRED_VARS
 
94
            Libdrm_LIBRARY
 
95
            Libdrm_INCLUDE_DIR
 
96
        VERSION_VAR
 
97
            Libdrm_VERSION
 
98
    )
 
99
 
 
100
    if(Libdrm_FOUND AND NOT TARGET Libdrm::Libdrm)
 
101
        add_library(Libdrm::Libdrm UNKNOWN IMPORTED)
 
102
        set_target_properties(Libdrm::Libdrm PROPERTIES
 
103
            IMPORTED_LOCATION "${Libdrm_LIBRARY}"
 
104
            INTERFACE_COMPILE_OPTIONS "${Libdrm_DEFINITIONS}"
 
105
            INTERFACE_INCLUDE_DIRECTORIES "${Libdrm_INCLUDE_DIR}"
 
106
            INTERFACE_INCLUDE_DIRECTORIES "${Libdrm_INCLUDE_DIR}/libdrm"
 
107
        )
 
108
    endif()
 
109
 
 
110
    mark_as_advanced(Libdrm_LIBRARY Libdrm_INCLUDE_DIR)
 
111
 
 
112
    # compatibility variables
 
113
    set(Libdrm_LIBRARIES ${Libdrm_LIBRARY})
 
114
    set(Libdrm_INCLUDE_DIRS ${Libdrm_INCLUDE_DIR})
 
115
    set(Libdrm_VERSION_STRING ${Libdrm_VERSION})
 
116
 
 
117
else()
 
118
    message(STATUS "FindLibdrm.cmake cannot find libdrm on Windows systems.")
 
119
    set(Libdrm_FOUND FALSE)
 
120
endif()
 
121
 
 
122
include(FeatureSummary)
 
123
set_package_properties(Libdrm PROPERTIES
 
124
    URL "https://wiki.freedesktop.org/dri/"
 
125
    DESCRIPTION "Userspace interface to kernel DRM services."
 
126
)