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
2022-07-23 22:15:20 +08:00

64 lines
1.8 KiB
JSON

{
"version": 4,
"configurations": [
// {
// "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"
// ]
// },
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/includes/testlib/**",
"${workspaceFolder}/includes/ac-library/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/usr/bin/g++",
"cStandard": "c11",
"cppStandard": "c++14",
"intelliSenseMode": "linux-gcc-x64",
"compilerArgs": [
"-lm",
"-O2"
]
}
]
}