aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2025-02-25 14:41:03 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2025-02-25 14:41:03 +0000
commit2cbaf2d52bd9379e5c6e4a0d018b25d1c882193d (patch)
tree24cd1855912865317f6cdfc90d5d88e74f45ecef /CMakeLists.txt
parentb76fd5fcd04c7541c11c3d9c5b2edf1352d70c64 (diff)
downloadteachos-2cbaf2d52bd9379e5c6e4a0d018b25d1c882193d.tar.xz
teachos-2cbaf2d52bd9379e5c6e4a0d018b25d1c882193d.zip
Create inital custom version of c++ vector
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7d30a2c..8657cab 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -116,6 +116,13 @@ add_library("_exception" OBJECT)
add_library("teachos::exception" ALIAS "_exception")
#[============================================================================[
+# The Shared Library
+#]============================================================================]
+
+add_library("_shared" OBJECT)
+add_library("teachos::shared" ALIAS "_shared")
+
+#[============================================================================[
# The Kernel
#]============================================================================]
@@ -129,6 +136,7 @@ target_link_libraries("_kernel" PRIVATE
"teachos::video"
"teachos::memory"
"teachos::exception"
+ "teachos::shared"
)
#[============================================================================[