Skip to content

Instantly share code, notes, and snippets.

@dhonx
Last active September 17, 2019 23:04
Show Gist options
  • Save dhonx/5d8286f88204800bfe8e1f3b49499d04 to your computer and use it in GitHub Desktop.
Save dhonx/5d8286f88204800bfe8e1f3b49499d04 to your computer and use it in GitHub Desktop.
VSCode C++ Config File for Node-GTK Project
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/include/glib-2.0",
"${HOME}/.node-gyp/12.9.1/include/node",
"/usr/lib/x86_64-linux-gnu/glib-2.0/include",
"/usr/include/gobject-introspection-1.0"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"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