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:
- Host: GitHub
- URL: https://github.com/zeyu-li/cpp_boilerplate
- Owner: Zeyu-Li
- License: mit
- Created: 2019-03-12T00:56:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-04T15:48:56.000Z (over 6 years ago)
- Last Synced: 2025-06-28T11:03:24.684Z (about 1 year ago)
- Topics: boilerplate, cpp
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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)