mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-23 21:39:44 +00:00
5385f8f32a
• Update `c_cpp_properties.json` to account for other platforms • Add `ms-vscode.makefile-tools` to recommended extensions
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"configurations": [
|
|
{
|
|
"name": "Linux",
|
|
"includePath": [
|
|
"${workspaceFolder}/include",
|
|
"${workspaceFolder}/include/stl"
|
|
],
|
|
"cStandard": "c99",
|
|
"cppStandard": "c++98",
|
|
"intelliSenseMode": "linux-clang-x86",
|
|
"compilerPath": "",
|
|
"configurationProvider": "ms-vscode.makefile-tools",
|
|
"forcedInclude": [".vscode/warnings.h"]
|
|
},
|
|
{
|
|
"name": "Win32",
|
|
"includePath": [
|
|
"${workspaceFolder}/include",
|
|
"${workspaceFolder}/include/stl"
|
|
],
|
|
"cStandard": "c99",
|
|
"cppStandard": "c++98",
|
|
"intelliSenseMode": "windows-clang-x86",
|
|
"compilerPath": "",
|
|
"configurationProvider": "ms-vscode.makefile-tools",
|
|
"forcedInclude": [".vscode/warnings.h"]
|
|
},
|
|
{
|
|
"name": "Mac",
|
|
"includePath": [
|
|
"${workspaceFolder}/include",
|
|
"${workspaceFolder}/include/stl"
|
|
],
|
|
"cStandard": "c99",
|
|
"cppStandard": "c++98",
|
|
"intelliSenseMode": "macos-clang-x86",
|
|
"compilerPath": "",
|
|
"configurationProvider": "ms-vscode.makefile-tools",
|
|
"forcedInclude": [".vscode/warnings.h"]
|
|
}
|
|
],
|
|
"version": 4
|
|
}
|