diff options
| author | Eugene Sandulenko | 2010-10-18 19:18:06 +0000 | 
|---|---|---|
| committer | Eugene Sandulenko | 2010-10-18 19:18:06 +0000 | 
| commit | 937cf6cd7aa3fdafc661bcfcf28e4f3dd05306ba (patch) | |
| tree | 314b0af6c882434831479ad3585cfc8c1016e0ec | |
| parent | 86d650926f9b991b6398e4ad4b0613ac264dfbaa (diff) | |
| download | scummvm-rg350-937cf6cd7aa3fdafc661bcfcf28e4f3dd05306ba.tar.gz scummvm-rg350-937cf6cd7aa3fdafc661bcfcf28e4f3dd05306ba.tar.bz2 scummvm-rg350-937cf6cd7aa3fdafc661bcfcf28e4f3dd05306ba.zip  | |
CONFIGURE: Plug in Last Express engine
svn-id: r53580
| -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 e2af9328a7..7102462173 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -121,6 +121,9 @@ public:  		#if PLUGIN_ENABLED_STATIC(KYRA)  		LINK_PLUGIN(KYRA)  		#endif +		#if PLUGIN_ENABLED_STATIC(LASTEXPRESS) +		LINK_PLUGIN(LASTEXPRESS) +		#endif  		#if PLUGIN_ENABLED_STATIC(LURE)  		LINK_PLUGIN(LURE)  		#endif @@ -91,6 +91,7 @@ add_engine groovie2 "Groovie 2 games" no  add_engine hugo "Hugo Trilogy" no  add_engine kyra "Legend of Kyrandia" yes "lol"  add_engine lol "Lands of Lore" no +add_engine lastexpress "The Last Express" no  add_engine lure "Lure of the Temptress" yes  add_engine m4 "M4/MADS" no  add_engine made "MADE" yes diff --git a/engines/engines.mk b/engines/engines.mk index be119c35d6..eea4ffc0b9 100644 --- a/engines/engines.mk +++ b/engines/engines.mk @@ -74,6 +74,11 @@ DEFINES += -DENABLE_LOL  endif  endif +ifdef ENABLE_LASTEXPRESS +DEFINES += -DENABLE_LASTEXPRESS=$(ENABLE_LASTEXPRESS) +MODULES += engines/lastexpress +endif +  ifdef ENABLE_LURE  DEFINES += -DENABLE_LURE=$(ENABLE_LURE)  MODULES += engines/lure  | 
