From de5058e045264416ef0b35f491267d5b203da561 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sat, 13 Jun 2026 13:36:20 +0100 Subject: [PATCH] cmake: link to fx.diagnostics and fx.io --- bshell.runtime/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bshell.runtime/CMakeLists.txt b/bshell.runtime/CMakeLists.txt index eeb035f..9540fa0 100644 --- a/bshell.runtime/CMakeLists.txt +++ b/bshell.runtime/CMakeLists.txt @@ -15,7 +15,7 @@ endforeach (d) add_library(bshell.runtime SHARED ${sources}) -target_link_libraries(bshell.runtime FX::Runtime FX::Collections) +target_link_libraries(bshell.runtime FX::Runtime FX::Collections FX::Io FX::Diagnostics) if (bshell_interactive) target_link_libraries(bshell.runtime FX::Term)