Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SOURCE_GROUP(Test FILES ${Test_files})
检查文档,FILES应该是正则表达式。但FILES这里的意思是什么?
FILES
不确定您正在查看哪些文档,但v2.8.8的文档显示签名为:
source_group(name [REGULAR_EXPRESSION regex] [FILES src1 src2 ...])
因此,在这种情况下,“FILES”表示 中指定的文件列表${Test_files}应放在名为“Test”的组(或 MSVC 的文件选项卡)中。
${Test_files}