From 9c7c9dbf0add0057a9375ba7c1c14a94a1eceba7 Mon Sep 17 00:00:00 2001 From: Miquel Ortega Date: Thu, 2 Apr 2020 11:16:54 +0200 Subject: [PATCH] Remove IDE files and ignore it --- .gitignore | 1 + .vscode/c_cpp_properties.json | 16 ---------------- .vscode/launch.json | 27 --------------------------- .vscode/settings.json | 10 ---------- 4 files changed, 1 insertion(+), 53 deletions(-) delete mode 100644 .vscode/c_cpp_properties.json delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index fcc5638..9af9689 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ build include lib sqlite +.vscode diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index 0b0eed0..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "configurations": [ - { - "name": "Linux", - "includePath": [ - "${workspaceFolder}/**" - ], - "defines": [], - "compilerPath": "/usr/bin/gcc", - "cStandard": "c11", - "cppStandard": "c++17", - "intelliSenseMode": "clang-x64" - } - ], - "version": 4 -} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 447de6d..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,27 +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": "(gdb) Launch", - "type": "cppdbg", - "request": "launch", - "program": "enter program name, for example ${workspaceFolder}/a.out", - "args": [], - "stopAtEntry": false, - "cwd": "${workspaceFolder}", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ] - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index e062fa6..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "files.associations": { - "prom_server.h": "c", - "stdlib.h": "c", - "stdio.h": "c", - "signal.h": "c", - "prom.h": "c", - "unistd.h": "c" - } -} \ No newline at end of file