From 205934ca45d591924b4be6e7ae5a8849958e0cf6 Mon Sep 17 00:00:00 2001 From: Fabian Imhof Date: Tue, 15 Oct 2024 08:23:39 +0000 Subject: continue implementing paging --- CMakeLists.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index f5cc7ea..3586669 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -101,12 +101,19 @@ add_library("_video" OBJECT) add_library("teachos::video" ALIAS "_video") #[============================================================================[ -# The memory Library +# THE Memory Library #]============================================================================] add_library("_memory" OBJECT) add_library("teachos::memory" ALIAS "_memory") +#[============================================================================[ +# The Exception handling Library +#]============================================================================] + +add_library("_exception" OBJECT) +add_library("teachos::exception" ALIAS "_exception") + #[============================================================================[ # The Kernel #]============================================================================] @@ -120,6 +127,7 @@ target_link_libraries("_kernel" PRIVATE "teachos::boot" "teachos::video" "teachos::memory" + "teachos::exception" ) #[============================================================================[ -- cgit v1.2.3