Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-10 Thread stefan
ping ? On 2019-10-07 12:47 p.m., stefan wrote: Hi, can you reproduce my observations ? I'm I doing something wrong or is there indeed an issue with CMake ? Should I follow up with a bug report ? Thanks, On 2019-10-04 2:20 p.m., stefan wrote: On 2019-10-03 5:24 p.m., Kyle Edwards wrote:

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-07 Thread stefan
Hi, can you reproduce my observations ? I'm I doing something wrong or is there indeed an issue with CMake ? Should I follow up with a bug report ? Thanks, On 2019-10-04 2:20 p.m., stefan wrote: On 2019-10-03 5:24 p.m., Kyle Edwards wrote: On Thu, 2019-10-03 at 17:08 -0400, stefan wrote:

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-04 Thread stefan
On 2019-10-03 5:24 p.m., Kyle Edwards wrote: On Thu, 2019-10-03 at 17:08 -0400, stefan wrote: Yes, that is exactly what I'm trying to do, but it doesn't seem to have any effect. That is, `dpkg --info ...` doesn't list the additional dependency, and correspondingly, running `apt-get install ...`

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-03 Thread Kyle Edwards via CMake
On Thu, 2019-10-03 at 17:08 -0400, stefan wrote: > Yes, that is exactly what I'm trying to do, but it doesn't seem to > have any effect. That is, `dpkg --info ...` doesn't list the > additional dependency, and correspondingly, running `apt-get install > ...` on the component package file will insta

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-03 Thread stefan
On 2019-10-03 4:59 p.m., Kyle Edwards wrote: On Thu, 2019-10-03 at 16:42 -0400, stefan wrote: My project is already using this style:   set(CPACK_COMPONENTS_ALL runtime development mstool) i.e. all components are already defined. All that's missing is the declaration of their (inter-)dependen

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-03 Thread Kyle Edwards via CMake
On Thu, 2019-10-03 at 16:42 -0400, stefan wrote: > My project is already using this style: >   set(CPACK_COMPONENTS_ALL runtime development mstool) > > i.e. all components are already defined. All that's missing is the > declaration of their (inter-)dependencies. > Are you suggesting I should *not

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-03 Thread stefan
On 2019-10-03 4:37 p.m., Kyle Edwards wrote: On Thu, 2019-10-03 at 16:30 -0400, stefan wrote: Hi Kyle, thanks for the quick followup. On 2019-10-03 4:23 p.m., Kyle Edwards wrote: Please take a look at cpack_add_component(): https://cmake.org/cmake/help/latest/module/CPackComponent.html I'm no

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-03 Thread Kyle Edwards via CMake
On Thu, 2019-10-03 at 16:30 -0400, stefan wrote: > Hi Kyle, > thanks for the quick followup. > On 2019-10-03 4:23 p.m., Kyle Edwards wrote: > > Please take a look at cpack_add_component(): > > https://cmake.org/cmake/help/latest/module/CPackComponent.html > I'm not sure what specifically I should b

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-03 Thread stefan
Hi Kyle, thanks for the quick followup. On 2019-10-03 4:23 p.m., Kyle Edwards wrote: Please take a look at cpack_add_component(): https://cmake.org/cmake/help/latest/module/CPackComponent.html I'm not sure what specifically I should be looking for. In general my setup is working fine, i.e. m

Re: [CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-03 Thread Kyle Edwards via CMake
On Thu, 2019-10-03 at 16:15 -0400, stefan wrote: > I'm trying to generate (debian) packages for a project of mine using > cmake. I need to generate multiple components ("runtime", > "development", etc.). What is the expected way to have the > "development" package depend on the "runtime" package ?

[CMake] HOWTO declare component inter-dependencies in multi-component packages

2019-10-03 Thread stefan
I'm trying to generate (debian) packages for a project of mine using cmake. I need to generate multiple components ("runtime", "development", etc.). What is the expected way to have the "development" package depend on the "runtime" package ? I'v been trying to play with the CPACK_DEBIAN_ENABLE