Last active
June 26, 2018 06:43
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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