Mode77
Mode77

Reputation: 1041

How do I view the compiler output?

By clicking View > Tool Windows > Messages, I can see the build output messages from the IDE, but I don't see the raw compiler output or warnings. Is there a way I can enable the compiler messages?

Upvotes: 1

Views: 929

Answers (1)

Victor Sergienko
Victor Sergienko

Reputation: 13485

CLion delegates build work to CMake. To see CMake's internal log, add to CMakeLists.txt:

set(CMAKE_VERBOSE_MAKEFILE ON)

Upvotes: 2

Related Questions