Advertisement
jw910731

ASDF

Mar 4th, 2020
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. {
  2.     "linters":
  3.     {
  4.         "gcc": {
  5.             "disable": false,
  6.             // C-specific settings
  7.             "c_executable": "gcc",
  8.             "c_extra_flags": [
  9.                 "-fsyntax-only",
  10.                 "-std=c11",
  11.             ],
  12.             // C++-specific settings
  13.             "c++_executable": "g++",
  14.             "c++_extra_flags": [
  15.                 "-fsyntax-only",
  16.                 "-Wall",
  17.                 "-Wextra",
  18.                 "-std=c++17",
  19.                 "-DTEST"
  20.             ],
  21.             // include_dirs for both C and C++
  22.             "include_dirs": [
  23.                 "${project_folder}",
  24.                 "/usr/local/include",
  25.             ],
  26.         },
  27.     },
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement