Correct spelling.
[SquirrelJME.git] / modules / dio-pwm / build.gradle
blobf73c76b609cfdeb06255742adc53f3ea69cdf8b1
1 import cc.squirreljme.plugin.swm.JavaMEMidletType
2 import cc.squirreljme.plugin.swm.JavaMEStandard
4 description = "This provides access to PWM devices."
5 version = rootProject.version
7 squirreljme
9         javaDocErrorCode = "DR"
10         swmType = JavaMEMidletType.API
11         swmName = "JavaME 8 Device I/O (PWM)"
12         swmVendor = "Stephanie Gawroriski"
13         definedStandards += new JavaMEStandard("dio.pwm;;1.0.1")
14         tags += "embedded"
17 dependencies
19         api project(":modules:cldc-compact")
20         api project(":modules:cldc")
22         api project(":modules:dio")
23         api project(":modules:dio-gpio")