Detect in CMake DEBUG. How?
-
Hello all!
Got confused with simple issue. Detect when QT building in debug mode. How to detect it CMake? -
Using this script to display all CMake status paras.
get_cmake_property(_variableNames VARIABLES) foreach (_variableName ${_variableNames}) message(STATUS "${_variableName}=${${_variableName}}") endforeach()