Debugging code
First, let’s look at ways to debug a CMakeLists or other CMake file.
The time honored method of print statements looks like this in CMake:
If you want to print out a property, this is much, much nicer! Instead of getting the properties one by one of of each target (or other item with properties, such as , DIRECTORIES
, TESTS
, or - global properties seem to be missing for some reason), you can simply list them and get them printed directly:
Tracing a run
Have you wanted to watch exactly what happens in your CMake file, and when? The --trace-source="filename"
feature is fantastic. Every line run in the file that you give will be echoed to the screen when it is run, letting you follow exactly what is happening. There are related options as well, but they tend to bury you in output.
If you add --trace-expand
, the variables will be expanded into their values.
Building in debug mode
For single-configuration generators, you can build your code with to get debugging flags. In multi-configuration generators, like many IDEs, you can pick the configuration in the IDE. There are distinct flags for this mode (variables ending in _DEBUG
as opposed to _RELEASE
), as well as a generator expression value or CONFIG:Release
.