cookiecutter-c
is a template for simple projects written in C with CMake.
You need cookiecutter, a tool to create projects from project
templates. Once installed (in a virtualenv or just with pip install cookiecutter
), you can use the following command:
cookiecutter https://github.com/robertobernabe/cookiecutter-c.git
cd your-project
git init
git add .
git commit -m "Initial commit"
Once you are done, your project is ready and you can compile it with:
<TODO>