common.mak
来自「这是VCF框架的代码」· MAK 代码 · 共 21 行
MAK
21 行
<config name="GCC Debug"> <!-- un-comment this out if you want to add custom include paths for this configuration. <include path=""/> --> <!-- compiler tool --> <tool id="cc" name="g++" type=".cc;.cpp;.cxx"> <flags value="-o $(dependency.output) -g -I ./ -D _DEBUG -c "/> <exec command="g++ -o $(dependency.output) -g -I ./ -D _DEBUG -c $(dependency.name) "/> </tool> <!-- linker tool --> <tool id="link" name="g++" > <flags value="-o "/> <exec command="g++ -o $(target.output) $(dependsOn.children.output) "/> </tool></config><variable name="obj_ext" value="o"/>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?