1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:17:44 +00:00

LibFileSystem: Create LibFileSystem

Copy over updated `DeprecatedFile` functions
This commit is contained in:
Cameron Youell 2023-03-22 00:32:08 +11:00 committed by Linus Groh
parent e78be03b49
commit edab0cbf41
4 changed files with 481 additions and 0 deletions

View file

@ -0,0 +1,6 @@
set(SOURCES
FileSystem.cpp
)
serenity_lib(LibFileSystem filesystem)
target_link_libraries(LibFileSystem PRIVATE LibCore)