Linker errors help

Developing in C++ .net with MFC and OpenGL.

Code works fine in DEBUG mode, however when compiling in RELEASE mode I get a lot of LNK2019 (unresolved external symbol)related some but not all of my OpenGL calls.

Ideas? Problem with set up?

Any help appreciatedā€¦ :confused:

This is not the correct forum for this.

You need to make sure when in release mode that you have specified in the properties of your project what libraries you need to link with your exe. You have done this in debug mode but not in release.

-SirKnight