aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/symbian
diff options
context:
space:
mode:
authorLars Persson2009-03-06 18:18:52 +0000
committerLars Persson2009-03-06 18:18:52 +0000
commit19437c2c1f18bea4746300f18caa16b924a5e7f2 (patch)
treec603b3cc32576165701c8136435ade006984d620 /backends/platform/symbian
parentd34aa2a6cab93ec0fe0565e3b3331ee97de22eb8 (diff)
downloadscummvm-rg350-19437c2c1f18bea4746300f18caa16b924a5e7f2.tar.gz
scummvm-rg350-19437c2c1f18bea4746300f18caa16b924a5e7f2.tar.bz2
scummvm-rg350-19437c2c1f18bea4746300f18caa16b924a5e7f2.zip
Handle subengine LOL in perl script
svn-id: r39161
Diffstat (limited to 'backends/platform/symbian')
-rw-r--r--backends/platform/symbian/AdaptAllMMPs.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/symbian/AdaptAllMMPs.pl b/backends/platform/symbian/AdaptAllMMPs.pl
index 658499cb57..b7a6da6812 100644
--- a/backends/platform/symbian/AdaptAllMMPs.pl
+++ b/backends/platform/symbian/AdaptAllMMPs.pl
@@ -68,7 +68,7 @@ Preparing to update all the Symbian MMP project files with objects from module.m
my @section_empty = (""); # section standard: no #ifdef's in module.mk files
my @sections_scumm = ("", "ENABLE_SCUMM_7_8", "ENABLE_HE"); # special sections for engine SCUMM
my @sections_saga = ("", "ENABLE_IHNM", "ENABLE_SAGA2"); # special sections for engine SAGA
-
+my @sections_kyra = ("", "ENABLE_LOL"); # special sections for engine KYRA
# files excluded from build, case insensitive, will be matched in filename string only
my @excludes_snd = (
@@ -114,7 +114,7 @@ ParseModule("_agos", "agos", \@section_empty);
ParseModule("_sky", "sky", \@section_empty);
ParseModule("_gob", "gob", \@section_empty);
ParseModule("_saga", "saga", \@sections_saga);
-ParseModule("_kyra", "kyra", \@section_empty);
+ParseModule("_kyra", "kyra", \@sections_kyra);
ParseModule("_sword1", "sword1", \@section_empty);
ParseModule("_sword2", "sword2", \@section_empty);
ParseModule("_lure", "lure", \@section_empty);