Re: [CMake] clean custom_target

2016-10-27 Thread Tiago Macarios
Thanks Steve. I added a comment to the gitlab thread. On Wed, Oct 26, 2016 at 6:57 AM, Steve Lorimer wrote: > There is an open issue about just this. > > If ADDITIONAL_MAKE_CLEAN_FILES doesn't work for you, you may want to make > your case on the issue > >

Re: [CMake] clean custom_target

2016-10-26 Thread Steve Lorimer
There is an open issue about just this. If ADDITIONAL_MAKE_CLEAN_FILES doesn't work for you, you may want to make your case on the issue https://gitlab.kitware.com/cmake/cmake/issues/16358 On 26 October 2016 at 00:59, Petr Kmoch wrote: > Hi Tiago. > > The best I can

Re: [CMake] clean custom_target

2016-10-26 Thread Petr Kmoch
Hi Tiago. The best I can think of is the directory property ADDITIONAL_MAKE_CLEAN_FILES: https://cmake.org/cmake/help/latest/prop_dir/ADDITIONAL_MAKE_CLEAN_FILES.html You can set it to a list of files which will be removed as part of running `make clean` or its equivalent for other generators.

[CMake] clean custom_target

2016-10-25 Thread Tiago Macarios
Hi, Is there a way to have a command to be run during a clean? I have a custom_target which does a fair bit of things and it also has the ability to clean up after itself. So conceptually something like this is what I am looking for: add_custom_target(Name ALL COMMAND command