https://github.com/kaierikniermann/c_cpp-mini-project-template
This is a template you can use for small quick C projects
https://github.com/kaierikniermann/c_cpp-mini-project-template
c cpp template-project
Last synced: about 1 month ago
JSON representation
This is a template you can use for small quick C projects
- Host: GitHub
- URL: https://github.com/kaierikniermann/c_cpp-mini-project-template
- Owner: KaiErikNiermann
- Created: 2024-01-13T05:40:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-13T05:55:05.000Z (over 2 years ago)
- Last Synced: 2025-01-12T15:11:28.902Z (over 1 year ago)
- Topics: c, cpp, template-project
- Language: Makefile
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C-mini-project-template
This is a basic demo template for a simple C or C++ project, mainly for students who are just starting to learn C/C++.
## Usage
1. In the `Makefile` specify the language you want to use via the `LANG` variable, also adjust the compiler `CC` accordingly
2. `/src` is for the source filers and `/include` for the header files
## Note
This is really meant more for people just starting to work with C/C++ who maybe want to have a more clean project structure. This does not scale to more complex projects, for that you might want to look at better build tools or improve this setup.
I included some demo files in the `/src` and `/include` folder.