Suppress Microsoft copyright banner. (#12114)

This commit is contained in:
Doug Richardson
2020-04-13 15:42:50 -07:00
committed by GitHub
parent bf58c00071
commit 05fd647770

View File

@@ -220,7 +220,7 @@ set(gen_cflags ${gen_cflags} ${C_FLAGS_${build_type}_ARRAY} ${C_FLAGS_ARRAY})
function(get_preproc_output varname iname) function(get_preproc_output varname iname)
if(MSVC) if(MSVC)
set(${varname} /P /Fi${iname} PARENT_SCOPE) set(${varname} /P /Fi${iname} /nologo PARENT_SCOPE)
else() else()
set(${varname} -E -o ${iname} PARENT_SCOPE) set(${varname} -E -o ${iname} PARENT_SCOPE)
endif() endif()