From: Kefu Chai Date: Tue, 23 Dec 2025 03:19:12 +0000 (+0800) Subject: cmake: clarify WITH_CRIMSON help text X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=93822d3c6ba77d82c0c836a854db903cd62f1c51;p=ceph.git cmake: clarify WITH_CRIMSON help text The help text for WITH_CRIMSON previously read "Build seastar components", which referenced the underlying C++ framework rather than the user-facing functionality. This was confusing because users care about Ceph features, not implementation details. Change the help text to reference "Crimson" directly and explicitly state the default value, making the option's purpose clearer to users. Signed-off-by: Kefu Chai --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 546bbef96e3..766c12d677e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -734,7 +734,7 @@ if (WITH_SYSTEM_ROCKSDB) find_package(RocksDB 5.14 REQUIRED) endif() -option(WITH_CRIMSON "Build seastar components") +option(WITH_CRIMSON "Build Crimson components" OFF) # Boost option(WITH_SYSTEM_BOOST "require and build with system Boost" OFF)