summaryrefslogtreecommitdiff
path: root/picl-firmware/.vscode/tasks.json
diff options
context:
space:
mode:
Diffstat (limited to 'picl-firmware/.vscode/tasks.json')
-rw-r--r--picl-firmware/.vscode/tasks.json7
1 files changed, 3 insertions, 4 deletions
diff --git a/picl-firmware/.vscode/tasks.json b/picl-firmware/.vscode/tasks.json
index 069c853..5512abb 100644
--- a/picl-firmware/.vscode/tasks.json
+++ b/picl-firmware/.vscode/tasks.json
@@ -6,17 +6,16 @@
{
"type": "shell",
"label": "avr-gcc build active file",
- "command": "/bin/avr-gcc",
+ "command": "/usr/bin/avr-gcc",
"args": [
"-mmcu=attiny24",
"-g",
"${file}",
+ "-I",
+ "/usr/include/simavr/",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
- "options": {
- "cwd": "/bin"
- },
"problemMatcher": [
"$gcc"
],