Add tasks for compiling P# on Unix-like OS

This commit is contained in:
Rafal Kupiec 2018-07-15 11:34:32 +02:00
parent e9c61bd49a
commit ac3f78785a
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 34 additions and 0 deletions

34
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,34 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Unix Build",
"type": "shell",
"command": "make",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
}
},
{
"label": "Unix Clean",
"type": "shell",
"command": "make",
"args": [
"clean"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
}
}
]
}