Hi,<br><br>I am using Cygwin on Windows, using CMake <a href="http://2.6.2./" target="_blank">2.6.2.</a>
I was originally debugging FindBoost, when I narrowed the problem down
to FIND_LIBRARY. This simple statement does not find the library:<br>
<br>SET (CMAKE_FIND_LIBRARY_SUFFIXES .a)<br>FIND_LIBRARY(NAMES test HINTS /usr/local/lib)<br><br>However, this works:<br><br>
FIND_LIBRARY(NAMES test.a HINTS /usr/local/lib)<br>
<br>Is this a known bug (that's only prevalent on Cygwin)? To solve my
problem with FindBoost, I had to manually add in the ".a" into the
FIND_LIBRARY command.<br><br>Thanks,<br><font color="#888888">Oliver</font>