📄 groups.jam
字号:
#============================================================================# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -