Explorar el Código

优化cbp脚本

heyuanjie hace 7 años
padre
commit
10d26fd3f8
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      tools/codeblocks.py

+ 2 - 1
tools/codeblocks.py

@@ -108,7 +108,8 @@ def CBProject(target, script, program):
 
         for macro in building.Env.get('CPPDEFINES', []):
             Add = SubElement(elem, 'Add')
-            Add.set('option', "-D"+macro[0])
+            for d in macro:
+                Add.set('option', "-D"+d)
         
         # write link flags
     '''