os command fix

This commit is contained in:
fruitstaa 2018-12-06 06:46:35 +01:00
parent bd0175fcda
commit 0ba7659dea

36
.vscode/tasks.json vendored
View file

@ -12,26 +12,46 @@
{
"label": "Run Exercise 1",
"type": "shell",
"command": "build/bin/./Exercise1",
"problemMatcher": []
"problemMatcher": [],
"osx": {
"command": "open build/bin/Exercise1.app"
},
"linux": {
"command": "build/bin/./Exercise1",
}
},
{
"label": "Run Exercise 2",
"type": "shell",
"command": "build/bin/./Exercise2",
"problemMatcher": []
"problemMatcher": [],
"osx": {
"command": "open build/bin/Exercise2.app"
},
"linux": {
"command": "build/bin/./Exercise2",
}
},
{
"label": "Run Exercise 3",
"type": "shell",
"command": "build/bin/./Exercise3",
"problemMatcher": []
"problemMatcher": [],
"osx": {
"command": "open build/bin/Exercise3.app"
},
"linux": {
"command": "build/bin/./Exercise3",
}
},
{
"label": "Run Exercise 4",
"type": "shell",
"command": "build/bin/./Exercise4",
"problemMatcher": []
"problemMatcher": [],
"osx": {
"command": "open build/bin/Exercise4.app"
},
"linux": {
"command": "build/bin/./Exercise4",
}
}
]
}