0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:25:27 +00:00
OI-codes/.vscode/c_cpp_properties.json

54 lines
1.4 KiB
JSON

{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:/Program Files (x86_64)/mingw64/bin/g++.exe",
"cStandard": "c89",
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x64"
},
{
"name": "Win32_Portable",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/Applications/mingw64/bin/g++.exe",
"cStandard": "c89",
"cppStandard": "c++11",
"intelliSenseMode": "gcc-x64"
},
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/usr/bin/g++",
"cStandard": "c17",
"cppStandard": "c++14",
"intelliSenseMode": "linux-gcc-x64",
"compilerArgs": [
"-lm",
"-O2"
]
}
],
"version": 4
}