From 360269e26c9cb7fc45c7352616e3cd43b4baefd5 Mon Sep 17 00:00:00 2001 From: dawidg81 Date: Sat, 7 Mar 2026 10:02:55 +0100 Subject: [PATCH] Restored configs --- .clangd | 5 +++++ .vscode/c_cpp_properties.json | 14 ++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .clangd create mode 100644 .vscode/c_cpp_properties.json diff --git a/.clangd b/.clangd new file mode 100644 index 0000000..0b7bd91 --- /dev/null +++ b/.clangd @@ -0,0 +1,5 @@ +CompileFlags: + Add: [ + "--target=i686-w64-windows-gnu", + "-D_M_IX86" + ] \ No newline at end of file diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..bf16f54 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,14 @@ +{ + "configurations": [ + { + "name": "Win32", + "compilerPath": "D:/MinGW/bin/g++.exe", + "intelliSenseMode": "windows-gcc-x64", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [] + } + ], + "version": 4 +} \ No newline at end of file