Skip to content

Instantly share code, notes, and snippets.

@kristianmitk
Created April 17, 2020 11:41
Show Gist options
  • Save kristianmitk/f248f4b79f336e62cd4d5188252de424 to your computer and use it in GitHub Desktop.
Save kristianmitk/f248f4b79f336e62cd4d5188252de424 to your computer and use it in GitHub Desktop.
VSCode C/C++ Extension config for the conan package manager
{
"configurations": [
{
"name": "Linux",
"cppStandard": "c++17",
"cStandard": "c11",
"defines": [],
"includePath": [
"/usr/include",
"/usr/local/include",
"${workspaceRoot}",
"~/.conan/data/**"
],
"intelliSenseMode": "${default}",
"compilerPath": "/usr/bin/gcc",
"browse": {
"path": [
"/usr/include",
"/usr/local/include",
"${workspaceRoot}",
"~/.conan/data/**"
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment