Add USB passthrough setting and USBUtils

This adds a USB passthrough setting to ConfigManager and everything
needed for the UI to show and manage the whitelist properly.
This commit is contained in:
Léo Lam
2016-11-11 01:33:52 +01:00
parent e4d20647d4
commit 69a13a12e2
7 changed files with 161 additions and 1 deletions

View File

@ -1,6 +1,10 @@
set(SRCS Disassembler.cpp
UICommon.cpp)
UICommon.cpp
USBUtils.cpp)
set(LIBS common)
if(LIBUSB_FOUND)
set(LIBS ${LIBS} ${LIBUSB_LIBRARIES})
endif()
add_dolphin_library(uicommon "${SRCS}" "${LIBS}")