I have two recipes that add two packages that depend on each other. For example exlib
which adds a library and a couple of header files. There is another application called ex-calibrate
which uses the library and the header files. ex-calibrate_0.1.bb
has the DEPENDS = exlib
set. However, the ex-calibrate_0.1.bb
do_compile
fails because it can't access the header files that exlib
provides.
Is there some bitbake "proper" way to provide this information between these two recipes?
It turns out that if the exlib
properly installs all the headers in the final target they will be available for use in ex-calibrate_0.1.bb
. Which is what @Krupal-Tharwala suggested.