libGDX1.9.5, GWT2.8.0 applied to vtm-web (#290)

This commit is contained in:
Schedul Xor 2017-02-06 17:48:19 +09:00 committed by Emux
parent e30f3f7cc3
commit 8fc354c96a
3 changed files with 12 additions and 1 deletions

View File

@ -11,7 +11,7 @@ include ':vtm-gdx'
include ':vtm-desktop'
include ':vtm-android-gdx'
include ':vtm-web'
//include ':vtm-web-app'
include ':vtm-web-app'
//include ':vtm-web-js'
include ':vtm-jeo'
include ':vtm-playground'

View File

@ -35,6 +35,9 @@ gwt {
gwtVersion = project.ext.gwtVersion
modules 'org.oscim.web.VtmWebApp'
minHeapSize = "512M"
maxHeapSize = "2048M"
superDev {
noPrecompile = true
}

View File

@ -0,0 +1,8 @@
package javax.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target( { ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE, ElementType.PACKAGE })
public @interface CheckReturnValue {
}