From 3cf01ebbfdf551f1dbf7586d19b93db3fadb37d2 Mon Sep 17 00:00:00 2001 From: yudejp Date: Thu, 6 May 2021 12:55:15 +0900 Subject: [PATCH] Fix include path --- .vscode/c_cpp_properties.json | 17 +++++++++++++++++ 1 file changed, 17 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..dc46ea2 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + // "${workspaceFolder}/**", + "/home/vscode/edk2/MdePkg/Include/**" + ], + "defines": [], + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++14", + "intelliSenseMode": "linux-clang-x64" + } + ], + "version": 4 +} \ No newline at end of file