remove vscode from repo

This commit is contained in:
Jérôme 2024-02-28 16:59:15 +01:00
parent 6ded85a2c8
commit 4c65fc95b5
3 changed files with 1 additions and 40 deletions

1
.gitignore vendored
View file

@ -11,3 +11,4 @@ cpp/*.bmp
__pycache__/*
*.pyc
settings.json
.vscode/*

19
.vscode/launch.json vendored
View file

@ -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
}
]
}

21
.vscode/tasks.json vendored
View file

@ -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
}
}
]
}