An open API service indexing awesome lists of open source software.

https://github.com/zeyu-li/cpp_boilerplate

C++ boilerplate. Nothing more, nothing less :pencil:
https://github.com/zeyu-li/cpp_boilerplate

boilerplate cpp

Last synced: 9 months ago
JSON representation

C++ boilerplate. Nothing more, nothing less :pencil:

Awesome Lists containing this project

README

          

# C++ Boilerplate

## About

This project folder is a boilerplate for c++ projects.
It is free to use (MIT Licence)

The main cpp file in src is just the main function

```c++
#include
using namespace std;
int main()
{

return 0;
}
```

Also included is a main.h file

## Project files

* includes - placeholder txt file
* libs - placeholder txt file, replace with libraries
* src - source code
* test - place to stage tests

Nothing more, nothing less

## Licence

The rules for copy and distributing this project licence are
outlined in the licence.txt file.

This project is under an MIT licence

## Other Notes

.exe files are not kept so you will have to build from source (src)