(parent, files, project_path)
| 116 | CLAddFile(parent, path) |
| 117 | |
| 118 | def CLAddCFiles(parent, files, project_path): |
| 119 | for f in files: |
| 120 | fn = f.rfile() |
| 121 | name = fn.name |
| 122 | path = os.path.dirname(fn.abspath) |
| 123 | |
| 124 | path = _make_path_relative(project_path, path) |
| 125 | path = os.path.join(path, name) |
| 126 | CLAddFile(parent, path) |
| 127 | |
| 128 | |
| 129 |
no test coverage detected