Skip to content

Commit

Permalink
feat: add intellisense support for linux (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
almoghamdani committed Oct 25, 2019
1 parent d154e80 commit c7520e5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,30 @@
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
},
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/vendor/opus/include",
"${workspaceFolder}/vendor/rtaudio",
"/usr/include/node",
"${env:HOME}/.node-gyp/**",
"/usr/include",
"/usr/include/openssl"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"ASIO_STANDALONE",
"QUESYNC_CLIENT",
"QUESYNC_SERVER"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
Expand Down

0 comments on commit c7520e5

Please sign in to comment.