我发现了类似的东西,但它不起作用。无法理解,在这里初始化变量show_contents_prog - 什么意思' cat'和'键入' 任何人都能以正确的方式提供帮助吗?
if (UNIX)
set (show_contents_prog cat)
elseif (WIN32)
set (show_contents_prog type)
endif (WIN32)
execute_process(COMMAND ${show_contents_prog} input.txt OUTPUT_VARIABLE file_contents)