Update INSTALL.md

Clarify build instructions a little
This commit is contained in:
auriamg 2018-11-21 20:59:22 -05:00 committed by GitHub
parent 8771f0b9d7
commit 3c60ec16d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,14 +49,23 @@ Compilation instruction is explained there. If you don't need this feature, pass
### Compiling ### Compiling
To compile SuperTuxKart, run the following commands inside `stk-code` directory: To compile SuperTuxKart, run the following commands inside `stk-code` directory
```bash ```bash
# go into the stk-code directory
cd stk-code
# create and enter the cmake_build directory
mkdir cmake_build mkdir cmake_build
cd cmake_build cd cmake_build
# run cmake to generate the makefile
cmake .. cmake ..
# compile
make -j4 make -j4
``` ```
STK can then be run from the build directory with `bin/supertuxkart` STK can then be run from the build directory with `bin/supertuxkart`
#### Keeping your build up to date #### Keeping your build up to date