meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

sw:vscode:tasks [2024/04/03 08:55] (current)
niziak created
Line 1: Line 1:
 +====== .vscode/​tasks.json ======
 +
 +<file json .vscode/​tasks.json>​
 +{
 +    // See https://​go.microsoft.com/​fwlink/?​LinkId=733558
 +    // for the documentation about the tasks.json format
 +    "​version":​ "​2.0.0",​
 +    "​tasks":​ [
 +        {
 +            "​label":​ "​BUILD",​
 +            "​type":​ "​shell",​
 +            "​command":​ "make -C examples/​blinky",​
 +            "​problemMatcher":​ ["​$gcc"​],​
 +            "​group":​ {
 +                "​kind":​ "​build",​
 +                "​isDefault":​ true
 +            },
 +            "​presentation":​ {
 +                "​clear":​ true
 +            }
 +        }
 +    ]
 +}
 +</​file>​
 +
 +To clear terminal window before starting new build task: ''"​presentation":​ { "​clear":​ true } ''​