Hello !
We have a c++ code and CMakeLists.txt on Github which needs to be run with Cmake. However, when we try to bitbake our recipe we get this specific CMake error;

-Please check below for our recipe and txt. files-
Our recipe (helloworld.bb) is as follows:
# Recipe for the Hello World program
SUMMARY = "Recipe for the Hello World program"
LICENSE = "CLOSED"
LIC_FILES_CHKSUM = ""
DEPENDS += "opencv"
DEPENDS += "libconfig"
DEPENDS += "tensorflow-lite"
SRC_URI = "git://github.com/aniladar/patch.git;protocol=https;branch=main"
SRCREV = "${AUTOREV}"
# Here we specify the source directory, where we do all the building and expect sources to be placed
S = "${WORKDIR}/git"
B = "${S}"
inherit cmake
The CMakeLists.txt file is as follows:
cmake_minimum_required(VERSION 3.14)
project(patch)
add_executable(minimal minimal.cc)
Can anyone give some hints where we are doing wrong or what should be included in our recipe?
Your guidance and clarifications are important for us.
Thank you in advance.