Skip to content

Commit dc766b8

Browse files
committed
debug
1 parent 9526f7b commit dc766b8

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/actions/build-dependencies/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
- name: Setup cmake
2323
uses: jwlawson/[email protected]
2424
with:
25-
cmake-version: '3.24.x'
25+
cmake-version: '3.x.x'
2626

2727
- name: Restore cached dependencies
2828
id: restore-cache

plugins/mqtt/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ if(OS_MACOS)
1010
endif()
1111
find_package(OpenSSL)
1212

13+
get_cmake_property(_variableNames VARIABLES)
14+
list(SORT _variableNames)
15+
foreach(_variableName ${_variableNames})
16+
message(STATUS "${_variableName}=${${_variableName}}")
17+
endforeach()
18+
1319
find_package(PahoMqttCpp)
1420
if(NOT PahoMqttCpp_FOUND)
1521
message(WARNING "PahoMqttCpp not found!\n"

0 commit comments

Comments
 (0)