summaryrefslogtreecommitdiffstats
path: root/.vscode/c_cpp_properties.json
blob: 2796da806302f3f378e5df0cc9d78d481cc38fe2 (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": "Linux",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_GNU_SOURCE"
            ],
            "compilerPath": "/usr/bin/clang",
            "cStandard": "c11",
            "cppStandard": "c++14",
            "intelliSenseMode": "clang-x64",
            "compilerArgs": [
                "-std=gnu11",
                "-c",
                "-g",
                "-Os",
                "-Wall",
                "-Werror",
                "-MMD",
                "-MP",
                "-D=_GNU_SOURCE"
            ],
            "configurationProvider": "ms-vscode.cmake-tools"
        }
    ],
    "version": 4
}