tnt1674
tnt1674

Reputation: 11

How to add glui to working freeglut project?

I have a working project containing freeglut and glew. I want to add buttons and menu bar to the project, by using GLUI . So the question is , how can i add GLUI linker to the project? , meaning header and libraries and make it all work together easiest way possible.

bottom line, i have problems with defining the external dependencies to the project , in order to add the glui.

Upvotes: 0

Views: 326

Answers (1)

nicogno
nicogno

Reputation: 57

I have a program that's using GLUT and GLUI running on Ubuntu and i use the following libraries:

#include <GL/gl.h> 
#include <GL/glu.h>
#include <GL/glut.h>
#include <GL/glui.h>

Upvotes: 0

Related Questions