aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/c_cpp_properties.json
blob: 44ba6cb740f809deb4f534036f5da4e6b006f839 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "configurations": [
        {
            "name": "Linux",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "__USE_POSIX",
                "_GNU_SOURCE"
            ],
            "compilerPath": "/usr/bin/gcc",
            "intelliSenseMode": "gcc-x64"
        }
    ],
    "version": 4
}