Browse Source

CHORE: Update README.md

Douglas Andreani 1 year ago
parent
commit
277fa4668b
1 changed files with 15 additions and 5 deletions
  1. 15 5
      README.md

+ 15 - 5
README.md

@@ -3,15 +3,25 @@
 Another attempt to do something with OpenGL
 
 ## Dependencies
-    * GLM
-    * SPDLOG
-    * GLFW3
-    * GLAD (built-in)
+  * GLM
+  * SPDLOG
+  * GLFW3
+  * GLAD (built-in)
 
 ## Build
+
+  * Without vcpkg (make sure you have all dependencies setup correctly)
 ```bash
 mkdir build
 cd build
-cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=true
+cmake ..
 make
+```
+
+  * With vcpkg
+```bash
+mkdir build
+cd build
+cmake .. --preset=default
+ninja
 ```