Advertisement
KiwiNFLFan

VSCode C++ settings

Aug 21st, 2023
921
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.12 KB | Software | 0 0
  1. {
  2.     "configurations": [
  3.         {
  4.             "name": "Mac",
  5.             "includePath": [
  6.                 "${workspaceFolder}/**",
  7.                 "/opt/homebrew/Cellar/wxwidgets/3.2.2.1_1/include",
  8.                 "/opt/homebrew/Cellar/wxwidgets/3.2.2.1_1/include/wx-3.2",
  9.                 "/opt/homebrew/include",
  10.                 "/opt/homebrew/Cellar/wxwidgets/3.2.2.1_1/lib/wx/include/osx_cocoa-unicode-3.2/wx",
  11.                 "/opt/homebrew/Cellar/wxwidgets/3.2.2.1_1/lib/wx/include/osx_cocoa-unicode-3.2",
  12.                 "/opt/homebrew/Cellar/wxwidgets/3.2.2.1_1/include/wx-3.2"
  13.             ],
  14.             "defines": [],
  15.             "macFrameworkPath": [
  16.                 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
  17.             ],
  18.             "cStandard": "c17",
  19.             "cppStandard": "c++17",
  20.             "intelliSenseMode": "macos-clang-arm64",
  21.             "configurationProvider": "ms-vscode.cmake-tools",
  22.             "compilerPath": "/usr/bin/gcc",
  23.             "compilerArgs": [
  24.                 "wx-config --cxxflags"
  25.             ]
  26.         }
  27.     ],
  28.     "version": 4
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement