From 734a5e497145d4e7c406d71a092a25b4c7b62b64 Mon Sep 17 00:00:00 2001 From: Anthony Tarbinian Date: Sun, 15 Oct 2023 17:43:55 -0700 Subject: [PATCH] update readme instructions to run cmake/make inside build folder --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cab8182a..c74c5bf6 100644 --- a/README.md +++ b/README.md @@ -92,9 +92,15 @@ Now that everything is installed, here is the process to build and run the appli root@d26aba74c8cd:/workspaces/obcpp# ``` +8. Create a build directory and enter it (All the following commands should be run from inside the build directory) + ```sh + mkdir build + cd build + ``` + 8. Build CMake files with the following command: ```sh - cmake . + cmake .. ``` 9. Build executable with the following command. (You will need to do this anytime you edit code.)