loboris / ESP32_TFT_library

Full featured TFT library for ESP32 with demo application
553 stars 219 forks source link

Cannot open menuconfig becuase CMakeLists.txt is missing #100

Open krupis opened 1 year ago

krupis commented 1 year ago

Hello. I have cloned the repository and tried to launch menuconfig. It does not seem to work. Is this known issue?

CMake Error: The source directory "C:/Users/petrikas.lu/Desktop/WORK/LEARNING/ESP32_TFT/ESP32_TFT_library" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.
SoniaZotz commented 8 months ago

The following lines of boilerplate have to be in your project's

CMakeLists in this exact order for cmake to work correctly

cmake_minimum_required(VERSION 3.5)

include($ENV{IDF_PATH}/tools/cmake/project.cmake) project(test13)