Hi guys, I need to remove an obsolete library from the program I'm working on. If I look at the command line page under properties I can see it there:

Code:
/OUT:"..\..\..\bin\Debug\Smoke.exe" /INCREMENTAL /NOLOGO /LIBPATH:"..\..\extern\TBB\lib" /LIBPATH:"..\..\extern\TinyXml\Lib" "pdh.lib" "tbb_debug.lib" "tbbmalloc_debug.lib" "winmm.lib" "comctl32.lib" "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "comdlg32.lib" "advapi32.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "odbc32.lib" "odbccp32.lib" "E:\Game Prototype\trunk\code\extern\TinyXml\lib\tinyxml.lib" "E:\Game Prototype\trunk\code\lib\Debug\BaseTypes.lib" "E:\Game Prototype\trunk\code\lib\Debug\Framework.lib" "E:\Game Prototype\trunk\code\lib\Debug\Interfaces.lib" "E:\Game Prototype\trunk\code\extern\Trees\lib\Debug\Trees.lib" "E:\Game Prototype\trunk\bin\Debug\SystemAI.lib" "E:\Game Prototype\trunk\bin\Debug\SystemAudioFMOD.lib" "E:\Game Prototype\trunk\bin\Debug\SystemExplosion.lib" "E:\Game Prototype\trunk\bin\Debug\SystemGeometry.lib" "E:\Game Prototype\trunk\bin\Debug\SystemInput.lib" /NODEFAULTLIB:"libcmtd" /MANIFEST /ManifestFile:"Debug\Smoke.exe.intermediate.manifest" /ALLOWISOLATION /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"E:\Game Prototype\trunk\bin\Debug\Smoke.pdb" /SUBSYSTEM:WINDOWS /PGD:"E:\Game Prototype\trunk\bin\Debug\Smoke.pgd" /TLBID:1 /DYNAMICBASE:NO /MACHINE:X86 /ERRORREPORT:QUEUE
It's the trees.lib there. However it seems to be included using %(AdditionalDependencies) which I have never seen before.

Which file do I need to edit to remove this library?