esp32-homekit-camera icon indicating copy to clipboard operation
esp32-homekit-camera copied to clipboard

added CMakeLists.txt

Open gautam-dev-maker opened this issue 4 years ago • 5 comments

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

gautam-dev-maker avatar Jan 20 '21 09:01 gautam-dev-maker

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

CPHsieh avatar Mar 30 '21 04:03 CPHsieh

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?

ychieux avatar Jun 12 '21 18:06 ychieux

@gautam-dev-maker @maximkulkin

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

help me

vglucas avatar Jul 17 '21 17:07 vglucas

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).

andrewsampaio avatar Oct 14 '21 23:10 andrewsampaio

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.

ejdprops avatar Nov 12 '21 10:11 ejdprops