How to set up an OpenGL Project on Ubuntu in Eclipse CDT

NOTE: Remember to include the local path to GLAD in the source files where you need to use GL functions. And to include GLFW/glfw3.h (in brackets) in your source files that use GLFW. Also, in any source file where you are using GLFW, remember to have the #Include of GLFW as the last include as GLFW uses the previous includes. For example, GLFW will use GLAD if it detects it. Packages to Install: xorg-dev libgl1-mesa-dev Compiler flag: -std=c 11 Symbols: Name: __cplusplus Value: 201103L Name:
Back to Top