Skip to content

Commit

Permalink
Add VSCode configuration to execute commands easily
Browse files Browse the repository at this point in the history
  • Loading branch information
matco committed Jul 24, 2023
1 parent dc94388 commit 9429f71
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "monkeyc",
"request": "launch",
"name": "Run",
"stopAtLaunch": false,
"device": "${command:GetTargetDevice}"
},
{
"type": "monkeyc",
"request": "launch",
"name": "Run on Fenix 7",
"stopAtLaunch": false,
"device": "fenix7"
},
{
"type": "monkeyc",
"request": "launch",
"name": "Run tests",
"runTests": true,
"device": "${command:GetTargetDevice}"
},
{
"type": "monkeyc",
"request": "launch",
"name": "Run tests on Fenix 7",
"runTests": true,
"device": "fenix7"
},
]
}

0 comments on commit 9429f71

Please sign in to comment.