Missed script update for future SAGA2 engine

svn-id: r36204
This commit is contained in:
Lars Persson 2009-02-02 19:31:35 +00:00
parent eb5ec2369f
commit 08f7d0ac1a
7 changed files with 21 additions and 4 deletions

View File

@ -66,6 +66,7 @@ Preparing to update all the Symbian MMP project files with objects from module.m
# some modules.mk files have #ifndef ENABLE_XXXX blocks:
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
# files excluded from build, case insensitive, will be matched in filename string only
@ -111,7 +112,7 @@ ParseModule("_queen", "queen", \@section_empty);
ParseModule("_agos", "agos", \@section_empty);
ParseModule("_sky", "sky", \@section_empty);
ParseModule("_gob", "gob", \@section_empty);
ParseModule("_saga", "saga", \@section_empty);
ParseModule("_saga", "saga", \@sections_saga);
ParseModule("_kyra", "kyra", \@section_empty);
ParseModule("_sword1", "sword1", \@section_empty);
ParseModule("_sword2", "sword2", \@section_empty);

View File

@ -8,4 +8,5 @@ PRJ_MMPFILES
//STOP_AUTO_PROJECTS//
gnumakefile icons.mk
.\ScummVM_A0000658_S60v3.mmp
.\ScummVM_S60v3.mmp

View File

@ -68,7 +68,7 @@ END
MACRO S60
MACRO S60V3
MACRO SECOND_EXE
ALWAYS_BUILD_AS_ARM
//START_AUTO_MACROS_SLAVE//

View File

@ -7,5 +7,5 @@ PRJ_MMPFILES
// empty base file, will be updated by Perl build scripts
//STOP_AUTO_PROJECTS//
.\ScummVM_A0000658_UIQ3.mmp
.\ScummVM_UIQ3.mmp

View File

@ -105,7 +105,6 @@ SOURCE backends\events\default\default-events.cpp
SOURCE backends\timer\default\default-timer.cpp
SOURCE backends\saves\savefile.cpp
SOURCE backends\saves\default\default-saves.cpp
SOURCE backends\saves\compressed\compressed-saves.cpp
SOURCE engines\engine.cpp
SOURCE engines\dialogs.cpp
SOURCE engines\game.cpp

View File

@ -49,6 +49,18 @@ SOURCEPATH ..\..\..\..\engines\saga
//STOP_AUTO_OBJECTS_SAGA_//
//START_AUTO_OBJECTS_SAGA_ENABLE_IHNM//
// empty base file, will be updated by Perl build scripts
//STOP_AUTO_OBJECTS_SAGA_ENABLE_IHNM//
//START_AUTO_OBJECTS_SAGA_ENABLE_SAGA2//
// empty base file, will be updated by Perl build scripts
//STOP_AUTO_OBJECTS_SAGA_ENABLE_SAGA2//
// *** Include paths
USERINCLUDE ..\..\..\..\engines

View File

@ -23,7 +23,11 @@
#ifndef ScummHRH
#define ScummHRH
#if defined (UIQ3) || defined (S60V3)
#ifdef SECOND_EXE
#define ScummUid 0xA0000658
#else
#define ScummUid 0xA0000657
#endif
#else
#define ScummUid 0x101f9b57
#endif