Meta/Tools: Depend on the minimal LibCore source set

This commit is contained in:
Timothy Flynn 2024-03-25 10:14:43 -04:00 committed by Tim Flynn
commit 6f65e188f0
Notes: sideshowbarker 2024-07-17 03:10:07 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -9,7 +9,7 @@ template("lagom_tool") {
"//Userland/Libraries",
]
deps += [
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibCore:minimal",
"//Userland/Libraries/LibFileSystem",
]
}