Guess it is obvious, that "Linking CXX executable demo1" is not a command, that does something on your system.

make processes commands from a Makefile, that has been generated from cmake. In your case you have configured cmake in a way, that the rules in the Makefile suppress the echoing of the executed command.
I'm not familiar with cmake, but in case of qmake it would be "CONFIG += silent"

So you have 2 options:

  • configure cmake without this silent mode
  • edit the Makefile ( grep for "Linking" ) and modify the rule manually


Uwe