1 概述
- 本文基于前文环境
本节目标: macro编写与函数编写
2 macro 与 function
- 可类比C语言中的宏定义与函数
- CMake function传递参数时,不用传递参数类型
- cmake macro宏只是对字符串的简单替换。和define类似。
3 macro 语法
- macro需 与 endmacro配对使用
macro(<name> [<arg1> ...])
<commands>
endmacro()
5 function 语法
- function需与endfunction配对使用,
- function可结合return()使用, 也就是说, 函数体可以写 return()
function(<name> [<arg1> ...])
<commands>
endfunction()
6 一个例子帮助理解macro和function的区别
6.1 cmake脚背
set(var_demo "ABC")
# 宏定义
macro(macro_demo arg)
message("arg = ${arg}")
set(arg "123")
message("# after change the value of arg.")
message("arg = ${arg}")
endmacro()
message("")
message("=== call macro ===")
macro_demo(${var_demo})
message("")
message("")
# 函数定义
function(func_demo arg)
message("arg = ${arg}")
set(arg "123")
message("# after change the value of arg.")
message("arg = ${arg}")
endfunction()
message("")
message("=== call function ===")
func_demo(${var_demo})
message("")
message("")
message("")
6.2 输出结果
=== call macro ===
arg = ABC
# after change the value of arg.
arg = ABC
=== call function ===
arg = ABC
# after change the value of arg.
arg = 123
7 function 中使用return
- 类似C语言函数return语句。
7.1 一个例子
function(func_demo_return )
message("11111")
return()
message("22222")
endfunction(func_demo_return )
func_demo_return()
7.2 输出结果
11111
标签:function,cmake,16,windows,macro,demo,arg,return,message From: https://www.cnblogs.com/pandamohist/p/16996232.html因为执行了return(), 所以不会输出
22222