Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jirihnidek/glut-template
Template of 3D GLUT application
https://github.com/jirihnidek/glut-template
Last synced: about 8 hours ago
JSON representation
Template of 3D GLUT application
- Host: GitHub
- URL: https://github.com/jirihnidek/glut-template
- Owner: jirihnidek
- License: bsd-2-clause
- Created: 2014-08-05T19:13:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-07T07:17:27.000Z (over 10 years ago)
- Last Synced: 2023-04-01T02:16:38.751Z (over 1 year ago)
- Language: C
- Size: 145 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GLUT-Template
=============Template of 3D GLUT application displaying cube in 3D. It coul be used as
template for some real project.Build
-----Building of this template have following requirements:
* GCC or CLang
* Make
* CMake
* GLUTTo build template application type following commands in the root of
glut-template source code:```bash
mkdir ./build
cd build
cmake ../
make
```