From 172cc05cb1f3d2b69b15cfe94c792e042a41b274 Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Tue, 2 Feb 2021 19:14:09 +0100 Subject: Add alsamidi iput engine. --- drumgizmo/enginefactory.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'drumgizmo/enginefactory.h') 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 -- cgit v1.2.3