Skip to content

Commit

Permalink
build: add vscode build tasks for A380X and A32NX (#9634)
Browse files Browse the repository at this point in the history
  • Loading branch information
heclak authored Dec 8, 2024
1 parent be06c3f commit 3ba807b
Showing 1 changed file with 55 additions and 1 deletion.
56 changes: 55 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
},
{
"label": "Build",
"label": "Build A32NX and A380X(8K)",
"type": "shell",
"command": "${workspaceFolder}/scripts/dev-env/run.sh",
"args": ["./scripts/build.sh"],
Expand All @@ -36,6 +36,60 @@
"kind": "build",
"isDefault": true
}
},
{
"label": "Build A32NX",
"type": "shell",
"command": "${workspaceFolder}/scripts/dev-env/run.sh",
"args": ["./scripts/build_a32nx.sh"],
"windows": {
"command": "${workspaceFolder}/scripts/dev-env/run.cmd",
"args": ["./scripts/build_a32nx.sh"]
},
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build A380X(4K)",
"type": "shell",
"command": "${workspaceFolder}/scripts/dev-env/run.sh",
"args": ["./scripts/build_a380x.sh", "-4k"],
"windows": {
"command": "${workspaceFolder}/scripts/dev-env/run.cmd",
"args": ["./scripts/build_a380x.sh", "-4k"]
},
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build A380X(8K)",
"type": "shell",
"command": "${workspaceFolder}/scripts/dev-env/run.sh",
"args": ["./scripts/build_a380x.sh"],
"windows": {
"command": "${workspaceFolder}/scripts/dev-env/run.cmd",
"args": ["./scripts/build_a380x.sh"]
},
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit 3ba807b

Please sign in to comment.