This guide should assist you in compiling and running mint-notag.
Note
Instructions are for Windows as I don't have access to Linux.
- Visual Studio with the following individual components:
- MSVC v143 - VS 2022 C++ x64/x86 build tools (Latest)
- Windows 11 SDK (10.0.22621.0)
- rustup-msvc
- Via scoop:
scoop install rustup-msvc
- Via rustup-init
- Via scoop:
After setting up all the requirements:
-
Add MSVC tools to Path:
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.43.34808\bin\Hostx64\x64", [EnvironmentVariableTarget]::User)
-
Install Rust toolchain:
rustup install nightly-2023-08-18 --no-self-update rustup default nightly-2023-08-18
- Run
cargo build
to compile a development build- The output will be inside
target/debug
- The output will be inside
- Run
cargo build --release
to compile a production build- The output will be inside
target/dist
- The output will be inside