A simple C++ project using CMake, with a well-organized structure and automated build commands.
source env.shThis enables the following quick commands:
| π§Ή Cleans the build directory. | |
| π¨ Compiles the project. | |
| π Runs the compiled binary. |
π Manual Compilation (Optional) If you prefer to run CMake manually:
cmake -B build
cmake --build build
./build/bin/hola_mundo # Run the binaryMake sure you have CMake and a C++ compiler installed. The build/ folder is ignored in Git (see .gitignore). You can modify env.sh to suit your needs.