(target)
| 70 | file_name.text = '$PROJ_DIR$\\' + path # ('$PROJ_DIR$\\' + path).decode(fs_encoding) |
| 71 | |
| 72 | def IARWorkspace(target): |
| 73 | # make an workspace |
| 74 | workspace = target.replace('.ewp', '.eww') |
| 75 | out = open(workspace, 'w') |
| 76 | xml = iar_workspace % target |
| 77 | out.write(xml) |
| 78 | out.close() |
| 79 | |
| 80 | def IARProject(env, target, script): |
| 81 | project_path = os.path.dirname(os.path.abspath(target)) |
no test coverage detected