cmake:如何包含另一个项目生成的标题

时间:2014-01-23 11:48:57

标签: cmake gflags

gflags 有cmake-migration分支,
它会在${buildir}/include中生成标题 我怎么能包括生成的标题?
是否var赞了gflags_generated_headers? 谢谢!

1 个答案:

答案 0 :(得分:0)

您必须使用Include_directories命令包含整个目录。

INCLUDE_DIRECTORIES($ {buildir} /包括)

然后将特定文件的Generated属性设置为True。

set_source_files_properties($ {buildir} /include/Myheader.h PROPERTIES GENERATED TRUE)