maximkulkin / esp32-homekit-camera

Firmware for esp32-camera module to act as Apple Homekit IP camera
MIT License
394 stars 78 forks source link

added CMakeLists.txt #83

Open gautam-dev-maker opened 3 years ago

gautam-dev-maker commented 3 years ago

Solved the issue by adding the CMakeLists.txt in the root directory

CPHsieh commented 3 years ago

I tried this but the pop up text menu has no "ESP32 HomeKit Camera " in menu.

ychieux commented 3 years ago

Same problem here: ESP32 Homekit Camera is missing from menuconfig @CPHsieh @gautam-dev-maker How should I proceed to get this item in the menu?

vglucas commented 2 years ago

@gautam-dev-maker @maximkulkin

I also do not see the ESP32 HOMEKIT CAMERA item in the menuconfig (use win 10)

help me

andrewsampaio commented 2 years ago

this is because of the same problem. There is no CMakeLists.txt inside the main folder. If you add one you'll see the esp32 camera menuconfig. The problem i have now is to correctly compile the solution (probably because I'm doing something wrong in my CMakeLists.txt).

ejdprops commented 2 years ago

After researching this extensively, what I've found is that the issue is requirements for using CMake to compile vs. Make. CMake requires several different files (CMakeLists.txt in Main as well as files for each of the components. Unfortunately, this version of esp32-homekit-camera was not configured to use CMake for compiling.

The best solution I've found so far is to use MSYS as outlined in Espressif's ESP-IDF documentation and compile using Make, as all the requisite files seem to be here.