dolphin/Source/Core/UICommon/CMakeLists.txt
Léo Lam 69a13a12e2 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.
2017-02-05 11:36:46 +01:00

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