There are four phases of WinCE Compilation
1. Compile: build. The files under public and Private are compiled into dll.
2. Generate: Sysgen, which is generated based on the selected component.
3. copy the file to the realbench folder.
4. Generate NK and Eboot
Therefore, you do not need to build
After the project is installed, perform a Sysgen operation. After you modify catalog Items, you need to Clean Sysgen.
Right-click the driver and choose Rebuild.
Most of them only need Make Run Time
In "Build" in VS2005 "Advanced Build Commands", there are several compilation methods for WinCE 6.0:
1. "Sysgen ":
It is equivalent to executing the "blddemo-q" command. It is usually used when the item in "Catalog" is compiled or changed for the first time.
2. "Clean Sysgen ":
It is equivalent to executing the "blddemo clean-q" command. Follow the instructions in this document,
When % _ WINCEROOT % \ Public \ CEBASE \ OAK \ Misc \ Cesysgen is modified. use this to compile the environment variables prefixed with SYSGEN and BSP during bat.
Generally, the "Sysgen" command is used only when the project is created for the first time. If you change the settings of environment variables prefixed with SYSGEN or the item in "Catalog, you need to use "Clean Sysgen". Changing the environment variable prefixed with BSP depends on the specific situation, and you do not need to use "Clean Sysgen ".
3. "Build and Sysgen ":
It is equivalent to executing the command "blddemo". When the code under the \ public directory is changed, for example, you have installed the WinCE patch, you need to use this.
4. "Rebuild and Sysgen Clean ":
It is equivalent to executing the command "blddemo clean cleanplat-c", which is equivalent to clearing the last compiled file, and then re-compiling the \ public directory and your project.
5. "Build and Sysgen Current BSP ":
It is equivalent to executing the command "blddemo-qbsp" and only compiling the code under the \ platform directory. Therefore, you can use this method to compile the code in the \ platform directory or the BSP code.
6. "Rebuild and Clean Sysgen Current BSP ":
It is equivalent to executing the command "blddemo-qbsp-c", and equivalent to completely re-compiling the code to be compiled under the \ platform directory.
This article is from the "Snow volcano" blog, please be sure to keep this source http://zw20045.blog.51cto.com/1135644/1290043