Adjust sourcize.c to use _snprintf if using MSVC.
[SquirrelJME.git] / modules / meep-rms / build.gradle
blob189e817674154f7ac389d7c4dfc941de26f014bd
1 import cc.squirreljme.plugin.swm.JavaMEMidletType
2 import cc.squirreljme.plugin.swm.JavaMEStandard
4 description = "This contains the implementation of the " +
5         "record management system which is used to manage records whichmay be " +
6         "used instead of the filesystem (if a filesystem is notsupported)."
7 version = rootProject.version
9 squirreljme
11         javaDocErrorCode = "DC"
12         swmType = JavaMEMidletType.API
13         swmName = "MEEP Record Management System"
14         swmVendor = "Stephanie Gawroriski"
15         definedStandards += new JavaMEStandard("microedition.rms;;")
16         tags += "meep"
17         tags += "j2me"
20 dependencies
22         api project(":modules:cldc")
24         api project(":modules:meep-midlet")
25         api project(":modules:tool-manifest-writer")
26         api project(":modules:meep-swm")
27         api project(":modules:collections")