From 3ca56d7776d1daaf6c5c2f64cd10c29322477628 Mon Sep 17 00:00:00 2001 From: jyelon Date: Mon, 20 Feb 2023 17:51:59 -0500 Subject: [PATCH] Add tasks.json, and makefile updates --- luprex/.vscode/tasks.json | 30 ++++++++++++++++++++++++++++++ luprex/build.bat | 2 -- luprex/build.sh | 2 -- 3 files changed, 30 insertions(+), 4 deletions(-) create mode 100644 luprex/.vscode/tasks.json delete mode 100644 luprex/build.bat delete mode 100755 luprex/build.sh diff --git a/luprex/.vscode/tasks.json b/luprex/.vscode/tasks.json new file mode 100644 index 00000000..6fc713ce --- /dev/null +++ b/luprex/.vscode/tasks.json @@ -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" + } + }, + ] +} \ No newline at end of file diff --git a/luprex/build.bat b/luprex/build.bat deleted file mode 100644 index a333ebb4..00000000 --- a/luprex/build.bat +++ /dev/null @@ -1,2 +0,0 @@ -clear -make OS=mingw main.exe diff --git a/luprex/build.sh b/luprex/build.sh deleted file mode 100755 index 91b87d1b..00000000 --- a/luprex/build.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -make OS=linux main