This commit is contained in:
WarmUpTill 2025-11-05 21:08:14 +01:00
parent 862bc420ad
commit f8212da80f
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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"