Fixing MAC build

This commit is contained in:
Raydelto Hernandez 2019-03-09 02:26:34 -04:00
parent 25d7c4f2c9
commit cfed6d4cd8
7 changed files with 43 additions and 19 deletions

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"files.associations": {
"iostream": "cpp"
}
}

16
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "cd ~/git/polly-b-gone/&&make&&cd obj/Polly-B-Gone.app/&&./Contents/MacOS/Polly-B-Gone",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}