From 4c65fc95b5aa364a8331c44fddcc6110b28826ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me?= Date: Wed, 28 Feb 2024 16:59:15 +0100 Subject: [PATCH] remove vscode from repo --- .gitignore | 1 + .vscode/launch.json | 19 ------------------- .vscode/tasks.json | 21 --------------------- 3 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.gitignore b/.gitignore index 5ea7bd7..cb5be6f 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ cpp/*.bmp __pycache__/* *.pyc settings.json +.vscode/* \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 27e69dd..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "360 to perspective", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/cpp/obj/360_to_perspective.exe", - "cwd": "${workspaceFolder}/cpp", - "environment": [], - "args": [], - "stopAtEntry": false, - "externalConsole": false - } - ] -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 8297bc2..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "type": "shell", - "command": "D:/Programmes/Octave/Octave-7.3.0/usr/bin/make.exe", - "args": [ - "-f", - "${workspaceFolder}/cpp/Makefile" - ], - "options": { - "cwd": "${workspaceFolder}/cpp" - }, - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} \ No newline at end of file