This commit is contained in:
2025-09-16 11:23:29 -05:00
parent c236c43ca7
commit f8134df732
143 changed files with 15987 additions and 0 deletions

14
How_to_CMake.txt Normal file
View File

@@ -0,0 +1,14 @@
Use to first build your build folder
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug
Use to compile your code
cmake --build build -j
Use to run your program
./build/{your program}
###
In the CMAKE file at the top, define your program name.