From f8212da80fb82c56f062435901d01c017610c4ee Mon Sep 17 00:00:00 2001 From: WarmUpTill <19472752+WarmUpTill@users.noreply.github.com> Date: Wed, 5 Nov 2025 21:08:14 +0100 Subject: [PATCH] debug --- .github/actions/build-dependencies/action.yaml | 2 +- plugins/mqtt/CMakeLists.txt | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/actions/build-dependencies/action.yaml b/.github/actions/build-dependencies/action.yaml index 838f1fd2..7be611cb 100644 --- a/.github/actions/build-dependencies/action.yaml +++ b/.github/actions/build-dependencies/action.yaml @@ -22,7 +22,7 @@ runs: - name: Setup cmake uses: jwlawson/actions-setup-cmake@v1.13 with: - cmake-version: '3.24.x' + cmake-version: '3.x.x' - name: Restore cached dependencies id: restore-cache diff --git a/plugins/mqtt/CMakeLists.txt b/plugins/mqtt/CMakeLists.txt index 0397315e..540f3383 100644 --- a/plugins/mqtt/CMakeLists.txt +++ b/plugins/mqtt/CMakeLists.txt @@ -10,6 +10,12 @@ if(OS_MACOS) endif() find_package(OpenSSL) +get_cmake_property(_variableNames VARIABLES) +list(SORT _variableNames) +foreach(_variableName ${_variableNames}) + message(STATUS "${_variableName}=${${_variableName}}") +endforeach() + find_package(PahoMqttCpp) if(NOT PahoMqttCpp_FOUND) message(WARNING "PahoMqttCpp not found!\n"