I am facing issue with the build process in the GitHub portal by using the .yaml and CMakeLists.txt as in the below snippets.
And the contents of the CMakeLists.txt file in the below:
cmake_minimum_required(VERSION "3.19.0")
project(subbu_project)
add_executable("${PROJECT_NAME}" "src/bitwise_add_subtraction_operators.c")
install (TARGETS "${PROJECT_NAME}" DESTINATION bin)
install (FILES "src/bitwise_add_subtraction_operators.c" DESTINATION src)
Thanks in advance for any suggestions or solution for this issue.