Cmake with bitbake recipe

前端 未结 3 1009
臣服心动
臣服心动 2021-02-04 11:27

I am trying to build an yocto image with my own package. I have OpenCV code on github which uses cmake.

I trying to write a recipe for it and facing lot of errors. Can

3条回答
  •  滥情空心
    2021-02-04 11:55

    If the CMakeLists.txt uses the install command then bitbake will do the install for you and you won't need to define you own do_install.

    install(TARGETS cameracapture DESTINATION bin)
    

提交回复
热议问题