options.jam

来自「经典开源游戏glest的源代码」· JAM 代码 · 共 22 行

JAM
22
字号
#============================================================================# Rule for setting options at targets#============================================================================#----------------------------------------------------------------------------# private rule - please specify the options in Application, Plugin or Library# rule and don't use this rule here directly.##  CheckOptions candidates : Options : targetrule CheckOptions{  local i ;  for i in $(>)  {    if ! [ IsElem $(i) : $(<) ]    {      echo "WARNING: Unknown option $(i) specified at $(3)." ;    }  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?