groups.jam
来自「经典开源游戏glest的源代码」· JAM 代码 · 共 28 行
JAM
28 行
#============================================================================# Rules for building compile groups#============================================================================## CompileGroups target : groups## Adds a target to a list of compile groups. A compile group is a virtual## target which combines several targets. This is usefull for things like a## creating a target which compiles all image loaders, all renderers, ...rule CompileGroups{ local _i ; for _i in $(>) { Depends $(_i) : $(<) ; Depends $(_i)clean : $(<)clean ; }}## RegisterCompileGroups## Registers compilegroups. You must specify all compile groups here before## can use them.rule RegisterCompileGroups{# nothing here (but msvcgen will override this)}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?