engineer-thesis-WUT/.vscode/c_cpp_properties.json

22 lines
662 B
JSON
Raw Normal View History

2022-08-25 17:17:53 +02:00
{
2022-08-28 19:20:00 +02:00
"configurations": [
{
2023-03-14 02:17:42 +01:00
"defines":[
"GLFW_INCLUDE_NONE"
],
2022-08-28 19:20:00 +02:00
"name": "linux-gcc-x64",
"includePath": [
"${workspaceFolder}/**",
2023-03-12 16:24:48 +01:00
"${workspaceFolder}/dependencies/include",
"${workspaceFolder}/dependencies/include/glad/**"
2022-08-28 19:20:00 +02:00
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "${default}",
"cppStandard": "${default}",
"intelliSenseMode": "linux-gcc-x64",
2022-08-30 20:02:22 +02:00
"compilerArgs": [],
"configurationProvider": "ms-vscode.makefile-tools"
2022-08-28 19:20:00 +02:00
}
],
"version": 4
2022-08-25 17:17:53 +02:00
}