Quote Originally Posted by jjj93421
Is there a way to permanently include those libraries in the settings?
hmmmmm... not that i know of, altho ultimately it depends on your compiler so maybe you can find one with that option. of course it would add those libs to all your projects which would be kinda bad. i use the below code to link libs in the declarations of opengl code. of course you'll need to change the libs to the directx ones, but it should work.

Code:
#pragma comment(lib, "OpenGL32.lib") 
#pragma comment(lib, "GLu32.lib") 
#pragma comment(lib, "GLaux.lib")