From faa36bf4e8b445ce3357617f4350a1374dec4074 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Valor=20Mart=C3=ADnez?= Date: Thu, 20 Oct 2022 16:36:16 +0200 Subject: [PATCH] Eliminada carpeta .vscode --- .vscode/launch.json | 26 ---------------------- .vscode/settings.json | 52 ------------------------------------------- .vscode/tasks.json | 33 --------------------------- 3 files changed, 111 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index ff29095..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "g++.exe - Build and debug active file", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}\\bin\\${workspaceFolderBasename}_debug.exe", - "args": [], - "stopAtEntry": false, - "cwd": "${workspaceFolder}\\bin", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "miDebuggerPath": "gdb.exe", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ], - "preLaunchTask": "C/C++: g++.exe build active file" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 431ca21..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "files.associations": { - "new": "cpp", - "array": "cpp", - "atomic": "cpp", - "*.tcc": "cpp", - "cctype": "cpp", - "clocale": "cpp", - "cmath": "cpp", - "cstdarg": "cpp", - "cstddef": "cpp", - "cstdint": "cpp", - "cstdio": "cpp", - "cstdlib": "cpp", - "cwchar": "cpp", - "cwctype": "cpp", - "deque": "cpp", - "unordered_map": "cpp", - "vector": "cpp", - "exception": "cpp", - "algorithm": "cpp", - "memory": "cpp", - "memory_resource": "cpp", - "optional": "cpp", - "string": "cpp", - "string_view": "cpp", - "system_error": "cpp", - "tuple": "cpp", - "type_traits": "cpp", - "utility": "cpp", - "fstream": "cpp", - "initializer_list": "cpp", - "iosfwd": "cpp", - "iostream": "cpp", - "istream": "cpp", - "limits": "cpp", - "ostream": "cpp", - "sstream": "cpp", - "stdexcept": "cpp", - "streambuf": "cpp", - "cinttypes": "cpp", - "typeinfo": "cpp", - "bit": "cpp", - "compare": "cpp", - "concepts": "cpp", - "functional": "cpp", - "iterator": "cpp", - "numeric": "cpp", - "random": "cpp", - "numbers": "cpp" - } -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index d397b20..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "tasks": [ - { - "type": "cppbuild", - "label": "C/C++: g++.exe build active file", - "command": "g++.exe", - "args": [ - "${workspaceFolder}\\*.cpp", - "-g", - "-std=c++11", - "-lmingw32", - "-lSDL2main", - "-lSDL2_image", - "-lSDL2_mixer", - "-lSDL2", - "-o", - "${workspaceFolder}\\bin\\${workspaceFolderBasename}_debug.exe" - ], - "options": { - "cwd": "${workspaceFolder}" - }, - "problemMatcher": [ - "$gcc" - ], - "group": { - "kind": "build", - "isDefault": true - }, - "detail": "compiler: g++.exe" - } - ], - "version": "2.0.0" -} \ No newline at end of file