From 28223c0385fd45d3e2710851d3856839ab245f7b Mon Sep 17 00:00:00 2001 From: Firewire Date: Mon, 1 Dec 2025 16:26:42 -0500 Subject: [PATCH] Update build commands in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 69dbb7c..2569f99 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,13 @@ Make sure you have a compiler (MSVC or GCC), CMake, and make/ninja installed. If you're using make to build the project, run the following commands: 1. `mkdir build` 2. `cd build` -3. `cmake .. -G "Unix Makefiles"` +3. `cmake .. -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles"` 4. `make -j ` If you're using ninja to build the project, run the following commands: 1. `mkdir build` 2. `cd build` -3. `cmake .. -G Ninja` +3. `cmake .. -DCMAKE_BUILD_TYPE=Release -G Ninja` 4. `ninja` ## Directory structure