From 3c60ec16d33aeb0e1462c6eaf1c32a44d96f4ad2 Mon Sep 17 00:00:00 2001 From: auriamg Date: Wed, 21 Nov 2018 20:59:22 -0500 Subject: [PATCH] Update INSTALL.md Clarify build instructions a little --- INSTALL.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 52f2e784e..fbcd8b06b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -49,14 +49,23 @@ Compilation instruction is explained there. If you don't need this feature, pass ### Compiling -To compile SuperTuxKart, run the following commands inside `stk-code` directory: - +To compile SuperTuxKart, run the following commands inside `stk-code` directory + ```bash +# go into the stk-code directory +cd stk-code + +# create and enter the cmake_build directory mkdir cmake_build cd cmake_build + +# run cmake to generate the makefile cmake .. + +# compile make -j4 ``` + STK can then be run from the build directory with `bin/supertuxkart` #### Keeping your build up to date