https://github.com/eric15342335/c-repo-template
https://github.com/eric15342335/c-repo-template
c clang-format cmake cpp doxygen github-actions github-pages make readme
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/eric15342335/c-repo-template
- Owner: eric15342335
- Created: 2024-06-18T11:35:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-07T17:33:27.000Z (11 months ago)
- Last Synced: 2025-09-06T12:54:26.686Z (29 days ago)
- Topics: c, clang-format, cmake, cpp, doxygen, github-actions, github-pages, make, readme
- Language: C
- Homepage: https://eric15342335.github.io/c-repo-template/
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# C/C++ Repo Template
1. [GNU Make](#gnu-make)
2. [CMake](#cmake)
3. [Misc](#misc)## GNU Make
```bash
make
```## CMake
```bash
cmake -B build -S .
cmake --build build
cmake --install build --prefix .
```## Misc
* [Continuous Integration](./.github/workflows/ci.yml)
* [Git Ignore Files](./.gitignore)
* [Clang Format](.clang-format)
* `clang-format src/*.c include/*.h -i`