<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1141" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hey Mark,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>I think I can answer this for Windows builds at 
least. Look at the project settings for any CMake-generated .dsp file. If you go 
to the Link tab and select Input from the drop-down list, you'll notice that 
every library path you added to your CMakeLists file will appear on this dialog 
with the Visual Studio variable ${INTDIR} appended to it. Following that will be 
the library path that you specified verbatim. INTDIR is a special variable that 
Visual Studio will replace with the name of the target you've selected: 'Debug', 
'RelWithDebInfo', etc. The order the paths are listed ensures that VS will look 
for your library in the target-specific directory first before looking at the 
'generic' directory. This behavior can be overridden by passing additional 
parameters to the CMake TARGET_LINK_LIBRARIES command; see the manual for 
details.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Hope this helps.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>-Parag Chandra</FONT></DIV></BODY></HTML>