sepfy / libpeer

WebRTC Library for IoT/Embedded Device using C
MIT License
804 stars 108 forks source link

missing headers #52

Open richlegrand opened 8 months ago

richlegrand commented 8 months ago

Hello, I've been trying to compile the latest code (I noticed the esp32s3 example, which is cool :)

I'm seeing a couple of missing header files that is making the build fail: src/peer_signaling.c:7:10: fatal error: core_mqtt.h: No such file or directory 7 | #include src/ssl_transport.h:10:10: fatal error: transport_interface.h: No such file or directory 10 | #include "transport_interface.h"

I see these errors when building the esp32 and esp32s3 examples.

thanks :)

sepfy commented 8 months ago

Hi, I tested with my pc, but there is no error of missing header. could you check the coreMQTT source code is in the third_party directory? if yes, could you try to remove your build file of esp32 and rebuild the example?

richlegrand commented 7 months ago

Ah, I didn't use the --recursive argument when cloning. You might edit examples/esp32/README.md.

thanks!