Original Post
Gamedevers, Hey fellas, I am having a rough time making sure that im setting SDL up correctly for Visual C++ 2005 'Beta' edition. I copied the two *.lib files to my windows\system32 directory. I copied the two *.lib files to C:\Program Files\Microsoft Visual Studio 8\VC\lib I copied the header files to C:\Program Files\Microsoft Visual Studio 8\VC\include\SDL From what I Imagine is correct... I found that you need to actually let the software know about these two files, so I started a new project and looked around in the settings a bit. I found that if you go to the properties page, and down to Linker>>Input, you find "Additional Dependencies". Is that the correct place to put in sdl.lib and sdlmain.lib? When I attempt to do a quick compile of: #include #include using namespace std; int main() { return 0; } It gives me this error: Linking... LINK : fatal error LNK1104: cannot open file 'uuid.lib' Thanks for the help in advance.