Skip to content

Instantly share code, notes, and snippets.

@gusenov
Created July 13, 2019 06:54
Show Gist options
  • Save gusenov/d3e66a0d1afd2b303a81d72f0d0e74bb to your computer and use it in GitHub Desktop.
Save gusenov/d3e66a0d1afd2b303a81d72f0d0e74bb to your computer and use it in GitHub Desktop.
Пример конфигурационного файла c_cpp_properties.json для vscode-cpptools - Microsoft C/C++ расширения для VS Code.
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/src/**",
"${workspaceFolder}/vendor/"
],
"defines": [],
"macFrameworkPath": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64",
"compileCommands": "${workspaceFolder}/build/compile_commands.json",
"browse": {
"path": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/usr/include"
],
"limitSymbolsToIncludedHeaders": true
}
}
],
"version": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment