From e08bc673d3986646751df43c399c764f9db5e54d Mon Sep 17 00:00:00 2001 From: "Valeriano A.R." Date: Wed, 9 Oct 2024 02:03:45 +0200 Subject: [PATCH] Remove VSCode configuration --- .gitignore | 3 +-- .vscode/c_cpp_properties.json | 48 ----------------------------------- .vscode/settings.json | 5 ---- Example.GameLib/.gitignore | 3 +-- 4 files changed, 2 insertions(+), 57 deletions(-) delete mode 100644 .vscode/c_cpp_properties.json delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index e14c821..79194de 100644 --- a/.gitignore +++ b/.gitignore @@ -7,8 +7,7 @@ build-* DIST/* shot-????.bmp shot-????.png -.vscode/.BROWSE.VC.DB -.vscode/.BROWSE.VC.DB-wal +.vscode .DS_Store */DIST/* /CMakeFiles/ diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index ff7961e..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "configurations": [ - { - "name": "Mac", - "includePath": [ - "/usr/include", - "${workspaceFolder}/src/" - ], - "intelliSenseMode": "clang-x64", - "macFrameworkPath": [ - "/System/Library/Frameworks", - "/Library/Frameworks" - ] - }, - { - "name": "Linux", - "includePath": [ - "/usr/include", - "/usr/include/SDL2", - "${workspaceFolder}/src/" - ], - "intelliSenseMode": "clang-x64", - "compilerPath": "/usr/bin/clang", - "cStandard": "c11", - "cppStandard": "c++17" - }, - { - "name": "Win32", - "includePath": [ - "C:/msys64/mingw64/include", - "C:/msys64/mingw64/include/SDL2", - "${workspaceFolder}/src/" - ], - "defines": [ - "WIN32", - "_DEBUG", - "UNICODE", - "_UNICODE" - ], - "windowsSdkVersion": "10.0.18362.0", - "compilerPath": "C:/msys64/mingw64/bin/g++.exe", - "cStandard": "c17", - "cppStandard": "c++17", - "intelliSenseMode": "windows-gcc-x64" - } - ], - "version": 4 -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index c4203aa..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "files.associations": { - "windows.h": "c" - } -} \ No newline at end of file diff --git a/Example.GameLib/.gitignore b/Example.GameLib/.gitignore index 3cb7320..59cb3d6 100644 --- a/Example.GameLib/.gitignore +++ b/Example.GameLib/.gitignore @@ -7,8 +7,7 @@ build-* DIST/* shot-????.bmp shot-????.png -.vscode/.BROWSE.VC.DB -.vscode/.BROWSE.VC.DB-wal +.vscode .DS_Store */DIST/* /CMakeFiles/