You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -250,10 +250,10 @@ If you would like to make a feature request, check the [issues](https://github.c
250
250
## Building from Source or Working on ferium
251
251
252
252
Firstly, you need the Rust toolchain which includes `cargo`, `rustup`, etc. You can install these from [the Rust website](https://www.rust-lang.org/tools/install).
253
-
You'll also need the [`just`](https://github.com/casey/just#installation)command runner, which is basically a much better version of `make`.
253
+
You can manually run cargo commands, but I recommend [`just`](https://github.com/casey/just#installation), a command runner that's basically a much better version of `make`.
254
254
255
-
To build the project and install it to your Cargo binary directory, clone the project and run `just install`. If you want to install it for testing a development version, run `just` (alias for`just install-dev`).
255
+
To build the project and install it to your Cargo binary directory, clone the project and run `just install`. If you want to install it for testing purposes run `just` (alias to`just install-dev`), which builds in debug mode.
256
256
257
-
If you want to obtain executables for specific targets, you can run `just build-<target>` and replace `<target>` with `mac-intel`, `mac-arm``win`, `win-gnu`, `linux`, or `linux-nogui`. The produced binaries will be zipped and moved to `out/`.`just build-linux-nogui` is for building binaries that don't need GTK, but they will not have a GUI file dialogue.
257
+
You can run clippy lints using `just lint`, integration tests using `cargo test`, and delete all build and test artefacts using`just clean`.
258
258
259
-
You can run clippy lints using `just lint`, integration tests using `cargo test`, and delete all the build and test artefacts using `just clean`.
259
+
If you would like to see instructions for building for specific targets (e.g. Linux ARM), head over to the [workflow file](.github/workflows/build.yml).
0 commit comments