CMake 07 设置/获取目标的属性

  1 设置目标的属性

set_target_properties(target1 target2 ...
                      PROPERTIES prop1 value1
                      prop2 value2 ...)
target1 target2:指定要设置属性的目标
prop1 value1:指定要设置的属性名和值

2 获取目标属性

get_target_property(<VAR> target property)
从target中获取属性名为property的值存放到变量VAR中

CMake 07 设置/获取目标的属性

 

 




上一篇:类加载、对象实例化知识点一网打尽


下一篇:pandas 生成新的Dataframe