mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
69a13a12e2
This adds a USB passthrough setting to ConfigManager and everything needed for the UI to show and manage the whitelist properly.
11 lines
205 B
CMake
11 lines
205 B
CMake
set(SRCS Disassembler.cpp
|
|
UICommon.cpp
|
|
USBUtils.cpp)
|
|
|
|
set(LIBS common)
|
|
if(LIBUSB_FOUND)
|
|
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
|
|
endif()
|
|
|
|
add_dolphin_library(uicommon "${SRCS}" "${LIBS}")
|