This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# C++ Project Setup Script | |
# Creates a complete C++ project structure with CMake, VSCode integration, and common configurations | |
# | |
# Usage: | |
# chmod +x setup_cpp_project.sh | |
# ./setup_cpp_project.sh # Creates project with default name "MyProject" | |
# ./setup_cpp_project.sh MeinProjektName # Creates project with custom name |