Skip to content

Commit

Permalink
#32: introduce some vscode config for IDE intellisense
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Jul 3, 2024
1 parent 01b6091 commit 1df3e92
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/../vtk/**"
],
"defines": [
"SRC_DIR=${workspaceFolder}" // defined in cmakelists for compile time
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "linux-clang-x64"
}
],
"version": 4
}

0 comments on commit 1df3e92

Please sign in to comment.