(root, path)
| 52 | node.attrib['Assembler'] = flags |
| 53 | |
| 54 | def CLAddIncludePath(root, path): |
| 55 | node = root.find('Settings').find('Configuration').find('Compiler') |
| 56 | node = SubElement(node, 'IncludePath') |
| 57 | node.attrib['Value'] = path |
| 58 | |
| 59 | def CLAddPreprocessor(root, value): |
| 60 | node = root.find('Settings').find('Configuration').find('Compiler') |