04/.vscode/c_cpp_properties.json

19 lines
605 B
JSON
Raw Permalink Normal View History

2022-08-04 08:39:56 +00:00
{
"configurations": [
{
"name": "some_name",
"includePath": [
"${workspaceFolder}/include",
"${workspaceFolder}/../dependencies/GLFW/include",
"${workspaceFolder}/../dependencies/glad/include",
2022-10-25 09:05:53 +00:00
"${workspaceFolder}/../dependencies/glm",
"${workspaceFolder}/../dependencies/stb"
2022-08-04 08:39:56 +00:00
],
"compilerPath": "C:/MinGW/bin/g++.exe",
"cStandard": "c11",
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x86"
}
],
"version": 4
}