Difference between revisions of "Symbian-build-system"

From ScummVM :: Wiki
Jump to navigation Jump to search
Line 10: Line 10:
Before creation scummvm.exe we pack compiled engines and necessary code in static libs. Compilation an packing done automatically by SDK build system according by related .mmp file.
Before creation scummvm.exe we pack compiled engines and necessary code in static libs. Compilation an packing done automatically by SDK build system according by related .mmp file.


Necessary code mostly comes to the scummvm_base.lib(static lib) and remains builds when making scummvm.exe. We compile with exe only sourceswithout them build scummvm.exe fails.  
Necessary code mostly comes to the scummvm_base.lib(static lib) and remains builds when making scummvm.exe. We compile with exe only sources without them build scummvm.exe fails.  


==For anyone==
==For anyone==
Anyone free to add and remove files which doesn't use Symbian API directly.
Anyone free to add and remove files which doesn't use Symbian API directly.

Revision as of 10:02, 17 January 2021

Symbian build system

It gather info of sources to build from module.mk. This applied for new build system aka python package symbian_builder and old build system aka BuildPackageUpload_AllVersions.pl and BuildPackageUpload_LocalSettings.pl.

Old was dumb and hard to maintain.

New build system gather info from configure.engine too. It auto generates symbian project files for all supported engines, exclude unfinished engines and subengines from release build. Main advantage - it builds in parallel and even errors can't interrupt while all engine not processed.

Build ScummVM inside

Before creation scummvm.exe we pack compiled engines and necessary code in static libs. Compilation an packing done automatically by SDK build system according by related .mmp file.

Necessary code mostly comes to the scummvm_base.lib(static lib) and remains builds when making scummvm.exe. We compile with exe only sources without them build scummvm.exe fails.

For anyone

Anyone free to add and remove files which doesn't use Symbian API directly.