From 8fc354c96a5121fa5dc3a0172984a2f21f802901 Mon Sep 17 00:00:00 2001 From: Schedul Xor Date: Mon, 6 Feb 2017 17:48:19 +0900 Subject: [PATCH] libGDX1.9.5, GWT2.8.0 applied to vtm-web (#290) --- settings.gradle | 2 +- vtm-web-app/build.gradle | 3 +++ .../oscim/gdx/emu/javax/annotation/CheckReturnValue.java | 8 ++++++++ 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 vtm-web/src/org/oscim/gdx/emu/javax/annotation/CheckReturnValue.java diff --git a/settings.gradle b/settings.gradle index db0e282b..f353fcc6 100644 --- a/settings.gradle +++ b/settings.gradle @@ -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' diff --git a/vtm-web-app/build.gradle b/vtm-web-app/build.gradle index c1f0fbf8..deb41bea 100644 --- a/vtm-web-app/build.gradle +++ b/vtm-web-app/build.gradle @@ -35,6 +35,9 @@ gwt { gwtVersion = project.ext.gwtVersion modules 'org.oscim.web.VtmWebApp' + minHeapSize = "512M" + maxHeapSize = "2048M" + superDev { noPrecompile = true } diff --git a/vtm-web/src/org/oscim/gdx/emu/javax/annotation/CheckReturnValue.java b/vtm-web/src/org/oscim/gdx/emu/javax/annotation/CheckReturnValue.java new file mode 100644 index 00000000..f9d02319 --- /dev/null +++ b/vtm-web/src/org/oscim/gdx/emu/javax/annotation/CheckReturnValue.java @@ -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 { +}