Revision a2055f6e3d624543e654c4a1565e91557dc9bf47 authored by liqun fu on 27 March 2020, 21:40:05 UTC, committed by liqun fu on 27 March 2020, 21:40:05 UTC
1 parent 80e9f79
Raw File
debug.cmake
# Functionality to aid in the debugging of cmake and the cmake generation process.

if(${CNTK_DEBUG_CMAKE})
    get_cmake_property(_variables VARIABLES)
    list (SORT _variables)
    foreach (_var ${_variables})
        message(STATUS "${_var}=${${_var}}")
    endforeach()
endif()

set(CMAKE_EXPORT_COMPILE_COMMANDS ${CNTK_EXPORT_COMPILE_COMMANDS})
back to top