From 723b64d81f455175cf1cc5f9f496d3b4fe5dac89 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Tue, 16 Sep 2025 13:30:00 -0700 Subject: [PATCH] Reword comment about when ZeroMQ is required for the build --- src/cluster/backend/CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/cluster/backend/CMakeLists.txt b/src/cluster/backend/CMakeLists.txt index 648dd8e265..c5a6d1b4a2 100644 --- a/src/cluster/backend/CMakeLists.txt +++ b/src/cluster/backend/CMakeLists.txt @@ -1,7 +1,5 @@ -# Default to building ZeroMQ only if ZeroMQ was found. -# -# If a user enabled the cluster backend explicitly (-D ENABLE_CLUSTER_BACKEND_ZEROMQ:bool=ON), -# but ZeroMQ wasn' found, hard bail. +# Default to building ZeroMQ, but add an option that allows it to be disabled +# via CMake. option(ENABLE_CLUSTER_BACKEND_ZEROMQ "Enable the ZeroMQ cluster backend" ON) if (ENABLE_CLUSTER_BACKEND_ZEROMQ)