Hi cehlers
Thanks for the great tutorial
I did hit one strange error as below
CMake Error at /home/rmg/repos/sg-sdk/ext/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt:23 (cmake_minimum_required):
Compatibility with CMake < 3.5 has been removed from CMake.
Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
to tell CMake that the project requires at least <min> but has been updated
to work with policies introduced by <max> or earlier.
Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
My cmake version was 4.0.2. so I edited line 23 of CMakeLists.txt to
cmake_minimum_required(VERSION 3.5)
and everything worked
I