Re: [CMake] foreach and find_library

2007-02-22 Thread Alan W. Irwin
On 2007-02-22 12:12-0800 [EMAIL PROTECTED] wrote: Hi, I'm trying to construct a list of external libraries. This list needs to include the full path and name of each library. This list is to be used with the INSTALL(FILE) command. I'm trying to use FIND_LIBRARY inside a FOREACH loop

Re: [CMake] foreach and find_library

2007-02-22 Thread Werner Smekal
Hi, try to unset/clear FOUND_LIB with SET(FOUND_LIB) before the find_library call - if this variable is set, find_library just returns (at least I think so). Werner [EMAIL PROTECTED] wrote: Hi, I'm trying to construct a list of external libraries. This list needs to include the full