diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 10 |
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" ) #[============================================================================[ |
