Re: [CMake] Possible to dynamically construct macro/function names to invoke?

2015-08-10 Thread Petr Kmoch
Hi, Eric. On Mon, Jul 20, 2015 at 12:52 AM, Eric Wing wrote: > I would like to dynamically construct a macro or function name to > invoke. I basically have a core CMake system I want users to be able > to extend/plug stuff into without knowing about a lot of the core > CMake implementation. Call

[CMake] Does SET_TARGET_PROPERTIES(foo PROPERTIES INSTALL_RPATH /path1; /path2) still silently ignore path2?

2015-08-10 Thread Dan Kegel
With cmake 2.8.12.2, SET_TARGET_PROPERTIES (foo PROPERTIES INSTALL_RPATH ${my_install_rpath}) silently only obeys the first directory in the rpath, but SET_TARGET_PROPERTIES (foo PROPERTIES INSTALL_RPATH "${my_install_rpath}") works. Is it still that way in the latest cmake, and is there alre

Re: [CMake] Does SET_TARGET_PROPERTIES(foo PROPERTIES INSTALL_RPATH /path1; /path2) still silently ignore path2?

2015-08-10 Thread Nils Gladitz
On 08/11/2015 12:51 AM, Dan Kegel wrote: With cmake 2.8.12.2, SET_TARGET_PROPERTIES (foo PROPERTIES INSTALL_RPATH ${my_install_rpath}) silently only obeys the first directory in the rpath, but SET_TARGET_PROPERTIES (foo PROPERTIES INSTALL_RPATH "${my_install_rpath}") works. Is it still that