(tool, signatures)
| 273 | tool.preloads.push("mc" + tool.slash + "ffi.xsb"); |
| 274 | } |
| 275 | addMCRunCFile(tool, signatures) { |
| 276 | const source = tool.tmpPath + tool.slash + "mc.ffi.c"; |
| 277 | const file = new TabFile(source, tool); |
| 278 | this.generateCFile(file, signatures, true, tool.windows); |
| 279 | file.close(); |
| 280 | const target = "mc.ffi.c.o"; |
| 281 | tool.cFiles.push({ target, source }); |
| 282 | } |
| 283 | addMCRunCFolder(tool) { |
| 284 | const folders = tool.cFolders; |
| 285 | const directory = tool.xsPath + tool.slash + "includes"; |
no test coverage detected