blob: 0ecc2231ed10594acea15626a2ccb37206de9e10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"macFrameworkPath": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c23",
"cppStandard": "c++23",
"intelliSenseMode": "macos-gcc-x64",
"compilerArgs": [
"-I/opt/homebrew/Cellar/raylib/5.5/include",
"-L/opt/homebrew/Cellar/raylib/5.5/lib"
]
}
],
"version": 4
}
|