diff options
| author | Fabian Imhof <fabian.imhof@ost.ch> | 2024-10-15 08:23:39 +0000 |
|---|---|---|
| committer | Fabian Imhof <fabian.imhof@ost.ch> | 2024-10-15 08:23:39 +0000 |
| commit | 205934ca45d591924b4be6e7ae5a8849958e0cf6 (patch) | |
| tree | 5f0b193fa9620a253690f494405e5d407d97ca56 /arch/x86_64/CMakeLists.txt | |
| parent | 38e0b13ab9a4997fdf9f311fd125825919d2e6c7 (diff) | |
| download | teachos-205934ca45d591924b4be6e7ae5a8849958e0cf6.tar.xz teachos-205934ca45d591924b4be6e7ae5a8849958e0cf6.zip | |
continue implementing paging
Diffstat (limited to 'arch/x86_64/CMakeLists.txt')
| -rw-r--r-- | arch/x86_64/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86_64/CMakeLists.txt b/arch/x86_64/CMakeLists.txt index 25f8634..603393c 100644 --- a/arch/x86_64/CMakeLists.txt +++ b/arch/x86_64/CMakeLists.txt @@ -47,6 +47,14 @@ target_sources("_memory" PRIVATE ) #[============================================================================[ +# The Exception handling Library +#]============================================================================] + +target_sources("_exception" PRIVATE + "src/exception_handling/assert.cpp" +) + +#[============================================================================[ # The Bootable ISO Image #]============================================================================] |
