Re: [CMake] CMake 2.8.8-rc1, Ninja generator, and clean target

2012-05-18 Thread Nicolas Desprès
On Wed, May 16, 2012 at 11:54 PM, Peter Collingbourne pe...@pcc.me.uk wrote: On Mon, Apr 02, 2012 at 02:21:10PM +0200, Nicolas Desprès wrote: Hi, It looks like an issue in the generator. The symlink is created as a side effect of a rule and not mentioned in the output files. That's why it

Re: [CMake] CMake 2.8.8-rc1, Ninja generator, and clean target

2012-05-16 Thread Peter Collingbourne
On Mon, Apr 02, 2012 at 02:21:10PM +0200, Nicolas Desprès wrote: Hi, It looks like an issue in the generator. The symlink is created as a side effect of a rule and not mentioned in the output files. That's why it does not get removed. I have pushed a patch on my CMake's github clone that

Re: [CMake] CMake 2.8.8-rc1, Ninja generator, and clean target

2012-04-02 Thread Nicolas Desprès
Hi, It looks like an issue in the generator. The symlink is created as a side effect of a rule and not mentioned in the output files. That's why it does not get removed. I have pushed a patch on my CMake's github clone that should fix the issue without breaking cmake's test suite. Although it

[CMake] CMake 2.8.8-rc1, Ninja generator, and clean target

2012-03-31 Thread Clifford Yapp
Trying to run the clean target with the Ninja generator in the latest CMake, I noticed that on targets with version properties set like (say): set_target_properties(libbu PROPERTIES VERSION 19.0.1 SOVERSION 19) the ninja -t clean command does not remove the libbu.so.19 link. Has anyone else