A simple python project used for initialising c/c++ projects.
Installation:
pip install cpp_init
Usage:
python -m cpp_init <options>
Options are just 3 letters telling c-init what you want the project to be:
- First letter
<>XX:c- specifies it's a c projectx- specifies it's a c++ project
- Second letter
X<>X:a- specifies it's an executable applicationl- specifies it's a library
- Third letter
XX<>:m- specifies it's a make projectc- specifies it's a cmake project
Finally, it should (somewhat) look like this:
cpp_init xam # will create a C++ application project compiled with make
cpp_init clc # will create a C library project compiled with CMake
...