Yael pointed out that there was an error. Here's a slight correction:

On Wednesday 13 January 2010 Hausmann Simon (Nokia-D-Qt/Oslo), wrote:
[...]
> New way:

Broken way:

> 
> qmake -r DerivedSources.pro
> cd JavaScriptCore
> make generated_files
> cd WebCore
> make generated_files
> cd WebCore
> qmake
> make

Working way:

Generate the stuff first:

qmake -r DerivedSources.pro
cd JavaScriptCore
make -f Makefile.DerivedSources generated_files
cd WebCore
make -f Makefile.DerivedSources generated_files

Then for proper incremental builds (if you're not changing the IDL files, 
etc.):

cd WebCore
qmake
make



Simon

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
webkit-qt mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-qt

Reply via email to