Files
archer/.vscode/c_cpp_properties.json

66 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2024-08-16 08:53:37 -07:00
{
"configurations": [
{
"name": "Win32",
"includePath": [
2024-08-17 08:53:09 -07:00
"${workspaceFolder}/build/external/raylib-master/src/**",
2024-08-16 08:53:37 -07:00
"${workspaceFolder}/include/**",
"${workspaceFolder}/src/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"GRAPHICS_API_OPENGL_33",
"PLATFORM_DESKTOP"
],
"cStandard": "c17",
"cppStandard": "c++17",
2024-08-16 08:53:37 -07:00
"intelliSenseMode": "gcc-x64"
},
{
"name": "Mac",
"includePath": [
2024-08-17 08:53:09 -07:00
"${workspaceFolder}/build/external/raylib-master/src/**",
2024-08-16 08:53:37 -07:00
"${workspaceFolder}/include/**",
"${workspaceFolder}/src/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"GRAPHICS_API_OPENGL_33",
"PLATFORM_DESKTOP"
],
"macFrameworkPath": [
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
2024-08-16 08:53:37 -07:00
"intelliSenseMode": "clang-x64"
},
{
"name": "Linux",
"includePath": [
2024-08-17 08:53:09 -07:00
"${workspaceFolder}/build/external/raylib-master/src/**",
2024-08-16 08:53:37 -07:00
"${workspaceFolder}/include/**",
"${workspaceFolder}/src/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"GRAPHICS_API_OPENGL_33",
"PLATFORM_DESKTOP"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
2024-08-16 08:53:37 -07:00
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}