de.fabmax.webidl-util
Owner: Max Thiele
Generates JNI and Kotlin/JS bindings from an emscripten/WebIDL model
https://github.com/fabmax/webidl-util
Sources: https://github.com/fabmax/webidl-util.git
Version 0.9.0 (latest)
Created 08 October 2024.
Generates JNI and Kotlin/JS bindings from an emscripten/WebIDL model
Add this plugin to your build using the plugins DSL:
plugins {
id("de.fabmax.webidl-util") version "0.9.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("de.fabmax.webidl-util:de.fabmax.webidl-util.gradle.plugin:0.9.0") }
It can then be applied in the precompiled script plugin:plugins { id("de.fabmax.webidl-util") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.fabmax.webidl-util:de.fabmax.webidl-util.gradle.plugin:0.9.0") } } apply(plugin = "de.fabmax.webidl-util")
- Applying plugins to all subprojects .