Re: [CMake] FindPythonLibs

2007-02-22 Thread Andreas Schneider
Karl Merkley wrote: I'm linking an app with the python library and I have a requirement to link with the shared library not the static library. It appears that FindPythonLibs has no way of specifying shared vs. static. The shared lib actually is installed in /usr/lib. The static lib

[CMake] disabling progress report ?

2007-02-22 Thread Alexander Neundorf
Hi, I thought there would be a cmake variable like CMAKE_ENABLE_PROGRESS but I didn't find one (to enable/disable the progress percentage). Is it switchable or did I just not find it ? Bye Alex -- Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! Ideal für Modem und ISDN:

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