02/.vscode/c_cpp_properties.json

17 lines
504 B
JSON
Raw Normal View History

2022-07-17 15:46:02 +00:00
{
"configurations": [
{
"name": "some_name",
"includePath": [
"${workspaceFolder}/include",
"${workspaceFolder}/../dependencies/GLFW/include",
2022-07-18 08:40:45 +00:00
"${workspaceFolder}/../dependencies/glad/include",
"${workspaceFolder}/../dependencies/glm"
2022-07-17 15:46:02 +00:00
],
"compilerPath": "C:/MinGW/bin/g++.exe",
"cStandard": "c11",
2024-11-14 09:14:36 +00:00
"cppStandard": "c++11"
2022-07-17 15:46:02 +00:00
}
],
"version": 4
}