0

What’s up everyone!

I’m very new to CMake and unfortunately have to go knee-deep into it blind. I'm running windows 10, CMake 3.5.0, CLion IDE.

The software developer demands for the verbose output log, but I can't figure this one out.

I’ve put set(CMAKE_VERBOSE_MAKEFILE ON) line to CMakeLists.txt to enable the Verbose mode. src: https://cmake.org/cmake/help/latest/variable/CMAKE_VERBOSE_MAKEFILE.html

But I can't figure out where the hell I'm supposed to be getting the output.

I know you CMake gurus will be like LOL, but it is a hard ball for me yet, hopefully not for too long.

Many thanks in advance!

Mizux
  • 8,222
  • 7
  • 32
  • 48

1 Answers1

0

At the bottom of your CLion IDE window you should see various tabs such as Messages and CMake. Clicking on Messages will give you the console for build output, and clicking on CMake should give you the console for CMake's configure output. See screenshot below:

enter image description here

gomfy
  • 637
  • 8
  • 16