1{
2    "configurations": [
3        {
4            "name": "Win32",
5            "includePath": [
6                "C:/raylib/raylib/src/**",
7                "${workspaceFolder}/**"
8            ],
9            "defines": [
10                "_DEBUG",
11                "UNICODE",
12                "_UNICODE",
13                "GRAPHICS_API_OPENGL_33",
14                "PLATFORM_DESKTOP"
15            ],
16            "compilerPath": "C:/raylib/mingw/bin/gcc.exe",
17            "cStandard": "c99",
18            "cppStandard": "c++14",
19            "intelliSenseMode": "gcc-x64"
20        },
21        {
22            "name": "Mac",
23            "includePath": [
24                "<path_to_raylib>/src/**",
25                "${workspaceFolder}/**"
26            ],
27            "defines": [
28                "_DEBUG",
29                "UNICODE",
30                "_UNICODE",
31                "GRAPHICS_API_OPENGL_33",
32                "PLATFORM_DESKTOP"
33            ],
34            "macFrameworkPath": [
35                "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks"
36            ],
37            "compilerPath": "/usr/bin/clang",
38            "cStandard": "c11",
39            "cppStandard": "c++14",
40            "intelliSenseMode": "clang-x64"
41        },
42        {
43            "name": "Linux",
44            "includePath": [
45                "<path_to_raylib>/src/**",
46                "${workspaceFolder}/**"
47            ],
48            "defines": [
49                "_DEBUG",
50                "UNICODE",
51                "_UNICODE",
52                "GRAPHICS_API_OPENGL_33",
53                "PLATFORM_DESKTOP"
54            ],
55            "compilerPath": "usr/bin/clang",
56            "cStandard": "c11",
57            "cppStandard": "c++14",
58            "intelliSenseMode": "clang-x64"
59
60        }
61    ],
62    "version": 4
63}
64