Kernel+LibPartition: Move DiskPartitionMetadata into LibPartition

This commit creates a new library LibPartition which will contain
partition related code sharable between Kernel and Userland and
includes DiskPartitionMetadata as the first shared class.
This commit is contained in:
Samuel Bowman 2022-02-12 14:21:28 -05:00 committed by Linus Groh
commit be1c5c6b9f
Notes: sideshowbarker 2024-07-17 08:41:46 +09:00
9 changed files with 27 additions and 20 deletions

View file

@ -0,0 +1,5 @@
set(SOURCES
DiskPartitionMetadata.cpp
)
serenity_lib(LibPartition partition)