summaryrefslogtreecommitdiffstats
path: root/.vscode/c_cpp_properties.json
blob: 02a16ac0f0aedff42e123038e32a0453ec45c26a (plain)
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
31
32
33
34
35
36
37
38
{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "/usr/include/**",
                "${workspaceFolder}/src/**"
            ],
            "forcedInclude": [
                "${workspaceFolder}/src/freeradius-devel/autoconf.h",
                "${workspaceFolder}/src/freeradius-devel/build.h",
                "${workspaceFolder}/src/freeradius-devel/features.h"
            ],
            "defines": [],
            "compilerPath": "/usr/bin/clang",
            "cStandard": "c11",
            "cppStandard": "c++14",
            "intelliSenseMode": "linux-clang-x64"
        },
        {
            "name": "Mac",
            "includePath": [
                "${workspaceFolder}/src/**"
            ],
            "forcedInclude": [
                "${workspaceFolder}/src/freeradius-devel/autoconf.h",
                "${workspaceFolder}/src/freeradius-devel/build.h",
                "${workspaceFolder}/src/freeradius-devel/features.h"
            ],
            "defines": [],
            "compilerPath": "/usr/bin/clang",
            "cStandard": "c11",
            "cppStandard": "c++14",
            "intelliSenseMode": "linux-clang-x64"
        }
    ],
    "version": 4
}