mirror of
https://github.com/shadps4-emu/ext-SDL.git
synced 2024-11-25 02:59:41 +00:00
cmake: mark hidapi as disabled when not found
This commit is contained in:
parent
edfb00c25e
commit
19b13aab98
@ -1201,6 +1201,9 @@ macro(CheckHIDAPI)
|
||||
if(HIDAPI_ONLY_LIBUSB AND NOT HAVE_LIBUSB)
|
||||
set(HAVE_HIDAPI FALSE)
|
||||
endif()
|
||||
if(NOT HAVE_LIBUSB)
|
||||
set(HAVE_HIDAPI_LIBUSB FALSE)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(HAVE_HIDAPI)
|
||||
@ -1220,6 +1223,8 @@ macro(CheckHIDAPI)
|
||||
file(GLOB HIDAPI_JOYSTICK_SOURCES ${SDL2_SOURCE_DIR}/src/joystick/hidapi/*.c)
|
||||
list(APPEND SOURCE_FILES ${HIDAPI_JOYSTICK_SOURCES})
|
||||
endif()
|
||||
else()
|
||||
set(SDL_HIDAPI_DISABLED 0)
|
||||
endif()
|
||||
else()
|
||||
set(SDL_HIDAPI_DISABLED 1)
|
||||
|
Loading…
Reference in New Issue
Block a user