From a569a97d956cc152aa75042fb89590edebc77c02 Mon Sep 17 00:00:00 2001 From: Subham Sangwan Date: Sun, 15 Jun 2025 08:30:08 +0530 Subject: [PATCH 1/2] chore: remove Visual Studio-related files for cross-platform cleanup --- Code Samples/Fib/build.cmd | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 Code Samples/Fib/build.cmd diff --git a/Code Samples/Fib/build.cmd b/Code Samples/Fib/build.cmd deleted file mode 100644 index 821c62747..000000000 --- a/Code Samples/Fib/build.cmd +++ /dev/null @@ -1,2 +0,0 @@ -SET PATH=%PATH%;%1 -g++ -g *.cpp -lpthread --std=c++11 -O0 -o %2 \ No newline at end of file From 62189d5dc1d232c6fe0a4b43af243cb6942cad73 Mon Sep 17 00:00:00 2001 From: Subham Sangwan Date: Mon, 16 Jun 2025 18:04:08 +0530 Subject: [PATCH 2/2] chore: remove build.cmd reference from tasks.json --- Code Samples/Fib/.vscode/tasks.json | 87 +++++++++++++---------------- 1 file changed, 39 insertions(+), 48 deletions(-) diff --git a/Code Samples/Fib/.vscode/tasks.json b/Code Samples/Fib/.vscode/tasks.json index 104a10aad..b6229748b 100644 --- a/Code Samples/Fib/.vscode/tasks.json +++ b/Code Samples/Fib/.vscode/tasks.json @@ -1,50 +1,41 @@ { - // 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", - "group": { - "kind": "build", - "isDefault": true - }, - "presentation": { - "echo": true, - "reveal": "always", - "focus": false, - "panel": "shared" - }, - "windows": { - "command": "${workspaceRoot}/build.cmd", - "args": [ - "", // Path to the bin folder containing g++ to compile - "fib.exe" // Output executable name - ] - }, - "linux": { - "command": "g++", - "args": [ - "-g", - "*.cpp", - "-lpthread", - "--std=c++11", - "-o", - "fib.out" - ] - }, - "osx": { - "command": "g++", - "args": [ - "-g", - "*.cpp", - "-lpthread", - "--std=c++11", - "-o", - "fib.out" - ] - } - } - ] + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "type": "shell", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "echo": true, + "reveal": "always", + "focus": false, + "panel": "shared" + }, + "linux": { + "command": "g++", + "args": [ + "-g", + "*.cpp", + "-lpthread", + "--std=c++11", + "-o", + "fib.out" + ] + }, + "osx": { + "command": "g++", + "args": [ + "-g", + "*.cpp", + "-lpthread", + "--std=c++11", + "-o", + "fib.out" + ] + } + } + ] }