Skip to content

Instantly share code, notes, and snippets.

@ChugunovRoman
Last active June 26, 2018 06:43
Show Gist options
  • Save ChugunovRoman/b64b24ff12181a57f17c1a757ec29efa to your computer and use it in GitHub Desktop.
Save ChugunovRoman/b64b24ff12181a57f17c1a757ec29efa to your computer and use it in GitHub Desktop.
Configuration file for VSCode for integrate with C++ (In this case with Qt C++) (Need to install the C/C++ extension from Microsoft)
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${env.HOME}/Qt5.9.6/5.9.6/gcc_64/include/**",
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment