Skip to content

Commit

Permalink
add vscode task: build window
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Jun 16, 2024
1 parent adafd93 commit 62b9466
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"version": "2.0.0",
"tasks": [

//-- Execute Icestudio!
{
"label": "Run Icestudio",
Expand All @@ -13,7 +14,7 @@

//-- Build Icestudio for Linux!
{
"label": "BuildLinux64",
"label": "Build Linux64",
"detail": "npm buildLinux64",
"type": "npm",
"script": "buildLinux64",
Expand All @@ -22,6 +23,17 @@

},

//-- Build Icestudio for Windows!
{
"label": "Build Windows",
"detail": "npm buildWindows",
"type": "npm",
"script": "buildWindows",
"group": "build",
"problemMatcher": [],

},

{
"type": "grunt",
"task": "getcollection",
Expand Down

0 comments on commit 62b9466

Please sign in to comment.