Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Raptor Engineering Public Development
dsview
Commits
99920715
Commit
99920715
authored
10 years ago
by
DreamSourceLab
Browse files
Options
Download
Email Patches
Plain Diff
v0.4 releasae
parent
9eb36b33
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
64 additions
and
0 deletions
+64
-0
DSLogic-gui/CMake/Findlibusb-1.0.cmake
DSLogic-gui/CMake/Findlibusb-1.0.cmake
+64
-0
No files found.
DSLogic-gui/CMake/Findlibusb-1.0.cmake
0 → 100644
View file @
99920715
#
# LIBUSB_1_FOUND - system has libusb
# LIBUSB_1_INCLUDE_DIRS - the libusb include directory
# LIBUSB_1_LIBRARIES - Link these to use libusb
# LIBUSB_1_DEFINITIONS - Compiler switches required for using libusb
#
# Adapted from cmake-modules Google Code project
#
# Copyright (c) 2006 Andreas Schneider <mail@cynapses.org>
#
# (Changes for libusb) Copyright (c) 2008 Kyle Machulis <kyle@nonpolynomial.com>
#
# Redistribution and use is allowed according to the terms of the New BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
if
(
LIBUSB_1_LIBRARIES AND LIBUSB_1_INCLUDE_DIRS
)
# in cache already
set
(
LIBUSB_FOUND TRUE
)
else
(
LIBUSB_1_LIBRARIES AND LIBUSB_1_INCLUDE_DIRS
)
find_path
(
LIBUSB_1_INCLUDE_DIR
NAMES
libusb-1.0/libusb.h
PATHS
/usr/local/include
PATH_SUFFIXES
libusb-1.0
)
find_library
(
LIBUSB_1_LIBRARY
NAMES
usb-1.0
PATHS
/usr/local/lib
)
set
(
LIBUSB_1_INCLUDE_DIRS
${
LIBUSB_1_INCLUDE_DIR
}
)
set
(
LIBUSB_1_LIBRARIES
${
LIBUSB_1_LIBRARY
}
)
if
(
LIBUSB_1_INCLUDE_DIRS AND LIBUSB_1_LIBRARIES
)
set
(
LIBUSB_1_FOUND TRUE
)
endif
(
LIBUSB_1_INCLUDE_DIRS AND LIBUSB_1_LIBRARIES
)
if
(
LIBUSB_1_FOUND
)
if
(
NOT libusb_1_FIND_QUIETLY
)
message
(
STATUS
"Found libusb-1.0:"
)
message
(
STATUS
" - Includes:
${
LIBUSB_1_INCLUDE_DIRS
}
"
)
message
(
STATUS
" - Libraries:
${
LIBUSB_1_LIBRARIES
}
"
)
endif
(
NOT libusb_1_FIND_QUIETLY
)
else
(
LIBUSB_1_FOUND
)
if
(
libusb_1_FIND_REQUIRED
)
message
(
FATAL_ERROR
"Could not find libusb"
)
endif
(
libusb_1_FIND_REQUIRED
)
endif
(
LIBUSB_1_FOUND
)
# show the LIBUSB_1_INCLUDE_DIRS and LIBUSB_1_LIBRARIES variables only in the advanced view
mark_as_advanced
(
LIBUSB_1_INCLUDE_DIRS LIBUSB_1_LIBRARIES
)
endif
(
LIBUSB_1_LIBRARIES AND LIBUSB_1_INCLUDE_DIRS
)
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment