comp20003-project01/.vscode/c_cpp_properties.json

35 lines
927 B
JSON
Raw Normal View History

2021-08-23 12:24:42 +10:00
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\gcc.exe",
"cppStandard": "gnu++14",
"intelliSenseMode": "windows-gcc-x64"
},
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "/usr/bin/gcc",
"cppStandard": "gnu++14",
"intelliSenseMode": "linux-gcc-x64",
"cStandard": "c17"
}
],
"version": 4
}