diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-04-26 12:39:22 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-04-26 12:39:22 +0200 |
commit | d067eacc112f2453e95f0dde89bb0f60f170a195 (patch) | |
tree | a8066fb861ecaa2162e6e9683fb201d4e1600fe7 /.vscode/tasks.json | |
parent | 8db9589e6ca1757a5c5224fe5b913828d9ec0cb3 (diff) |
project restructure + help in readme.md
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..056c4b9 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,58 @@ +{ + "version": "2.0.0", + "command": "sh", + "options": { "cwd": "${workspaceFolder}" }, + "args": [ "-c" ], + "tasks": [ + { + "label": "build client", + "group": { + "isDefault": false, + "kind": "build" + }, + "args": [ "make", "-C", "client" ], + "command": "", + "type": "shell" + }, + { + "label": "build robot", + "group": { + "isDefault": false, + "kind": "build" + }, + "args": [ "make", "-C", "robot" ], + "command": "", + "type": "shell" + }, + { + "label": "flash robot", + "group": { + "isDefault": false, + "kind": "test" + }, + "args": [ "make", "flash", "-C", "robot" ], + "command": "", + "type": "shell" + }, + { + "label": "clean directories", + "group": { + "isDefault": false, + "kind": "none" + }, + "args": [ "make", "clean" ], + "command": "", + "type": "shell" + }, + { + "label": "format source files", + "group": { + "isDefault": false, + "kind": "none" + }, + "args": [ "make", "format" ], + "command": "", + "type": "shell" + }, + ] +} |