Skip to content
This repository has been archived by the owner on Dec 20, 2019. It is now read-only.

Speeding up GWT Compilation

Ángel Serrano edited this page Oct 9, 2013 · 2 revisions

Testing new features in the GWT backend is slow, but fortunately, there's some things you can do to speed up GWT compilation. They're all extracted from Speeding Up GWT great article from Game from Scratch:

Add this line to your GWT module:

<inherits name='com.google.gwt.user.UserAgent'/> <set-property name="user.agent" value="safari"/>

It creates only the compilation for Chrome and Safari.

Add the parameter –draftCompile in the Additional compiler arguments the Advanced tab of the GWT Compile panel.

Clone this wiki locally