From 2997ca4e4ff14d1663d2dc75c2f0589709a3c261 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 14 Nov 2022 07:42:45 +0200 Subject: [PATCH] Moved vscode workspace file --- Fennix Drivers.code-workspace | 10 ++++++++++ Fennix Kernel.code-workspace | 26 ++++++++++++++++++++++++++ Fennix Userspace.code-workspace | 14 ++++++++++++++ Lynx.code-workspace | 13 +++++++++++++ 4 files changed, 63 insertions(+) create mode 100644 Fennix Drivers.code-workspace create mode 100644 Fennix Kernel.code-workspace create mode 100644 Fennix Userspace.code-workspace create mode 100644 Lynx.code-workspace diff --git a/Fennix Drivers.code-workspace b/Fennix Drivers.code-workspace new file mode 100644 index 00000000..24d69188 --- /dev/null +++ b/Fennix Drivers.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "./Drivers" + } + ], + "settings": { + "debug.allowBreakpointsEverywhere": true + } +} diff --git a/Fennix Kernel.code-workspace b/Fennix Kernel.code-workspace new file mode 100644 index 00000000..229aa7f2 --- /dev/null +++ b/Fennix Kernel.code-workspace @@ -0,0 +1,26 @@ +{ + "folders": [ + { + "path": "./Kernel" + } + ], + "settings": { + "debug.allowBreakpointsEverywhere": true, + "files.associations": { + "limine.h": "c", + "types.h": "c", + "binfo.h": "c", + "liballoc_1_1.h": "c", + "cstring": "cpp", + "cargs.h": "c", + "memory.hpp": "c", + "convert.h": "c", + "limits.h": "c", + "assert.h": "c", + "cwalk.h": "c", + "md5.h": "c", + "stdint.h": "c", + "debug.h": "c" + } + } +} diff --git a/Fennix Userspace.code-workspace b/Fennix Userspace.code-workspace new file mode 100644 index 00000000..24386b4b --- /dev/null +++ b/Fennix Userspace.code-workspace @@ -0,0 +1,14 @@ +{ + "folders": [ + { + "path": "./Userspace" + } + ], + "settings": { + "debug.allowBreakpointsEverywhere": true, + "files.associations": { + "fex.hpp": "c", + "types.h": "c" + } + } +} diff --git a/Lynx.code-workspace b/Lynx.code-workspace new file mode 100644 index 00000000..f964b80b --- /dev/null +++ b/Lynx.code-workspace @@ -0,0 +1,13 @@ +{ + "folders": [ + { + "path": "./Lynx" + } + ], + "settings": { + "debug.allowBreakpointsEverywhere": true, + "files.associations": { + "efi.h": "c" + } + } +}