aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <[email protected]>2025-10-13 09:15:04 +0200
committerhjk <[email protected]>2025-10-13 11:29:07 +0000
commitcda5696b3579e1a944f4a33423fbaba6e930b9d2 (patch)
tree904330937d0b2d9641351911b11d9a20af245e33
parent495f8666c222a8bc02539415572e57ef855feeff (diff)
README.md: Also mention containers in the context of CmdBridge
Change-Id: Iff654ed6b8c61169d2aa165fc869b67ba0340d40 Reviewed-by: Eike Ziller <[email protected]>
-rw-r--r--README.md2
-rw-r--r--src/libs/gocmdbridge/server/CMakeLists.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 034c06f7551..61dd4f013d2 100644
--- a/README.md
+++ b/README.md
@@ -59,7 +59,7 @@ Prerequisites:
* CMake
* Ninja (recommended)
* [Go compiler](#installing-the-go-compiler), required for the CmdBridge
- (BUILD_EXECUTABLE_CMDBRIDGE) for fast remote device support.
+ (BUILD_EXECUTABLE_CMDBRIDGE) for fast container and remote device support.
The used toolchain has to be compatible with the one Qt was compiled with.
diff --git a/src/libs/gocmdbridge/server/CMakeLists.txt b/src/libs/gocmdbridge/server/CMakeLists.txt
index 4e6f352028c..9b907f79726 100644
--- a/src/libs/gocmdbridge/server/CMakeLists.txt
+++ b/src/libs/gocmdbridge/server/CMakeLists.txt
@@ -1,7 +1,7 @@
set(ALL_CMDBRIDGE_PLATFORMS "")
env_with_default("QTC_BUILD_EXECUTABLE_CMDBRIDGE" ENV_BUILD_EXECUTABLE_CMDBRIDGE ON)
-option(BUILD_EXECUTABLE_CMDBRIDGE "Build the cmdbridge executable, required for fast remote device support" "${ENV_BUILD_EXECUTABLE_CMDBRIDGE}")
+option(BUILD_EXECUTABLE_CMDBRIDGE "Build the cmdbridge executable, required for fast container and remote device support" "${ENV_BUILD_EXECUTABLE_CMDBRIDGE}")
if(NOT BUILD_EXECUTABLE_CMDBRIDGE)
add_feature_info("Executable CmdBridge" NO "")
@@ -58,7 +58,7 @@ if(NOT GO_BIN)
"Could not find a Go compiler, required for the CmdBridge.
For information about installing Go, see \"Installing the Go Compiler\" in the toplevel README.md file or https://code.qt.io/cgit/qt-creator/qt-creator.git/about/README.md#installing-the-go-compiler
You can also disable the CmdBridge by reconfiguring with -DBUILD_EXECUTABLE_CMDBRIDGE=OFF or setting the environment variable QTC_BUILD_EXECUTABLE_CMDBRIDGE=OFF
-but note that disabling the CmdBridge leads to slow communication with remote devices.")
+but note that disabling the CmdBridge leads to slow communication with containers and remote devices.")
endif()
set(CMDBRIDGEFEATURE_TEXT "with GO compiler at ${GO_BIN}")