From d21f29c3152d723a0840cc7c8673a5daa9c21036 Mon Sep 17 00:00:00 2001 From: Abhishek Mishra Date: Sun, 29 Sep 2024 19:07:38 +0530 Subject: [PATCH] vscode tasks with emojis --- .vscode/tasks.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 8dfe342..d7a9986 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ "version": "2.0.0", "tasks": [ { - "label": "Generate CMake Build", + "label": "⚙️ Generate Build", "type": "shell", "command": "make", "args": [ @@ -31,7 +31,7 @@ } }, { - "label": "Delete CMake Build", + "label": "🗑️ Delete Build", "type": "shell", "command": "make delbuild", "group": "build", @@ -45,7 +45,7 @@ } }, { - "label": "Build Project", + "label": "⚒️ Build Project", "type": "shell", "command": "make build", "group": "build", @@ -59,7 +59,7 @@ } }, { - "label": "Clean Project", + "label": "🧹 Clean Project", "type": "shell", "command": "make clean", "group": "build", @@ -101,7 +101,7 @@ } }, { - "label": "Run Project", + "label": "▶️ Run Project", "type": "shell", "command": "make run", "presentation": {