Files
micro-AES/.vscode/c_cpp_properties.json
2023-08-22 17:23:53 +03:30

23 lines
529 B
JSON

{
"configurations": [
{
"name": "GCC",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c89",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64",
"compilerArgs": [
"-pedantic"
]
}
],
"version": 4
}