From 74695e8593775b9c9ff7c38f8856c2228405711b Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sat, 30 May 2026 20:17:52 +0100 Subject: [PATCH] cmake: remove debug messages --- bshell.core/CMakeLists.txt | 1 - bshell.runtime/CMakeLists.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/bshell.core/CMakeLists.txt b/bshell.core/CMakeLists.txt index b6ad822..3c47aac 100644 --- a/bshell.core/CMakeLists.txt +++ b/bshell.core/CMakeLists.txt @@ -11,7 +11,6 @@ foreach (d ${source_dirs}) set(sources ${sources} ${d_sources}) endforeach (d) -message(STATUS ${sources}) add_library(bshell.core SHARED ${sources}) target_link_libraries(bshell.core bshell.runtime FX::Runtime FX::Collections FX::Term) diff --git a/bshell.runtime/CMakeLists.txt b/bshell.runtime/CMakeLists.txt index 49e06ff..b258ed6 100644 --- a/bshell.runtime/CMakeLists.txt +++ b/bshell.runtime/CMakeLists.txt @@ -13,7 +13,6 @@ foreach (d ${source_dirs}) set(sources ${sources} ${d_sources}) endforeach (d) -message(STATUS ${sources}) add_library(bshell.runtime SHARED ${sources}) target_link_libraries(bshell.runtime FX::Runtime FX::Collections FX::Term)