From f2399ede73cc9eda62e78b05ecb35de6f6120aa6 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Thu, 27 Jun 2024 15:27:50 -0700 Subject: [PATCH] cpp properties for better behavior in vscode --- .vscode/c_cpp_properties.json | 18 ++++++++++++++++++ 1 file changed, 18 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 0000000000..4664caad39 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,18 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "EFI_PROD_CODE", + "EFI_SIMULATOR" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c17", + "intelliSenseMode": "linux-clang-x64" + } + ], + "version": 4 +} \ No newline at end of file