cpp properties for better behavior in vscode

This commit is contained in:
Matthew Kennedy 2024-06-27 15:27:50 -07:00
parent cc74d09ba7
commit f2399ede73
1 changed files with 18 additions and 0 deletions

18
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -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
}