Removing libraries from VC++ 2010.

Hello.

I've been having some trouble compiling in Visual Studio C++ 2010 Express lately.
When I try to run a simple application, like:

1
2
3
4
int main()
{
    return 0;
}


I get the error: 1>LINK : fatal error LNK1104: cannot open file 'SDL_ttf.lib'

I once used SDL for my applications, but now I want to remove every trace of it from Visual Studio. I've tried to restore settings to default, uninstalling Visual Studio, and removing SDL stuff from the Property Pages, but I seem to still get the error.

My question is: How can I completely restore Visual Studio C++ 2010 Express to it's default or at least remove every trace of SDL?
Last edited on
Couldn't find any bump-rules, and it has gone two days since I posted, so.. I would be very happy if someone could help me, so that I could compile in VC++ 2010 again. :)
Go to Project menu
Properties
Configuration Properties
Linker
Input
Additional Dependencies


and see if SDL_ttf.lib is listed there, if so delete it.
I still get the same message: 1>LINK : fatal error LNK1104: cannot open file 'SDL_ttf.lib'

even though it now says: %(AdditionalDependencies), under Property Pages->Configuration Properties->Linker->Input->Additional Dependencies. There WAS some SDL-stuff there which I deleted, including SDL_ttf.lib, but it still doesn't work.
EDIT: Oh wait, it is still under "inherited values". But how do I remove it from there?
I solved the problem.

Had to show Property Manager under View->Property Manager, and then double click Microsoft.Cpp.Win32.user under Additional Dependencies I found undesired libraries.
Topic archived. No new replies allowed.