According to https://cmake.org/cmake/help/latest/command/message.html I can use message(VERBOSE "some text")
to log “Detailed informational messages intended for project users”. But somehow I can’t manage to get these messages to display.
What I’ve tried so far:
cmake -v ..
cmake --verbose=3 ..
cmake -DVERBOSE=1 ..
env VERBOSE=1 cmake ..
-
cmake --debug-output ..
(this gives way too much output, but my verbose messages are still not shown)
What options or settings do I need to use to see these messages that are logged with mode “VERBOSE”? I’m using CMake 3.17 under RHEL 7.
Thanks, Oliver