-
-
Notifications
You must be signed in to change notification settings - Fork 401
/
Copy pathFindLibudev.cmake
78 lines (64 loc) · 1.54 KB
/
FindLibudev.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Copyright (C) 2001-2024 Mixxx Development Team
# Distributed under the GNU General Public Licence (GPL) version 2 or any later
# later version. See the LICENSE file for details.
#
# Modified by Hyperion Project
#
#[=======================================================================[.rst:
FindLibudev
--------
Finds the libudev (userspace device manager) library.
Imported Targets
^^^^^^^^^^^^^^^^
This module provides the following imported targets, if found:
``Libudev``
The libudev library
Result Variables
^^^^^^^^^^^^^^^^
This will define the following variables:
``Libudev_FOUND``
True if the system has the libudev library.
#]=======================================================================]
find_package(PkgConfig QUIET)
if(PkgConfig_FOUND)
pkg_check_modules(PC_Libudev QUIET libudev)
endif()
find_path(Libudev_INCLUDE_DIR
NAMES
libudev.h
PATHS
/usr
/usr/local
HINTS
${PC_Libudev_INCLUDE_DIRS}
PATH_SUFFIXES
include
)
find_library(Libudev_LIBRARY
NAMES
udev
libudev
PATHS
/usr
/usr/local
HINTS
${PC_Libudev_LIBRARY_DIRS}
PATH_SUFFIXES
lib
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
Libudev
REQUIRED_VARS Libudev_LIBRARY Libudev_INCLUDE_DIR
VERSION_VAR Libudev_VERSION
)
mark_as_advanced(Libudev_INCLUDE_DIR Libudev_LIBRARY)
if(Libudev_FOUND)
if(NOT TARGET Libudev)
add_library(Libudev UNKNOWN IMPORTED)
set_target_properties(Libudev PROPERTIES
IMPORTED_LOCATION "${Libudev_LIBRARY}"
INTERFACE_INCLUDE_DIRECTORIES "${Libudev_INCLUDE_DIR}"
)
endif()
endif ()