Add debugging surrounding when the wrong method name is used.
[SquirrelJME.git] / modules / aot-springcoat / build.gradle
blob2506fcfc7f9939a2bc2bde58d6c97377201588e8
1 // ---------------------------------------------------------------------------
2 // Multi-Phasic Applications: SquirrelJME
3 //     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
4 // ---------------------------------------------------------------------------
5 // SquirrelJME is under the Mozilla Public License Version 2.0.
6 // See license.mkd for licensing and copyright information.
7 // ---------------------------------------------------------------------------
9 import cc.squirreljme.plugin.swm.JavaMEConfiguration
10 import cc.squirreljme.plugin.swm.JavaMEMidletType
12 version = "1.8.$squirreljmeVMVersion"
13 description = "SpringCoat ROM packaging."
15 squirreljme
17         javaDocErrorCode = "AI"
18         swmType = JavaMEMidletType.API
19         swmName = "SpringCoat AOT"
20         swmVendor = "Stephanie Gawroriski"
21         tags += "aot-compiler"
22         tags += "compiler:springcoat"
23         mainClass = "cc.squirreljme.jvm.aot.Main"
24         
25         // These classes break ProGuard since it tries to pull it in but fails
26         proGuardOptionsTestFixtures += [
27             "-keep", "class", "**",
28                 "-dontwarn", "**"
29         ]
30         proGuardOptionsTest += [
31             "-keep", "class", "**",
32                 "-dontwarn", "**"
33         ]
36 dependencies
38         api project(":modules:aot")