| symbian程序当修改了mmp文件后,必须重新编译一遍,遇到一些莫名其妙的问题时,重编译也许能解决.我看到一个用于编译的批处理文件修改了一下,用起来还不错.
@echo off @echo ************************************* @echo ** Symbian batch program ********* @echo ** CAZ 2006 ********************** @echo ************************************* echo Clean All History Files...... pause if not exist bld.inf goto end if exist abld.bat call abld clean call bldmake clean pause @echo. @echo ******************************************************** @echo * Begin Build * @echo ******************************************************** @echo.
@echo ******************************************************** @echo * bldmake bldfiles * @echo ******************************************************** @echo.
call bldmake bldfiles
@echo ******************************************************** @echo * abld build wins udeb * @echo ******************************************************** @echo.
call abld build wins udeb
@echo ******************************************************** @echo * abld build vc6 * @echo ******************************************************** @echo.
call abld build vc6
@echo ********* All Finish************************** pause
:end
这些在模拟器上足够了,要是编译目标机程序,还可以再加一些.
call abld build thumb urel
cd ..\sis
makesis xxx.pkg
这样就生成sis了. |