diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 00000000..fd7a9518 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,36 @@ +{ + "configurations": [ + { + "name": "banan-os", + "includePath": [ + "${workspaceFolder}/BAN/include", + "${workspaceFolder}/kernel/include", + "${workspaceFolder}/userspace/libraries/*/include" + ], + "defines": [ + "__arch=x86_64" + ], + "compilerPath": "${workspaceFolder}/toolchain/local/bin/x86_64-banan_os-gcc", + "cStandard": "c17", + "cppStandard": "gnu++20", + "intelliSenseMode": "linux-gcc-x64" + }, + { + "name": "banan-os-kernel", + "includePath": [ + "${workspaceFolder}/BAN/include", + "${workspaceFolder}/kernel/include", + "${workspaceFolder}/userspace/libraries/*/include" + ], + "defines": [ + "__arch=x86_64", + "__is_kernel" + ], + "compilerPath": "${workspaceFolder}/toolchain/local/bin/x86_64-banan_os-gcc", + "cStandard": "c17", + "cppStandard": "gnu++20", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..1b010970 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "cmake.configureOnOpen": false, + "editor.tabSize": 4, + "editor.insertSpaces": false, + "editor.detectIndentation": false +} \ No newline at end of file