diff options
-rw-r--r-- | base/plugins.cpp | 3 | ||||
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | engines/engines.mk | 6 |
3 files changed, 9 insertions, 1 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp index 6c80da65d4..feead28247 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -163,6 +163,9 @@ public: #if PLUGIN_ENABLED_STATIC(TUCKER) LINK_PLUGIN(TUCKER) #endif + #if PLUGIN_ENABLED_STATIC(TESTBED) + LINK_PLUGIN(TESTBED) + #endif // Music plugins // TODO: Use defines to disable or enable each MIDI driver as a @@ -108,6 +108,7 @@ add_engine teenagent "Teen Agent" yes add_engine tinsel "Tinsel" yes add_engine touche "Touche: The Adventures of the Fifth Musketeer" yes add_engine tucker "Bud Tucker in Double Trouble" yes +add_engine testbed "TestBed: the Testing framework" yes # diff --git a/engines/engines.mk b/engines/engines.mk index 2c1378290c..5e28e9b187 100644 --- a/engines/engines.mk +++ b/engines/engines.mk @@ -141,6 +141,11 @@ DEFINES += -DENABLE_TEENAGENT=$(ENABLE_TEENAGENT) MODULES += engines/teenagent endif +ifdef ENABLE_TESTBED +DEFINES += -DENABLE_TESTBED=$(ENABLE_TESTBED) +MODULES += engines/testbed +endif + ifdef ENABLE_TINSEL DEFINES += -DENABLE_TINSEL=$(ENABLE_TINSEL) MODULES += engines/tinsel @@ -155,4 +160,3 @@ ifdef ENABLE_TUCKER DEFINES += -DENABLE_TUCKER=$(ENABLE_TUCKER) MODULES += engines/tucker endif - |