diff options
| -rw-r--r-- | base/plugins.cpp | 3 | ||||
| -rwxr-xr-x | configure | 1 | ||||
| -rw-r--r-- | engines/engines.mk | 5 | 
3 files changed, 9 insertions, 0 deletions
diff --git a/base/plugins.cpp b/base/plugins.cpp index e587b962d6..df12d0d3ba 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -172,6 +172,9 @@ public:  		#if PLUGIN_ENABLED_STATIC(TINSEL)  		LINK_PLUGIN(TINSEL)  		#endif +		#if PLUGIN_ENABLED_STATIC(TOLTECS) +		LINK_PLUGIN(TOLTECS) +		#endif  		#if PLUGIN_ENABLED_STATIC(TOON)  		LINK_PLUGIN(TOON)  		#endif @@ -117,6 +117,7 @@ add_engine sword25 "Broken Sword 2.5" no  add_engine teenagent "Teen Agent" yes  add_engine testbed "TestBed: the Testing framework" no  add_engine tinsel "Tinsel" yes +add_engine toltecs "3 Skulls of the Toltecs" no  add_engine toon "Toonstruck" yes  add_engine touche "Touche: The Adventures of the Fifth Musketeer" yes  add_engine tsage "TsAGE" yes diff --git a/engines/engines.mk b/engines/engines.mk index b327ba68a8..5280bf92d7 100644 --- a/engines/engines.mk +++ b/engines/engines.mk @@ -188,6 +188,11 @@ DEFINES += -DENABLE_TINSEL=$(ENABLE_TINSEL)  MODULES += engines/tinsel  endif +ifdef ENABLE_TOLTECS +DEFINES += -DENABLE_TOLTECS=$(ENABLE_TOLTECS) +MODULES += engines/toltecs +endif +  ifdef ENABLE_TOON  DEFINES += -DENABLE_TOON=$(ENABLE_TOON)  MODULES += engines/toon  | 
