-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add prototype Logitech gaming LCD support
- Loading branch information
Showing
4 changed files
with
121 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# - Try to find LogitechLCDLib | ||
# Once done this will define | ||
# LOGITECHLCDLIB_FOUND - System has LogitechLCDLib | ||
# LOGITECHLCDLIB_INCLUDE_DIRS - The LogitechLCDLib include directory | ||
# LOGITECHLCDLIB_LIBRARIES - Link these to use LogitechLCDLib | ||
|
||
find_path(LOGITECHLCDLIB_INCLUDE_DIR LogitechLCDLib.h) | ||
|
||
find_library(LOGITECHLCDLIB_LIBRARY LogitechLCDLib.lib) | ||
|
||
set(LOGITECHLCDLIB_LIBRARIES ${LOGITECHLCDLIB_LIBRARY}) | ||
set(LOGITECHLCDLIB_INCLUDE_DIRS ${LOGITECHLCDLIB_INCLUDE_DIR}) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
# Handle the QUIETLY and REQUIRED arguments and set LOGITECHLCDLIB_FOUND to TRUE | ||
# if all listed variables are TRUE | ||
find_package_handle_standard_args(LOGITECHLCDLIB DEFAULT_MSG LOGITECHLCDLIB_LIBRARY LOGITECHLCDLIB_INCLUDE_DIR) | ||
|
||
mark_as_advanced(CLEAR LOGITECHLCDLIB_LIBRARY LOGITECHLCDLIB_INCLUDE_DIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters