xmake

A build dependency for running the xmake build tool to compile a native library.

```toml

Cargo.toml

[build-dependencies] xmake = "0.1" ```

The XMake executable is assumed to be xmake unless the XMAKE environmental variable is set.

If you need to cross-compile your project, xmake provides a built-in package manager that can set up the emscripten or Android NDK toolchains. The first two lines of the code snippet below enter a single package environment, overwriting the previous environment. However, the last line enters both the emscripten and NDK environments simultaneously. xrepo env -b ndk shell xrepo env -b emscripten shell xrepo env -b "emscripten, ndk" shell After executing one of these commands, xmake will automatically detect either the emscripten or NDK toolchain.

If you prefer to use your own toolchain, you can set either the ANDROIDNDKHOME or EMSCRIPTEN_HOME environment variables to specify the path to the corresponding toolchain.

An example is available in the test-crate folder of the repo.