You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
408 B
14 lines
408 B
|
|
function(print_var var) |
|
set(value "${${var}}") |
|
string(LENGTH "${value}" value_length) |
|
if(value_length GREATER 0) |
|
math(EXPR last_index "${value_length} - 1") |
|
string(SUBSTRING "${value}" ${last_index} ${last_index} last_char) |
|
endif() |
|
|
|
if(NOT "${last_char}" STREQUAL "\n") |
|
set(value "${value}\n") |
|
endif() |
|
message(STATUS "${var}:\n ${value}") |
|
endfunction()
|
|
|