Re: [cmake-developers] Misleading documentation for list(APPEND ....) signature

2013-12-18 Thread Brad King
On 12/17/2013 08:52 PM, Alan W. Irwin wrote: The documentation says list(APPEND list element [element ...]) That should be changed to list(APPEND list [element ...]) This was already done recently: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=eec7834e -Brad -- Powered by

[cmake-developers] Misleading documentation for list(APPEND ....) signature

2013-12-17 Thread Alan W. Irwin
The documentation says list(APPEND list element [element ...]) That should be changed to list(APPEND list [element ...]) The first form of documentation implies at least one element is mandatory, but this test case shows otherwise. software@raven cat test.cmake set(LIB_INSTALL_RPATH a b c)