Add tasks.json, and makefile updates

This commit is contained in:
2023-02-20 17:51:59 -05:00
parent 175cbf3097
commit 3ca56d7776
3 changed files with 30 additions and 4 deletions

30
luprex/.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,30 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build luprex",
"type": "shell",
"command": "make",
"problemMatcher": {
"base": "$gcc",
"fileLocation": [
"relative",
"${workspaceFolder}"
]
},
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"clear": true,
"reveal": "always",
"panel": "shared",
"revealProblems": "never"
}
},
]
}

View File

@@ -1,2 +0,0 @@
clear
make OS=mingw main.exe

View File

@@ -1,2 +0,0 @@
#!/bin/sh
make OS=linux main