Re: [CMake] compiling implementation first in dependancies

2007-06-15 Thread Mathieu Malaterre
On 6/15/07, Philippe Fremy <[EMAIL PROTECTED]> wrote: Filip Brcic wrote: > Дана четвртак 14 јун 2007, Philippe Fremy је написао(ла): >> Hi, >> >> In my project, I have very often a pattern like this: >> a.cpp: >> #include "z.h" >> >> b.cpp: >> #include "z.h" >> >> c.cpp: >> #include "z.h" >>

Re: [CMake] compiling implementation first in dependancies

2007-06-15 Thread Philippe Fremy
Filip Brcic wrote: > Дана четвртак 14 јун 2007, Philippe Fremy је написао(ла): >> Hi, >> >> In my project, I have very often a pattern like this: >> a.cpp: >> #include "z.h" >> >> b.cpp: >> #include "z.h" >> >> c.cpp: >> #include "z.h" >> >> >> z.cpp: >> #include "z.h" >> >> >> If I change z.h

Re: [CMake] compiling implementation first in dependancies

2007-06-14 Thread Philippe Fremy
Alexander Neundorf wrote: >> If I change z.h and z.cpp to add a new method, I usually don't get z.h >> to work out of the box, but only realize it when compiling z.cpp . >> What's annoying is that cmake will first compile a.cpp , b.cpp , c.cpp >> and then only z.cpp . > > Try "make help" to get a

Re: [CMake] compiling implementation first in dependancies

2007-06-14 Thread Alexander Neundorf
On Thursday 14 June 2007 04:54, Philippe Fremy wrote: > Hi, > > In my project, I have very often a pattern like this: > a.cpp: > #include "z.h" > > b.cpp: > #include "z.h" > > c.cpp: > #include "z.h" > > > z.cpp: > #include "z.h" > > > If I change z.h and z.cpp to add a new method, I usually

Re: [CMake] compiling implementation first in dependancies

2007-06-14 Thread Filip Brcic
Дана четвртак 14 јун 2007, Philippe Fremy је написао(ла): > Hi, > > In my project, I have very often a pattern like this: > a.cpp: > #include "z.h" > > b.cpp: > #include "z.h" > > c.cpp: > #include "z.h" > > > z.cpp: > #include "z.h" > > > If I change z.h and z.cpp to add a new method, I usua

Re: [CMake] compiling implementation first in dependancies

2007-06-14 Thread Filip Brcic
Дана четвртак 14 јун 2007, Philippe Fremy је написао(ла): > Hi, > > In my project, I have very often a pattern like this: > a.cpp: > #include "z.h" > > b.cpp: > #include "z.h" > > c.cpp: > #include "z.h" > > > z.cpp: > #include "z.h" > > > If I change z.h and z.cpp to add a new method, I usua

[CMake] compiling implementation first in dependancies

2007-06-14 Thread Philippe Fremy
Hi, In my project, I have very often a pattern like this: a.cpp: #include "z.h" b.cpp: #include "z.h" c.cpp: #include "z.h" z.cpp: #include "z.h" If I change z.h and z.cpp to add a new method, I usually don't get z.h to work out of the box, but only realize it when compiling z.cpp .