From 208c79800e7e8a1adcf8fdddfed156ccd78b1d6b Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Sat, 24 Feb 2024 19:22:57 +0100 Subject: [PATCH] add vscode intellisense --- .vscode/c_cpp_properties.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..8748fc5 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,12 @@ +{ + "configurations": [ + { + "name": "Linux", + "defines": [], + "cStandard": "c17", + "cppStandard": "c++17", + "compileCommands": ".vscode/compile_commands.json" + } + ], + "version": 4 +} \ No newline at end of file