diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-07-14 21:08:02 +0000 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-07-14 21:08:02 +0000 |
| commit | 3a47a8bd0edcfa3aa03562d0a5c390ef85ad0c6b (patch) | |
| tree | 8fe6e1227a38f507f3424d858c83351557b52860 /arch/x86_64/CMakeLists.txt | |
| parent | 71bb11508020a55c5636f05136bd03059ddc33ed (diff) | |
| download | teachos-3a47a8bd0edcfa3aa03562d0a5c390ef85ad0c6b.tar.xz teachos-3a47a8bd0edcfa3aa03562d0a5c390ef85ad0c6b.zip | |
x86_64: move basic text output implementation
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 dd54b39..86c9559 100644 --- a/arch/x86_64/CMakeLists.txt +++ b/arch/x86_64/CMakeLists.txt @@ -7,6 +7,7 @@ target_include_directories("arch-x86_64" PUBLIC target_link_libraries("arch-x86_64" PUBLIC "arch::any" + "os::kern" "libs::multiboot2" ) @@ -39,6 +40,14 @@ target_sources("arch-x86_64" PRIVATE "src/boot/multiboot.s" ) +#[============================================================================[ +# VGA Code +#]============================================================================] + +target_sources("arch-x86_64" PRIVATE + "src/vga/text.cpp" +) + # #[============================================================================[ # # The Kernel Library # #]============================================================================] |
