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

63 lines
1.6 KiB
JSON
Raw Normal View History

2020-09-20 09:27:24 +00:00
{
2022-03-31 12:55:37 +00:00
"version": 4,
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",
2022-03-31 12:55:37 +00:00
"cStandard": "c11",
"cppStandard": "c++14",
"intelliSenseMode": "gcc-x64",
"compilerArgs": [
"-lm",
"-O2"
]
2020-11-24 13:28:29 +00:00
},
2021-07-07 00:38:48 +00:00
{
"name": "Win32_Portable",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/Applications/mingw64/bin/g++.exe",
2022-03-31 12:55:37 +00:00
"cStandard": "c11",
"cppStandard": "c++14",
"intelliSenseMode": "gcc-x64",
"compilerArgs": [
"-lm",
"-O2"
]
2021-07-07 00:38:48 +00:00
},
2020-11-24 13:28:29 +00:00
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/usr/bin/g++",
2022-03-31 12:55:37 +00:00
"cStandard": "c11",
2021-10-31 03:47:56 +00:00
"cppStandard": "c++14",
2021-12-09 04:47:19 +00:00
"intelliSenseMode": "linux-gcc-x64",
2021-10-31 03:47:56 +00:00
"compilerArgs": [
"-lm",
"-O2"
]
2020-09-20 09:27:24 +00:00
}
2022-03-31 12:55:37 +00:00
]
}