Remove echo in report_size function

The output is separate by two lines anyway.
This commit is contained in:
Guðni Már Gilbert 2023-01-28 18:53:31 +00:00
parent 15932123db
commit f9b779e274
1 changed files with 0 additions and 1 deletions

View File

@ -58,7 +58,6 @@ endfunction()
function(report_size target)
add_custom_command(
TARGET ${target} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E echo "" # visually separate the output
COMMAND "${CMAKE_SIZE_UTIL}" -B "$<TARGET_FILE:${target}>"
USES_TERMINAL
)