Skip to content

Instantly share code, notes, and snippets.

@BonyChops
Created October 10, 2020 09:25
Show Gist options
  • Save BonyChops/e2c1e11d97cefb7b53b8eff80a5f47af to your computer and use it in GitHub Desktop.
Save BonyChops/e2c1e11d97cefb7b53b8eff80a5f47af to your computer and use it in GitHub Desktop.
.vscode files for HEW projects
{
"files.encoding": "shiftjis",
"C_Cpp.default.includePath": [
"C:\\Program Files (x86)\\Renesas\\Hew\\Tools\\Renesas\\Sh\\9_4_3\\include",
"${default}"
]
}
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "HEW: hmake build active file",
"command": "hmake",
"args": [
"${fileBasenameNoExtension}_Debug.mak",
"CONFIG=Debug"
],
"options": {
"cwd": "${workspaceFolder}\\make"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": {
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceFolder}\\make"
],
"pattern": {
"regexp": "^(.*)\\((\\d+)\\) : (.*)$",
"file": 1,
"line": 2,
"location": 2,
"message": 3
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment