(parent, program, project_path)
| 105 | node.attrib['Name'] = file_path |
| 106 | |
| 107 | def CLAddHeaderFiles(parent, program, project_path): |
| 108 | utils.source_ext = [] |
| 109 | utils.source_ext = ["h"] |
| 110 | for item in program: |
| 111 | utils.walk_children(item) |
| 112 | utils.source_list.sort() |
| 113 | |
| 114 | for f in utils.source_list: |
| 115 | path = _make_path_relative(project_path, f) |
| 116 | CLAddFile(parent, path) |
| 117 | |
| 118 | def CLAddCFiles(parent, files, project_path): |
| 119 | for f in files: |
no test coverage detected