Detect in CMake DEBUG. How?
-
wrote on 24 May 2023, 02:53 last edited by
Hello all!
Got confused with simple issue. Detect when QT building in debug mode. How to detect it CMake? -
Hello all!
Got confused with simple issue. Detect when QT building in debug mode. How to detect it CMake?wrote on 24 May 2023, 04:14 last edited by@bogong CMAKE_BUILD_TYPE variable seems promising
-
wrote on 24 May 2023, 05:21 last edited by
Using this script to display all CMake status paras.
get_cmake_property(_variableNames VARIABLES) foreach (_variableName ${_variableNames}) message(STATUS "${_variableName}=${${_variableName}}") endforeach()
1/3