aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2025-03-15 11:29:26 +0000
committerFabian Imhof <fabian.imhof@ost.ch>2025-03-15 12:03:23 +0000
commit2b8e6e7e10f084a9a9ba5c0b79a041f4d1ac459b (patch)
tree04f77a457517c8c36e22dead8261191e560eae6d /CMakeLists.txt
parentf2b9ac8f0f22354241e9b78e47aa7cb94e5ef511 (diff)
downloadteachos-2b8e6e7e10f084a9a9ba5c0b79a041f4d1ac459b.tar.xz
teachos-2b8e6e7e10f084a9a9ba5c0b79a041f4d1ac459b.zip
implement loading of gdtr register
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index daf87b8..c895618 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -123,11 +123,11 @@ add_library("_context" OBJECT)
add_library("teachos::context_switching" ALIAS "_context")
#[============================================================================[
-# The Shared Library
+# The Context switching Library
#]============================================================================]
-add_library("_shared" OBJECT)
-add_library("teachos::shared" ALIAS "_shared")
+add_library("_stl" OBJECT)
+add_library("teachos::stl" ALIAS "_stl")
#[============================================================================[
# The Kernel
@@ -143,7 +143,7 @@ target_link_libraries("_kernel" PRIVATE
"teachos::video"
"teachos::memory"
"teachos::exception"
- "teachos::shared"
+ "teachos::stl"
"teachos::context_switching"
)