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

64 lines
1.8 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": [
2022-07-04 11:52:10 +00:00
// {
// "name": "Win32",
// "includePath": [
// "${workspaceFolder}/**"
// ],
// "defines": [
// "_DEBUG",
// "UNICODE",
// "_UNICODE"
// ],
// "compilerPath": "C:/Program Files (x86_64)/mingw64/bin/g++.exe",
// "cStandard": "c11",
// "cppStandard": "c++14",
// "intelliSenseMode": "gcc-x64",
// "compilerArgs": [
// "-lm",
// "-O2"
// ]
// },
// {
// "name": "Win32_Portable",
// "includePath": [
// "${workspaceFolder}/**"
// ],
// "defines": [
// "_DEBUG",
// "UNICODE",
// "_UNICODE"
// ],
// "compilerPath": "/Applications/mingw64/bin/g++.exe",
// "cStandard": "c11",
// "cppStandard": "c++14",
// "intelliSenseMode": "gcc-x64",
// "compilerArgs": [
// "-lm",
// "-O2"
// ]
// },
2020-11-24 13:28:29 +00:00
{
"name": "Linux",
"includePath": [
2022-07-23 14:15:20 +00:00
"${workspaceFolder}/includes/testlib/**",
"${workspaceFolder}/includes/ac-library/**"
2020-11-24 13:28:29 +00:00
],
"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
]
}