Implement support for emulating Rock Band 3's MIDI Pro Adapter

Co-authored-by: Megamouse <studienricky89@googlemail.com>
This commit is contained in:
Dark 2023-04-09 04:34:41 -04:00 committed by Megamouse
parent 8e15afb2c4
commit 24dde5d42b
33 changed files with 1329 additions and 76 deletions

View file

@ -363,6 +363,9 @@ endif()
# MINIUPNP
add_subdirectory(miniupnp EXCLUDE_FROM_ALL)
# RTMIDI
add_subdirectory(rtmidi EXCLUDE_FROM_ALL)
# add nice ALIAS targets for ease of use
if(USE_SYSTEM_LIBUSB)
add_library(3rdparty::libusb ALIAS usb-1.0-shared)
@ -391,3 +394,4 @@ add_library(3rdparty::libcurl ALIAS libcurl)
add_library(3rdparty::soundtouch ALIAS soundtouch)
add_library(3rdparty::sdl2 ALIAS ${SDL2_TARGET})
add_library(3rdparty::miniupnpc ALIAS libminiupnpc-static)
add_library(3rdparty::rtmidi ALIAS rtmidi)