Browse Source

优化cbp脚本

heyuanjie 7 years ago
parent
commit
10d26fd3f8
1 changed files with 2 additions and 1 deletions
  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
     '''