summaryrefslogtreecommitdiff
path: root/.vscode/c_cpp_properties.json
blob: a8bccffcb9d36429370cfe0fa6d41a4623085124 (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
{
    "configurations": [
        {
            "name": "Linux",
            "compilerPath": "${default}",
            "compilerArgs": [
                "-m32"
            ],
            "intelliSenseMode": "${default}", // Shouldn't matter
            "includePath": [
                "${workspaceFolder}/**",
                "src",
                "build",
                "include"
            ],
            "defines": [
                "_LANGUAGE_C",
                "__sgi",
                "_MIPS_SZLONG=32",
                "F3DEX_GBI",
                "GBI_FLOATS"
            ],
            "cStandard": "gnu89", // C89 + some GNU extensions from C99 like C++ comments
            "cppStandard": "${default}"
        }
    ],
    "version": 4
}