Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daulpavid/c11_template
Boilerplate project template for C11 projects.
https://github.com/daulpavid/c11_template
Last synced: 4 days ago
JSON representation
Boilerplate project template for C11 projects.
- Host: GitHub
- URL: https://github.com/daulpavid/c11_template
- Owner: DaulPavid
- License: unlicense
- Created: 2021-12-11T00:34:26.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-19T04:58:30.000Z (over 1 year ago)
- Last Synced: 2023-08-19T05:32:57.142Z (over 1 year ago)
- Language: CMake
- Size: 83 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# c11_template
This C11 template contains the directory structure, unit testing library,
and CMake files to bootstrap new C projects.## Dependencies
* CMake [>=3.1.x]
* Modern compiler (GCC, clang)
* OpenGL and SDL2## Building (Linux)
In order to build the project, run the following commands:
```
$ mkdir build
$ cd build
$ cmake ..
$ make
$ ctest --verbose
```## Unlicense (Public Domain)
```
This is free and unencumbered software released into the public domain.Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.For more information, please refer to
```