Reputation: 15337
Recently, while building mysql-connector-c++-1.1.0, I noticed that cmake was only displaying the top level [xx%] Building CXX object CMakeFiles/... messages and not displaying the compile messages at all (Warnings, however, were displayed).
I strongly prefer this lower verbosity.
How do I configure my own CMakeLists.txt to behave this way?
Upvotes: 1
Views: 1010
Reputation: 1466
That is the default behavior. See CMAKE_VERBOSE_MAKEFILE.
Did you turn it on by make VERBOSE=1
or in your main CMakeLists.txt
?
Upvotes: 2