ryanjeffares / setup_proj

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setup_proj

A Python script that will spit out the skeleton of a new basic C++ CMake project.

Install it system wide with:

sudo cp setup_proj.py /usr/bin/setup_proj
sudo chmod +x /usr/bin/setup_proj

Usage:

setup_proj <project-name>

which generates the following in the directory you called the script:

├── <project-name>
│   ├── .gitignore
│   ├── CMakeLists.txt
│   └── src
│       └── main.cpp

About


Languages

Language:Python 100.0%