summaryrefslogtreecommitdiffstats
path: root/.vscode/c_cpp_properties.json
blob: d57b4347230c27922b3e4082aa4adf12c3d9f900 (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
{
    "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"
            ]
        }
    ],
    "version": 4
}