Re: [yocto] shared cmake modules

2019-04-09 Thread Henrik Lindblom
Your recipes seem a bit off. Doesn't bitbake complain about them at all? In your logger library you declare a dependency to "texa-cmake-modules", not "cmake-modules". Also, assuming the naming conflict is only present in pastebin versions of your recipes, in cmake-modules.bb you add all files unde

Re: [yocto] shared cmake modules

2019-04-09 Thread Gabriele Zampieri
Hi, yes, following: - cmake-modules.bb https://pastebin.com/5VqN9msS - xxx-log.bb : https://pastebin.com/LYcPW3hc The first one install the modules, thus is a dependency of many libraries, the second one is a simple logger library that uses first's module Thanks for your help, Gabriele Il

Re: [yocto] shared cmake modules

2019-04-08 Thread Henrik Lindblom
> > FILES_${PN}-dev = "${MODULES_DEST_PATH}/*" > Does your library recipe explicitly depend on -dev? Can you share the failing recipe? Cheers, Henrik On Wed, Apr 3, 2019 at 1:18 PM Gabriele Zampieri wrote: > Hi all, > > I'm setting up a layer that will compile our applications and libraries. >

Re: [yocto] shared cmake modules

2019-04-08 Thread Gabriele Zampieri
bump Il giorno mer 3 apr 2019 alle ore 12:07 Gabriele Zampieri < gabbla.mal...@gmail.com> ha scritto: > Hi all, > > I'm setting up a layer that will compile our applications and libraries. > All the applications are based on cmake and they share modules. Before > using yocto I kept the modules in

[yocto] shared cmake modules

2019-04-03 Thread Gabriele Zampieri
Hi all, I'm setting up a layer that will compile our applications and libraries. All the applications are based on cmake and they share modules. Before using yocto I kept the modules in /cmake (under version control) alongside applications and libraries. With yocto I wrote a recipe that checkout t