如何获得导出集中的目标列表?

时间:2019-05-25 18:41:46

标签: cmake

我正在使用以下命令安装目标:

ggplot(df) + geom_line(aes(x=x, y=y), color="blue", size = 3) +
  geom_hline(aes(yintercept=100), linetype = 2) +
  geom_vline(aes(xintercept=4), linetype = 2) +
  annotate("segment", x=-5, xend = 4, y=250, yend = 250, 
           arrow=arrow(ends = "both"), color="black", size=1.5) +
  annotate("text", x=(-5+4)/2, y=300, label="Text", color = "red") +
  annotate("segment", x=4, xend = 8.5, y=750, yend = 750, 
           arrow=arrow(ends = "both"), color="black", size=1.5) +
  annotate("text", x=(8.55+4)/2, y=800, label="Text", color = "red")

在通过多个install(TARGETS my_target EXPORT my_export_set ...) 命令向导出集中添加了多个目标之后,如何获得导出集中包含的目标列表?我正在寻找这样的东西:

install

0 个答案:

没有答案
相关问题