2018-07-31 11:26:52 +02:00
|
|
|
{
|
|
|
|
|
"configurations": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Win32",
|
|
|
|
|
"includePath": [
|
|
|
|
|
"C:/raylib/raylib/src/**",
|
|
|
|
|
"${workspaceFolder}/**"
|
|
|
|
|
],
|
|
|
|
|
"defines": [
|
|
|
|
|
"_DEBUG",
|
|
|
|
|
"UNICODE",
|
|
|
|
|
"_UNICODE",
|
|
|
|
|
"GRAPHICS_API_OPENGL_33",
|
|
|
|
|
"PLATFORM_DESKTOP"
|
|
|
|
|
],
|
2021-11-02 18:40:45 +01:00
|
|
|
"compilerPath": "C:/raylib/w64devkit/bin/gcc.exe",
|
2019-07-30 14:00:10 +02:00
|
|
|
"cStandard": "c99",
|
2018-07-31 11:26:52 +02:00
|
|
|
"cppStandard": "c++14",
|
2019-07-30 14:00:10 +02:00
|
|
|
"intelliSenseMode": "gcc-x64"
|
2018-08-30 09:29:37 -05:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Mac",
|
|
|
|
|
"includePath": [
|
|
|
|
|
"<path_to_raylib>/src/**",
|
|
|
|
|
"${workspaceFolder}/**"
|
|
|
|
|
],
|
|
|
|
|
"defines": [
|
|
|
|
|
"_DEBUG",
|
|
|
|
|
"UNICODE",
|
|
|
|
|
"_UNICODE",
|
|
|
|
|
"GRAPHICS_API_OPENGL_33",
|
|
|
|
|
"PLATFORM_DESKTOP"
|
|
|
|
|
],
|
|
|
|
|
"macFrameworkPath": [
|
2023-12-23 02:22:16 -08:00
|
|
|
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
|
2018-08-30 09:29:37 -05:00
|
|
|
],
|
|
|
|
|
"compilerPath": "/usr/bin/clang",
|
|
|
|
|
"cStandard": "c11",
|
|
|
|
|
"cppStandard": "c++14",
|
|
|
|
|
"intelliSenseMode": "clang-x64"
|
2018-09-21 18:16:27 -05:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Linux",
|
|
|
|
|
"includePath": [
|
|
|
|
|
"<path_to_raylib>/src/**",
|
|
|
|
|
"${workspaceFolder}/**"
|
|
|
|
|
],
|
|
|
|
|
"defines": [
|
|
|
|
|
"_DEBUG",
|
|
|
|
|
"UNICODE",
|
|
|
|
|
"_UNICODE",
|
|
|
|
|
"GRAPHICS_API_OPENGL_33",
|
|
|
|
|
"PLATFORM_DESKTOP"
|
|
|
|
|
],
|
2021-12-29 00:07:30 +00:00
|
|
|
"compilerPath": "/usr/bin/clang",
|
2018-09-21 18:16:27 -05:00
|
|
|
"cStandard": "c11",
|
|
|
|
|
"cppStandard": "c++14",
|
|
|
|
|
"intelliSenseMode": "clang-x64"
|
|
|
|
|
|
2018-07-31 11:26:52 +02:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"version": 4
|
2018-08-30 09:29:37 -05:00
|
|
|
}
|