aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorFabian Imhof <fabian.imhof@ost.ch>2024-10-15 08:23:39 +0000
committerFabian Imhof <fabian.imhof@ost.ch>2024-10-15 08:23:39 +0000
commit205934ca45d591924b4be6e7ae5a8849958e0cf6 (patch)
tree5f0b193fa9620a253690f494405e5d407d97ca56 /CMakeLists.txt
parent38e0b13ab9a4997fdf9f311fd125825919d2e6c7 (diff)
downloadteachos-205934ca45d591924b4be6e7ae5a8849958e0cf6.tar.xz
teachos-205934ca45d591924b4be6e7ae5a8849958e0cf6.zip
continue implementing paging
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f5cc7ea..3586669 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -101,13 +101,20 @@ 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"
)
#[============================================================================[