LibFileSystem: Depend on the minimal LibCore source set

This commit is contained in:
Timothy Flynn 2024-03-25 10:33:53 -04:00 committed by Tim Flynn
commit 9b1b91f98a
Notes: sideshowbarker 2024-07-16 23:03:06 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ shared_library("LibFileSystem") {
] ]
deps = [ deps = [
"//AK", "//AK",
"//Userland/Libraries/LibCore", "//Userland/Libraries/LibCore:minimal",
] ]
output_name = "filesystem" output_name = "filesystem"
} }

View file

@ -4,4 +4,4 @@ set(SOURCES
) )
serenity_lib(LibFileSystem filesystem) serenity_lib(LibFileSystem filesystem)
target_link_libraries(LibFileSystem PRIVATE LibCore) target_link_libraries(LibFileSystem PRIVATE LibCoreMinimal)