mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:38:47 +00:00
63 lines
1.7 KiB
JSON
63 lines
1.7 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}/**"
|
|
],
|
|
"defines": [
|
|
"_DEBUG",
|
|
"UNICODE",
|
|
"_UNICODE"
|
|
],
|
|
"compilerPath": "/usr/bin/g++",
|
|
"cStandard": "c11",
|
|
"cppStandard": "c++14",
|
|
"intelliSenseMode": "linux-gcc-x64",
|
|
"compilerArgs": [
|
|
"-lm",
|
|
"-O2"
|
|
]
|
|
}
|
|
]
|
|
}
|