mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00

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}")
|