From b5e5066709ac9ef22e99c192b58039229141177e Mon Sep 17 00:00:00 2001 From: Arison99 Date: Wed, 22 Jan 2025 13:31:58 +0300 Subject: [PATCH] updates --- .vscode/c_cpp_properties.json | 20 ++++++++++++++++++++ .vscode/settings.json | 4 ++++ .vscode/tasks.json | 28 ++++++++++++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/settings.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..e7526d4 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,20 @@ +{ + "configurations": [ + { + "name": "Win32", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE" + ], + "intelliSenseMode": "windows-gcc-x86", + "cStandard": "c23", + "cppStandard": "c++23", + "compilerPath": "C:\\Program Files (x86)\\Intel\\oneAPI" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..bf20c91 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "C_Cpp.errorSquiggles": "enabled", + "C_Cpp.default.compilerPath": "E:\\Mingw\\bin\\g++.exe" +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..24c442e --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,28 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: gcc.exe build active file", + "command": "E:\\Mingw\\bin\\gcc.exe", + "args": [ + "-fdiagnostics-color=always", + "-g", + "${file}", + "-o", + "${fileDirname}\\${fileBasenameNoExtension}.exe" + ], + "options": { + "cwd": "E:\\Mingw\\bin" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "Task generated by Debugger." + } + ], + "version": "2.0.0" +} \ No newline at end of file