Header Sep
Symbian Tips, Tricks & Code
My Rating Score
Login to rate page

July 2005
Exe wizard for easy creation of Symbian OS executables

[Back]

A previous Tips, Tricks and Code article presented a Symbian OS application wizard>>

The following zip file contains a wizard which creates Symbian OS exes. The tool can be used to rapidly create test applications that do not require the full windowing capabilities of a Symbian application.
 
Download example application>> 

To install the exe wizard, copy "exewizard.exe" to a folder which is included in your search path, which can be found by giving the command "set PATH". When the exe file has been copied to a folder in the path, the wizard can be run by giving the command "exewizard" with appropriate parameters: 

exewizard name [uid]

As an example, the following command can be given:

exewizard testexe 0x01123456

The project files will be created in a folder with a given name. The following files are created: bld.inf, name.cpp, name.mmp, name.pkg.

The build a project "myproj" created using the exe wizard, use the following commands:


 $ bldmake bldfiles
 $ abld build thumb urel
 $ makesis myproj.pkg

 

 

My Rating Score
Login to rate page