| 90 | |
| 91 | val SourceSetContainer.javaFxExample: SourceSet get() = maybeCreate("javaFxExample") |
| 92 | fun SourceSetContainer.javaFxExample(block: SourceSet.() -> Unit) = javaFxExample.apply(block) |
| 93 | val SourceSetContainer.swtExample: SourceSet get() = maybeCreate("swtExample") |
| 94 | fun SourceSetContainer.swtExample(block: SourceSet.() -> Unit) = swtExample.apply(block) |
| 95 |