Remove echo in report_size function
The output is separate by two lines anyway.
This commit is contained in:
parent
15932123db
commit
f9b779e274
|
|
@ -58,7 +58,6 @@ endfunction()
|
||||||
function(report_size target)
|
function(report_size target)
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
TARGET ${target} POST_BUILD
|
TARGET ${target} POST_BUILD
|
||||||
COMMAND ${CMAKE_COMMAND} -E echo "" # visually separate the output
|
|
||||||
COMMAND "${CMAKE_SIZE_UTIL}" -B "$<TARGET_FILE:${target}>"
|
COMMAND "${CMAKE_SIZE_UTIL}" -B "$<TARGET_FILE:${target}>"
|
||||||
USES_TERMINAL
|
USES_TERMINAL
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue