Cargo command to work with Nintendo 3DS project binaries.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
687 B

3 years ago
# cargo-3ds
Cargo command to work with Nintendo 3DS project binaries. Based on cargo-psp.
# Usage
While you can set the nightly version of Rust as default for the project you're working on (`rustup override nightly`), my suggested method is:
`cargo +nightly 3ds`. \
3 years ago
The commands are the same as cargo ("run" also uses 3dslink, so you can directly use `run` to compile and run on your system).
3 years ago
# Examples:
`cargo +nightly 3ds build` \
3 years ago
`cargo +nightly 3ds run --release`
3 years ago
3 years ago
You can pass or not `--release` to build with debug symbols or not, and this works for both `build` and `run`.
3 years ago
3 years ago
Any other parameters you pass after the command will be passed during the compiling stage to `cargo`.