aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2025-03-15 11:29:26 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2025-03-15 11:29:26 +0000
commit60ab85044289f4a9a0a84c37bfb2b3938f6ae416 (patch)
treef1b41963d0a28bbe26e4e8f61c8bcc11b4daa000 /CMakeLists.txt
parentf2b9ac8f0f22354241e9b78e47aa7cb94e5ef511 (diff)
downloadteachos-60ab85044289f4a9a0a84c37bfb2b3938f6ae416.tar.xz
teachos-60ab85044289f4a9a0a84c37bfb2b3938f6ae416.zip
Fix size of segment descriptor using bit fields and struct packing
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"
)