0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:45:25 +00:00
OI-codes/.vscode/c_cpp_properties.json

35 lines
899 B
JSON
Raw Normal View History

2020-09-20 09:27:24 +00:00
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
2020-11-22 06:28:56 +00:00
"compilerPath": "C:/Program Files (x86_64)/mingw64/bin/g++.exe",
2020-09-20 09:27:24 +00:00
"cStandard": "c89",
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x64"
2020-11-24 13:28:29 +00:00
},
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/usr/bin/g++",
"cStandard": "c89",
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x64"
2020-09-20 09:27:24 +00:00
}
],
"version": 4
}