diff options
author | Christophe Giboudeaux <christophe@krop.fr> | 2021-03-29 20:28:58 +0200 |
---|---|---|
committer | Christophe Giboudeaux <christophe@krop.fr> | 2021-04-06 19:59:17 +0000 |
commit | 272352969834598cfd20f3e8b15916aa3ccebbbb (patch) | |
tree | d0d831203f0816ee2d4edecb526cdbdec64ea3d4 /attic/modules/FindLibUSB1.cmake | |
parent | d88db6a1469bdcb48e64f265d35a6f7867767b54 (diff) | |
download | extra-cmake-modules-272352969834598cfd20f3e8b15916aa3ccebbbb.tar.gz extra-cmake-modules-272352969834598cfd20f3e8b15916aa3ccebbbb.tar.bz2 |
Clean ECM's attic
Diffstat (limited to 'attic/modules/FindLibUSB1.cmake')
-rw-r--r-- | attic/modules/FindLibUSB1.cmake | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/attic/modules/FindLibUSB1.cmake b/attic/modules/FindLibUSB1.cmake deleted file mode 100644 index eba47115..00000000 --- a/attic/modules/FindLibUSB1.cmake +++ /dev/null @@ -1,37 +0,0 @@ -# - Try to find the libusb-1.0 library -# Once done this defines -# -# LIBUSB1_FOUND - system has libusb-1.0 -# LibUSB1_INCLUDE_DIRS - the libusb-1.0 include directory -# LibUSB1_LIBRARIES - Link these to use libusb-1.0 - -# Copyright (c) 2011, 2013 Yury Kudryashov, <urkud@ya.ru> -# Based on FindUSB.cmake which is: -# Copyright (c) 2006, 2008 Laurent Montel, <montel@kde.org> -# -# Redistribution and use is allowed according to the terms of the BSD license. -# For details see the accompanying COPYING-CMAKE-SCRIPTS file. - -# use pkg-config to get the directories and then use these values -# in the FIND_PATH() and FIND_LIBRARY() calls -find_package(PkgConfig) -pkg_check_modules(PC_LibUSB1 QUIET libusb-1.0) - -find_path(LibUSB1_TOP_INCLUDE_DIR libusb-1.0/libusb.h - HINTS ${PC_LibUSB1_INCLUDEDIR}) - -set(LibUSB1_INCLUDE_DIRS ${LibUSB1_TOP_INCLUDE_DIR}/libusb-1.0) - -find_library(LibUSB1_LIBRARY NAMES usb-1.0 - HINTS ${PC_LibUSB1_LIBDIR} ${PC_LibUSB1_LIBRARY_DIRS}) - -set(LibUSB1_LIBRARIES ${LibUSB1_LIBRARY}) - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(LibUSB1 DEFAULT_MSG LibUSB1_LIBRARIES LibUSB1_INCLUDE_DIRS) - -include(FeatureSummary) -set_package_properties(LibUSB1 PROPERTIES URL http://www.libusb.org/ - DESCRIPTION "A library that provides uniform API to access USB devices on many OSes") - -mark_as_advanced(LibUSB1_TOP_INCLUDE_DIR LibUSB1_LIBRARY) |