2020-09-20 17:27:24 +08:00
|
|
|
{
|
2022-03-31 20:55:37 +08:00
|
|
|
"version": 4,
|
2020-09-20 17:27:24 +08:00
|
|
|
"configurations": [
|
2022-07-04 19:52:10 +08: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 21:28:29 +08:00
|
|
|
{
|
|
|
|
"name": "Linux",
|
|
|
|
"includePath": [
|
2022-07-23 22:15:20 +08:00
|
|
|
"${workspaceFolder}/includes/testlib/**",
|
|
|
|
"${workspaceFolder}/includes/ac-library/**"
|
2020-11-24 21:28:29 +08:00
|
|
|
],
|
|
|
|
"defines": [
|
|
|
|
"_DEBUG",
|
|
|
|
"UNICODE",
|
|
|
|
"_UNICODE"
|
|
|
|
],
|
|
|
|
"compilerPath": "/usr/bin/g++",
|
2022-03-31 20:55:37 +08:00
|
|
|
"cStandard": "c11",
|
2021-10-31 11:47:56 +08:00
|
|
|
"cppStandard": "c++14",
|
2021-12-09 12:47:19 +08:00
|
|
|
"intelliSenseMode": "linux-gcc-x64",
|
2021-10-31 11:47:56 +08:00
|
|
|
"compilerArgs": [
|
|
|
|
"-lm",
|
|
|
|
"-O2"
|
|
|
|
]
|
2020-09-20 17:27:24 +08:00
|
|
|
}
|
2022-03-31 20:55:37 +08:00
|
|
|
]
|
|
|
|
}
|