Cmake with bitbake recipe

前端 未结 3 1013
臣服心动
臣服心动 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:53

    The correct way of writing own recipes with cmake as follows:

    DESCRIPTION = "cameracapture application" 
    SECTION = "examples" 
    LICENSE = "CLOSED" 
    PR = "r0" 
    
    DEPENDS = "opencv"
    
    SRC_URI = "git://github.com/zafrullahsyed/cameracapture.git;protocol=https;tag=v0.1"
    
    S = "${WORKDIR}/git"
    
    inherit pkgconfig cmake
    
    do_install() {
        install -d ${D}${bindir}
        install -m 0755 cameracapture ${D}${bindir}
    }
    

    Previously I didn't add do_install that's the reason yocto downloads the recipe but unable to include it Image.

提交回复
热议问题