"Marta" <[EMAIL PROTECTED]> wrote in message news:73532@palm-dev-forum... > > If to use clear wizard -generated code warrior project when resources (only) > are changed and project is compiled: > in compilation process all the project files are first marked checked (what > means they are to be compiled again) and then while each file has been > compiled the check marks are removed. > > In our project we need to compile twice : > during the first compilation all files are checked with those > red check marks, > if to compile second time right after the first compilation > the check marks are removed. > What is done wrong? > Is this a problem in code, something included wrong way?
No -- CodeWarrior isn't detecting that Constructor changed the files until the compilation phase, but it detects these after its already built its internal "build" list. You can do one of two things: 1) "Sync Modification Dates" before you start your build, either by the menu item or the button in the project window with the checkmark. 2) Go into your target settings, and in the Build Extras panel, turn off "modification date caching". #2 is the permanent fix, but it may slow builds due to extra file checking. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/tech/support/forums/
