https://github.com/cmanny/gl-engine
A small OpenGL graphics and events engine written in C++
https://github.com/cmanny/gl-engine
Last synced: 3 months ago
JSON representation
A small OpenGL graphics and events engine written in C++
- Host: GitHub
- URL: https://github.com/cmanny/gl-engine
- Owner: cmanny
- Created: 2015-05-05T22:07:18.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-12-02T18:08:00.000Z (over 8 years ago)
- Last Synced: 2025-01-05T00:44:24.805Z (4 months ago)
- Language: C++
- Homepage:
- Size: 41.8 MB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gl-engine
An experimental C++ Graphics engine using OpenGL and TBB.
## Instructions to build
First ensure you have the following libraries:
## On linux:
`cmake make g++ libx11-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev libxrandr-dev libxext-dev libtbb-dev`
Type the following:
`mkdir build`
`cd build`
`cmake ..`
`make all`to build the project.
##On Windows:
Windows should already have the required packages through the correct drivers installation. However, you will need
to download Cmake and TBB (Threading Building Blocks), making sure that the compilation can find TBB in the environment.
This can be done by downloading the TBB files from threadingbuildingblocks.com and setting up the include, lib, and linker correctly
in VS.