aboutsummaryrefslogtreecommitdiff
path: root/kernel/CMakeLists.txt
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-06-02 17:32:08 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-06-02 17:32:08 +0200
commit3274bb4377b9f04b7a70139a86283e0fae44b228 (patch)
treeface2b0b544578e5efd1c28c8d75b3307d6e4a8a /kernel/CMakeLists.txt
parente92df52c599f78f36a278508a2b6be5f3a15f3db (diff)
parent46d3f8978e9f4235064daf5f19de5bf3054e7c24 (diff)
downloadkernel-3274bb4377b9f04b7a70139a86283e0fae44b228.tar.xz
kernel-3274bb4377b9f04b7a70139a86283e0fae44b228.zip
Merge branch 'fmorgner/develop-BA-FS26/dynamic-fs' into 'develop-BA-FS26'
Add support infrastructure for automatic file system registration See merge request teachos/kernel!46
Diffstat (limited to 'kernel/CMakeLists.txt')
-rw-r--r--kernel/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/CMakeLists.txt b/kernel/CMakeLists.txt
index cbc7fa5..2388370 100644
--- a/kernel/CMakeLists.txt
+++ b/kernel/CMakeLists.txt
@@ -53,6 +53,7 @@ target_sources("kernel_lib" PRIVATE
"src/filesystem/mount.cpp"
"src/filesystem/open_file_descriptor.cpp"
"src/filesystem/open_file_table.cpp"
+ "src/filesystem/type_registry.cpp"
"src/filesystem/vfs.cpp"
# DevFS Filesystem
@@ -200,6 +201,7 @@ if(BUILD_TESTING)
"src/filesystem/mount.tests.cpp"
"src/filesystem/open_file_descriptor.tests.cpp"
"src/filesystem/open_file_table.tests.cpp"
+ "src/filesystem/type_registry.tests.cpp"
"src/filesystem/vfs.tests.cpp"
# Storage Subsystem Tests