Commit c25e4d35 by Ben Clayton

.vscode: Add spirv-tools-ext to include path

37f30185 added CMake rules to copy the `OpenCLDebugInfo100.h` header out of a polluted build intermediate directory and into a separate include directory. Add this include directory to the .vscode include paths so vscode can also find it. All of this smell should go away once https://github.com/KhronosGroup/SPIRV-Headers/issues/137 is addressed. Bug: b/145351270 Change-Id: I1a20e6f6b507e10c90fed38dd8a94d4b3ff590f7 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/40129Reviewed-by: 's avatarAntonio Maiorano <amaiorano@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Tested-by: 's avatarBen Clayton <bclayton@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com>
parent 146e16f6
......@@ -16,7 +16,8 @@
"${workspaceFolder}/third_party/llvm-7.0/llvm/include",
"${workspaceFolder}/third_party/llvm-7.0/configs/common/include",
"${workspaceFolder}/third_party/llvm-7.0/configs/linux/include",
"${workspaceFolder}/third_party/cppdap/include"
"${workspaceFolder}/third_party/cppdap/include",
"${workspaceFolder}/build/spirv-tools-ext/include"
],
"cStandard": "c11",
"cppStandard": "c++14"
......@@ -37,7 +38,8 @@
"${workspaceFolder}/third_party/llvm-7.0/llvm/include",
"${workspaceFolder}/third_party/llvm-7.0/configs/common/include",
"${workspaceFolder}/third_party/llvm-7.0/configs/darwin/include",
"${workspaceFolder}/third_party/cppdap/include"
"${workspaceFolder}/third_party/cppdap/include",
"${workspaceFolder}/build/spirv-tools-ext/include"
],
"cStandard": "c11",
"cppStandard": "c++14"
......@@ -58,7 +60,8 @@
"${workspaceFolder}/third_party/llvm-7.0/llvm/include",
"${workspaceFolder}/third_party/llvm-7.0/configs/common/include",
"${workspaceFolder}/third_party/llvm-7.0/configs/windows/include",
"${workspaceFolder}/third_party/cppdap/include"
"${workspaceFolder}/third_party/cppdap/include",
"${workspaceFolder}/build/spirv-tools-ext/include"
],
"cStandard": "c11",
"cppStandard": "c++14"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment