Re: [CMake] custom command comments not showing up

2017-04-10 Thread Robert Dailey
Seems like the solution here is to make COMMENT work properly/consistently across all generators. That's the point, after all, right? On Sat, Apr 8, 2017 at 12:33 AM, Hendrik Sattler wrote: > However, this messes up parallel make progress output. > > Am 7. April 2017

Re: [CMake] custom command comments not showing up

2017-04-07 Thread Hendrik Sattler
However, this messes up parallel make progress output. Am 7. April 2017 22:22:08 MESZ schrieb Craig Scott : >Unfortunately, COMMENT is unreliable. Some generators will honour it, >others won't. A more robust alternative is to use CMake's command mode >to >echo the comment

Re: [CMake] custom command comments not showing up

2017-04-07 Thread Craig Scott
Unfortunately, COMMENT is unreliable. Some generators will honour it, others won't. A more robust alternative is to use CMake's command mode to echo the comment instead. Eg: add_custom_command( TARGET zApp_zip POST_BUILD COMMAND ${CMAKE_COMMAND} -E echo "test2" COMMAND