From b570030a8cde1c85627a96d3a758506fe1860ebf Mon Sep 17 00:00:00 2001 From: electroball09 Date: Sun, 25 Nov 2018 12:43:10 -0700 Subject: [PATCH] typo :) --- Working-with-CMake.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-with-CMake.md b/Working-with-CMake.md index a909650..2907d5b 100644 --- a/Working-with-CMake.md +++ b/Working-with-CMake.md @@ -5,7 +5,7 @@ cd projects/CMake # You can also just download the CMakeLists.txt and the core_b mkdir build # Create an out-of-tree build directory. That way build artifacts aren't mixed with source code cd build # enter it cmake .. # run cmake on the parent directory -cmake --build . # kick of the build process +cmake --build . # kick off the build process ``` The `CMakeLists.txt` is self contained and will arrange to probe whether raylib has been installed and if not, it's downloaded, built and linked statically into the `core_basic_window` example application.