I noticed that while running the cygwin version of CMake 2.6.0 the
following variables are set:

CMAKE_FIND_LIBRARY_SUFFIXES = .dll;.dll.a;.a
CMAKE_FIND_LIBRARY_PREFIXES = cyg;lib

Is there a reason why they couldn't be set to this:

# Adds .lib to the list
CMAKE_FIND_LIBRARY_SUFFIXES = .dll;.dll.a;.a;.lib
# Adds "" to the list
CMAKE_FIND_LIBRARY_PREFIXES = cyg;lib;

I believe that .lib files can be linked against using cygwin gcc.

Thanks,
James
_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to