Hi:
I'm using GWT 2.3
I need to generate <module>-xs.noche.js for my GWT module.
I compile it with ANT like this
<java classname="com.google.gwt.dev.Compiler" fork="true" >
<jvmarg value="-Xmx512M"/>
<arg value="-war"/>
<arg value="war"/>
<arg value="com.module"/>
<classpath>
<pathelement path="${classpath}"/>
</classpath>
</java>
I included into my Module.gwt.xml file this lines
<inherits name="com.google.gwt.core.Core" />
<add-linker name="xs" />
but it's not generated any <module>-xs.noche.js but <module>.noche.js do
None error happens and none trace is shown about linking
Why ?
Where I must to declare XS linker ?
Thanks and regards