
* Clean up the CMake build system and improve the FindFFTW3 module. * Fixes for Linux build * Include winsock.h to get struct timeval * Couple more fixes for MSVC, also add new FindMath module * Update host build README for new CMake changes (esp. Windows) * Try to fix Travis OS X build error * Add docs about pthread-win32 * Whoops, AppVeyor caught a bug in FindFFTW where the includes not being found weren't generating a fatal error. * Travis rebuild bump * One more fix: replace hardcoded include paths with a PATH_SUFFIX to standard include paths * Invert Windows preprocessor flag so it's only needed when using a static build. This preserves compatibility with the previous system. * Fix copy-paste error * Update cmake modules from amber-cmake upstream, incorporate TryLinkLibrary into FindUSB1 * Fix missing include
50 lines
1.4 KiB
CMake
50 lines
1.4 KiB
CMake
# - Try to find the libusb library
|
|
# Once done this defines
|
|
#
|
|
# LIBUSB_FOUND - system has libusb
|
|
# LIBUSB_INCLUDE_DIR - the libusb include directory
|
|
# LIBUSB_LIBRARIES - Link these to use libusb
|
|
|
|
# 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.
|
|
|
|
|
|
if (LIBUSB_INCLUDE_DIR AND LIBUSB_LIBRARIES)
|
|
|
|
# in cache already
|
|
set(USB1_FIND_QUIETLY TRUE)
|
|
endif()
|
|
|
|
|
|
IF (NOT CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
# 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_LIBUSB libusb-1.0)
|
|
ENDIF()
|
|
|
|
set(LIBUSB_LIBRARY_NAME usb-1.0)
|
|
IF(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
|
set(LIBUSB_LIBRARY_NAME usb)
|
|
ENDIF()
|
|
|
|
FIND_PATH(LIBUSB_INCLUDE_DIR libusb.h
|
|
PATHS ${PC_LIBUSB_INCLUDEDIR} ${PC_LIBUSB_INCLUDE_DIRS}
|
|
PATH_SUFFIXES libusb-1.0)
|
|
|
|
FIND_LIBRARY(LIBUSB_LIBRARIES NAMES ${LIBUSB_LIBRARY_NAME}
|
|
PATHS ${PC_LIBUSB_LIBDIR} ${PC_LIBUSB_LIBRARY_DIRS})
|
|
|
|
try_link_library(LIBUSB1_WORKS
|
|
LANGUAGE C
|
|
FUNCTION libusb_init
|
|
LIBRARIES ${LIBUSB_LIBRARIES})
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(USB1 DEFAULT_MSG LIBUSB_LIBRARIES LIBUSB_INCLUDE_DIR LIBUSB1_WORKS)
|
|
|
|
MARK_AS_ADVANCED(LIBUSB_INCLUDE_DIR LIBUSB_LIBRARIES)
|
|
|