A library to compile/embed Java alongside a Rust library/application. Similar to [cc], but for Java. This is not an official project of Google, Oracle, Sun Microsystems, or anyone else.
Add the following to your executable's Cargo.toml:
toml
[build-dependencies]
jerk-build = "0.1"
And the following to your [build.rs]:
no_run
fn main() {
jerk_build::metabuild();
}
Add the following to your executable's Cargo.toml:
```toml cargo-features = ["metabuild"]
[package] metabuild = ["jerk_build"]
[build-dependencies] jerk-build = "0.1" ```
Licensed under either of
at your option.