kfmfe04
kfmfe04

Reputation: 15337

how to ask CMake to hide compile messages?

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

Answers (1)

Lars
Lars

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

Related Questions