summaryrefslogtreecommitdiffstats
path: root/.vscode/c_cpp_properties.json
blob: f284b5eb36b5cb206d64f28a0bb1ea9c6e664b74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  "configurations": [
    {
      "name": "Mac",
      "includePath": [
        "${default}",
        "src/fakerw",
        "src/math",
        "src/render",
        "src/skel",
        "vendor/librw"
      ],
      "defines": [],
      "macFrameworkPath": [
        "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
      ],
      "compilerPath": "/opt/local/bin/clang",
      "compilerArgs": ["-g"],
      "cStandard": "gnu11",
      "cppStandard": "gnu++14",
      "browse": {
        "path": [
          "/opt/local/include",
          "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include"
        ]
      }
    }
  ],
  "version": 4
}