Bloodshed compiler

I just downloaded the bloodshed compiler and I do not know how to include and link files to my project. Any help? Specifically, I do not know how to make it look for my glut files.

From memory the latest version of Dev-C++ has a text file in the include/gl directory explaining how to set up a project to link the lib’s that you want to include in your programme. Or you could add the following code to your programme.

#pragma comment(lib, “opengl32.lib”)
#pragma comment(lib, “glut32.lib”)

Hope that helps

Brent