diff options
| author | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-13 08:28:30 +0000 |
|---|---|---|
| committer | Matteo Gmür <matteo.gmuer1@ost.ch> | 2024-10-13 08:28:30 +0000 |
| commit | 553f3a824511bb8107982b2b2737f5b1dff59855 (patch) | |
| tree | caec969baa899969e1171813a028fa50aab8b2a6 /arch/x86_64/CMakeLists.txt | |
| parent | b28082b1642f049fcf171a85c7d6841093b0682a (diff) | |
| download | teachos-553f3a824511bb8107982b2b2737f5b1dff59855.tar.xz teachos-553f3a824511bb8107982b2b2737f5b1dff59855.zip | |
Add missing cpp files to cmake and fix elf alignment issues
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 6ff1332..882ea9a 100644 --- a/arch/x86_64/CMakeLists.txt +++ b/arch/x86_64/CMakeLists.txt @@ -37,6 +37,15 @@ target_sources("_video" PRIVATE ) #[============================================================================[ +# The Memory Library +#]============================================================================] + +target_sources("_memory" PRIVATE + "src/memory/multiboot.cpp" + "src/memory/frame_allocator.cpp" +) + +#[============================================================================[ # The Bootable ISO Image #]============================================================================] |
