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