CMAKE_MESSAGE_INDENT

在 3.16 版本中添加。

message() 命令连接来自此列表的字符串,并且对于 NOTICE 及以下的日志级别,它将结果字符串添加到消息的每一行前面。

示例

list(APPEND listVar one two three)

message(VERBOSE [[Collected items in the "listVar":]])
list(APPEND CMAKE_MESSAGE_INDENT "  ")

foreach(item IN LISTS listVar)
  message(VERBOSE ${item})
endforeach()

list(POP_BACK CMAKE_MESSAGE_INDENT)
message(VERBOSE "No more indent")

这将产生以下输出

-- Collected items in the "listVar":
--   one
--   two
--   three
-- No more indent