From 52a939bc2f64b079bd23fdbfb9f73195e66fbd0e Mon Sep 17 00:00:00 2001 From: Francisco Javier Trujillo Mata Date: Mon, 4 Oct 2021 13:40:37 +0200 Subject: [PATCH] Add ps2sdk folders to vscode config --- .vscode/c_cpp_properties.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 65953ebfe1..54e784c61d 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -167,6 +167,23 @@ "cStandard": "c11", "cppStandard": "c++11", "intelliSenseMode": "gcc-x64" + }, + { + "name": "ps2sdk-ee", + "includePath": [ + "${env:PS2DEV}/ps2sdk/common/include", + "${env:PS2DEV}/ps2sdk/ee/include", + "${env:PS2DEV}/gsKit/include", + "${workspaceFolder}/**" + ], + "defines": [ + "PS2", + "_EE" + ], + "compilerPath": "${env:PS2DEV}/ee/bin/mips64r5900el-ps2-elf-gcc", + "cStandard": "c11", + "cppStandard": "c++11", + "intelliSenseMode": "gcc-x64" } ], "version": 4