CMake: move modules from CMakeTests/ -> CMake/

The name "CMakeTests" is inaccurate and irregular.
This commit is contained in:
Michael Maltese
2017-02-07 22:51:47 -08:00
parent f621a6af43
commit 45d1f88ea7
22 changed files with 1 additions and 1 deletions

9
CMake/FindHIDAPI.cmake Normal file
View File

@ -0,0 +1,9 @@
find_path(HIDAPI_INCLUDE_DIR NAMES hidapi.h PATH_SUFFIXES hidapi)
find_library(HIDAPI_LIBRARY NAMES hidapi hidapi-hidraw hidapi-libusb)
set(HIDAPI_LIBRARIES ${HIDAPI_LIBRARY})
set(HIDAPI_INCLUDE_DIRS ${HIDAPI_INCLUDE_DIR})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(HIDAPI DEFAULT_MSG HIDAPI_LIBRARY HIDAPI_INCLUDE_DIR)
mark_as_advanced(HIDAPI_INCLUDE_DIR HIDAPI_LIBRARY)