Makefile can be also used on Windows, but it needs some tweaks

This commit is contained in:
Rafal Kupiec 2018-07-15 11:54:00 +02:00
parent 0178ff0495
commit 4b05081d4a
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

19
.vscode/tasks.json vendored
View File

@ -4,7 +4,7 @@
"version": "2.0.0",
"tasks": [
{
"label": "Unix Build",
"label": "Build P# Interpreter",
"type": "shell",
"command": "make",
"group": {
@ -16,7 +16,7 @@
}
},
{
"label": "Unix Clean",
"label": "Clean P# Interpreter",
"type": "shell",
"command": "make",
"args": [
@ -29,6 +29,21 @@
"presentation": {
"reveal": "silent"
}
},
{
"label": "Style P# Code",
"type": "shell",
"command": "make",
"args": [
"style"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
}
}
]
}