6 lines
102 B
CMake
6 lines
102 B
CMake
|
function(debug_message)
|
||
|
if(${Flag_VerboseOutput})
|
||
|
message(STATUS "${ARGV}")
|
||
|
endif()
|
||
|
endfunction()
|