diff --git a/Meta/Lagom/Tools/CMakeLists.txt b/Meta/Lagom/Tools/CMakeLists.txt index 712b5e9b6d0..5515bdcfb4c 100644 --- a/Meta/Lagom/Tools/CMakeLists.txt +++ b/Meta/Lagom/Tools/CMakeLists.txt @@ -3,7 +3,7 @@ function(lagom_tool tool) add_executable(${tool} ${SOURCES} ${LAGOM_TOOL_SOURCES}) # alias for parity with exports add_executable(Lagom::${tool} ALIAS ${tool}) - target_link_libraries(${tool} AK LibCore LibFileSystem ${LAGOM_TOOL_LIBS}) + target_link_libraries(${tool} AK LibCoreMinimal LibFileSystem ${LAGOM_TOOL_LIBS}) install( TARGETS ${tool} EXPORT LagomTargets diff --git a/Meta/gn/secondary/Meta/Lagom/Tools/lagom_tool.gni b/Meta/gn/secondary/Meta/Lagom/Tools/lagom_tool.gni index a4846346feb..03a62e7be8f 100644 --- a/Meta/gn/secondary/Meta/Lagom/Tools/lagom_tool.gni +++ b/Meta/gn/secondary/Meta/Lagom/Tools/lagom_tool.gni @@ -9,7 +9,7 @@ template("lagom_tool") { "//Userland/Libraries", ] deps += [ - "//Userland/Libraries/LibCore", + "//Userland/Libraries/LibCore:minimal", "//Userland/Libraries/LibFileSystem", ] }