From 24bac8e76c862b833b92e8ce7dffe38553204b98 Mon Sep 17 00:00:00 2001 From: Emily Tocin Date: Sat, 21 Aug 2021 14:39:20 -0400 Subject: [PATCH] Fix the build instructions in readme... ...by including a 'cd' into the build folder before the 'cmake ..' --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2b9adcd6..5b82c17e 100644 --- a/README.md +++ b/README.md @@ -79,9 +79,10 @@ Building By default, Gainput is built using [CMake](http://www.cmake.org/). 1. Run `mkdir build` -1. Run `cmake ..` -1. Run `make` -1. The library can be found in `lib/`, the executables in `samples/`. +2. Run `cd build` +3. Run `cmake ..` +4. Run `make` +5. The library can be found in `lib/`, the executables in `samples/`. Contributing