diff options
author | Determinant <[email protected]> | 2018-01-22 01:07:31 -0500 |
---|---|---|
committer | Determinant <[email protected]> | 2018-01-22 01:07:31 -0500 |
commit | c60485cca6ea4984cbf842f42bddfaa97cf6e489 (patch) | |
tree | debeba834cb958a54c8415f029a65b7aeaaabb23 | |
parent | af5aad126e4d9cb2aa7e64eace50ef1b51d47773 (diff) |
add detailed setup guide
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | README.rst | 13 |
2 files changed, 13 insertions, 2 deletions
@@ -122,7 +122,7 @@ dependencies = [ [[package]] name = "runes" -version = "0.1.8" +version = "0.1.9" dependencies = [ "clap 2.29.2 (registry+https://github.com/rust-lang/crates.io-index)", "sdl2 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -44,4 +44,15 @@ Build the Example Emulator :: - cargo build --examples --release # (requires std, sdl2 and clap) + # for Ubuntu + # install Rust toolchain (https://www.rustup.rs/): + # $ sudo apt install curl gcc + # $ curl https://sh.rustup.rs -sSf | sh + # and add $HOME/.cargo/bin to your $PATH + # install SDL2 by: + # $ sudo apt install libsdl2-dev # install SDL2 library + + git clone https://github.com/Determinant/runes.git + cd runes + cargo build --examples --release # build the binary + target/release/examples/runes --help # see the help message |