diff options
author | Volker Fischer <corrados@users.noreply.github.com> | 2021-02-09 20:32:10 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-02-09 20:32:10 +0100 |
commit | 3dd3c332414bfbebd69bfd71a4a3198198525eb6 (patch) | |
tree | 9dff61eab647703581c80b1e1b276571586696d7 /drumgizmo/enginefactory.h | |
parent | 9310ffe5959ce4de02204b6cd251d4b4a58c69b9 (diff) |
Add ALSA midi input support.
Diffstat (limited to 'drumgizmo/enginefactory.h')
-rw-r--r-- | drumgizmo/enginefactory.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drumgizmo/enginefactory.h b/drumgizmo/enginefactory.h index 0b37c6e..7dbc9b3 100644 --- a/drumgizmo/enginefactory.h +++ b/drumgizmo/enginefactory.h @@ -53,6 +53,10 @@ #include "input/jackmidi.h" #endif +#ifdef HAVE_INPUT_ALSAMIDI +#include "input/alsamidi.h" +#endif + #ifdef HAVE_INPUT_OSS #include "input/ossmidi.h" #endif @@ -77,11 +81,14 @@ #include "output/oss.h" #endif - #ifdef HAVE_INPUT_OSSMIDI #include "input/ossmidi.h" #endif +#ifdef HAVE_INPUT_ALSAMIDI +#include "input/alsamidi.h" +#endif + //! Factory for various input- and output engines class EngineFactory |