Re: [CMake] Transitively including dependency source directories

2011-10-19 Thread Michael Hertling
On 10/14/2011 11:39 PM, Robert Dailey wrote: > If I have the following target dependency chain: > > A >> B >> C >> D > > Then target "D" must have the include directories (defined on a per project > basis with a cache variable currently) for C, B, and A. > > Right now I'm trying to implement the

Re: [CMake] Transitively including dependency source directories

2011-10-15 Thread David Cole
On Fri, Oct 14, 2011 at 5:39 PM, Robert Dailey wrote: > If I have the following target dependency chain: > A >> B >> C >> D > Then target "D" must have the include directories (defined on a per project > basis with a cache variable currently) for C, B, and A. > Right now I'm trying to implement th

[CMake] Transitively including dependency source directories

2011-10-14 Thread Robert Dailey
If I have the following target dependency chain: A >> B >> C >> D Then target "D" must have the include directories (defined on a per project basis with a cache variable currently) for C, B, and A. Right now I'm trying to implement the logic for this myself using macro recursion, but as of right