在 meson.build 文件中,我定义了一些文件:
file = files("my_filename.ext")
要建立一个 ID,我尝试写:
myTgt = "_other_ext" + file[0][0]
然后我有这个错误:
meson.build:257:4: ERROR: Invalid use of addition: must be str, not File
如何将文件对象转换为有效字符串?(我尝试添加 .string(),但这不是解决方案)