Hello
I have cmake build tree containing three git submodules built with add_subdirectory().
First of them contains add_custom_command() and the command contains shell script running cpack and some shell commands and it creates *.deb package.
Build of this one submodule makes strange problem, when it built all source files and runs custom command then cmake progress output stays disabled (I mean displaying of [XX%] with full path to *.c compiled file). After this step only output of another shell scripts are displayed in terminal to the end of whole build even it finishes successfully. No error messages.
When I disable building of this submodule and leave to build another submodules, all is ok, and make displays cmake progress to the end of whole build even they also contains similar custom command with shell script.
I known that it is cosmetic problem, but I’d like to have complete build log with all lines.
What should I check, any ideas ?