Adjust sourcize.c to use _snprintf if using MSVC.
[SquirrelJME.git] / modules / tac / build.gradle
blobfd6bf198232a3735b18f6998e4cab016ecf36b93
1 import cc.squirreljme.plugin.swm.JavaMEMidletType
3 description = "This project contains the testing, acceptance, "+
4         "and comparison framework which is used to test and compare differing " +
5         "executions of the virtual machine."
6 version = rootProject.version
8 squirreljme
10         javaDocErrorCode = "BU"
11         swmType = JavaMEMidletType.LIBRARY
12         swmName = "Testing Framework"
13         swmVendor = "Stephanie Gawroriski"
14         tags += "testing"
15         
16         // Keep the core test class, we need that
17         proGuardOptions += ["-keep", "class",
18                 "java.lang.net.multiphasicapps.tac.__CoreTest__"]
19         proGuardOptions += ["-keepnames", "class",
20                 "java.lang.net.multiphasicapps.tac.__CoreTest__"]
23 dependencies
25         api project(":modules:cldc-compact")
26         api project(":modules:common-vm")
27         api project(":modules:io")
28         api project(":modules:meep-midlet")
29         api project(":modules:tool-manifest-writer")
30         api project(":modules:collections")