Userland/BuggieBox: Use LibShellMinimal instead of LibShell

That would reduce the amount of shared library code we include for usage
of an actual Shell within BuggieBox.
This commit is contained in:
Liav A. 2024-07-26 10:04:34 +03:00 committed by Tim Schumacher
parent 20982a02d5
commit 3d0fb60f57

View file

@ -42,7 +42,7 @@ set(utility_srcs
serenity_bin(BuggieBox)
target_sources(BuggieBox PRIVATE main.cpp)
target_link_libraries(BuggieBox PRIVATE LibMain LibShell LibArchive LibCompress LibCore LibCrypto LibELF LibFileSystem LibGfx LibLine LibRegex LibAudio LibURL)
target_link_libraries(BuggieBox PRIVATE LibMain LibShellMinimal LibArchive LibCompress LibCore LibCrypto LibELF LibFileSystem LibGfx LibLine LibRegex LibAudio LibURL)
foreach(file IN LISTS utility_srcs)
buggiebox_utility(${file})