qt pro 里面变量的引用

来源:互联网 发布:网络与生活论文2000字 编辑:程序博客网 时间:2024/06/05 00:10
  • VAR = foobar => Assign value to variable when qmake is run
  • $$VAR => QMake variable's value at the time qmake is run
  • $${VAR} => QMake variable's value at the time qmake is run (identical but enclosed to separate from surrounding text)
  • $(VAR) => Contents of an Environment variable at the time Makefile (not qmake) is run
  • $$(VAR) =>Contents of an Environment variable at the time qmake (not Makefile) is run
0 0
原创粉丝点击