Skip to content

Commit a68803a

Browse files
committed
adding python include path to C++ intellisense
1 parent 0edbda9 commit a68803a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.vscode/c_cpp_properties.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"~/.virtualenvs/python_example-XRpznMVn/include/**"
8+
],
9+
"defines": [],
10+
"compilerPath": "/usr/bin/gcc",
11+
"cStandard": "c11",
12+
"cppStandard": "c++17",
13+
"intelliSenseMode": "clang-x64"
14+
}
15+
],
16+
"version": 4
17+
}

0 commit comments

Comments
 (0)