We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9526f7b commit dc766b8Copy full SHA for dc766b8
.github/actions/build-dependencies/action.yaml
@@ -22,7 +22,7 @@ runs:
22
- name: Setup cmake
23
uses: jwlawson/[email protected]
24
with:
25
- cmake-version: '3.24.x'
+ cmake-version: '3.x.x'
26
27
- name: Restore cached dependencies
28
id: restore-cache
plugins/mqtt/CMakeLists.txt
@@ -10,6 +10,12 @@ if(OS_MACOS)
10
endif()
11
find_package(OpenSSL)
12
13
+get_cmake_property(_variableNames VARIABLES)
14
+list(SORT _variableNames)
15
+foreach(_variableName ${_variableNames})
16
+ message(STATUS "${_variableName}=${${_variableName}}")
17
+endforeach()
18
+
19
find_package(PahoMqttCpp)
20
if(NOT PahoMqttCpp_FOUND)
21
message(WARNING "PahoMqttCpp not found!\n"
0 commit comments