diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2025-02-27 09:24:17 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2025-02-27 09:24:17 +0000 |
| commit | 8d14c729c43ee555c240a043e3909617e4fa5043 (patch) | |
| tree | 80572fd3b785ea1f4ffba05919ca29fbbf0d2d12 /arch/x86_64/CMakeLists.txt | |
| parent | cc67705d0154f1d55aa234714389ec2db00e9406 (diff) | |
| download | teachos-8d14c729c43ee555c240a043e3909617e4fa5043.tar.xz teachos-8d14c729c43ee555c240a043e3909617e4fa5043.zip | |
Add files to cmake and implement gdt flags
Diffstat (limited to 'arch/x86_64/CMakeLists.txt')
| -rw-r--r-- | arch/x86_64/CMakeLists.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86_64/CMakeLists.txt b/arch/x86_64/CMakeLists.txt index e9f8d5f..8cb1ca2 100644 --- a/arch/x86_64/CMakeLists.txt +++ b/arch/x86_64/CMakeLists.txt @@ -82,6 +82,15 @@ target_sources("_exception" PRIVATE ) #[============================================================================[ +# The Context switching Library +#]============================================================================] + +target_sources("_context" PRIVATE + "src/context_switching/descriptor_table/gdt_flags.cpp" + "src/context_switching/descriptor_table/access_byte.cpp" +) + +#[============================================================================[ # The Bootable ISO Image #]============================================================================] |
