{ "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" ] } ] }