Re: cmake parallel make problem.

2012-01-18 Thread Richard Shaw
On Mon, Jan 16, 2012 at 5:35 PM, Petr Machata pmach...@redhat.com wrote: I didn't look into your problem, but what you say would mean that cmake is not generating all necessary dependencies for make.  Having a rule like X: Y Z is not enough.  If Z depends on Y, you need additionally Z: Y,

Re: cmake parallel make problem.

2012-01-18 Thread Richard Shaw
On Wed, Jan 18, 2012 at 10:34 AM, Richard Shaw hobbes1...@gmail.com wrote: I'll try adding only the dependent library and see if I run into any other issues. Nope! It worked. Took the build time from about 65-70 minutes to just under 20 minutes. Thanks all! Richard -- devel mailing list

Re: cmake parallel make problem.

2012-01-16 Thread Petr Machata
Richard Shaw hobbes1...@gmail.com writes: On Tue, Jan 10, 2012 at 8:18 AM, Rex Dieter rdie...@math.unl.edu wrote: Richard Shaw wrote: I've gone through the CMakeLists.txt and added add_dependencies(... but I think that's redundant because target_link_libraries is getting set properly. I'm

Re: cmake parallel make problem.

2012-01-10 Thread Richard Shaw
On Tue, Jan 10, 2012 at 8:18 AM, Rex Dieter rdie...@math.unl.edu wrote: Richard Shaw wrote: I've gone through the CMakeLists.txt and added add_dependencies(... but I think that's redundant because target_link_libraries is getting set properly. I'm not sure this is redundant, as I would

Re: Re: cmake parallel make problem.

2012-01-10 Thread Richard Shaw
On Tue, Jan 10, 2012 at 8:28 AM, Laurent Rineau laurent.rineau__fed...@normalesup.org wrote: Le mardi 10 janvier 2012 08:18:18 Rex Dieter a écrit : Richard Shaw wrote: I've gone through the CMakeLists.txt and added add_dependencies(... but I think that's redundant because

cmake parallel make problem.

2012-01-09 Thread Richard Shaw
openCOLLADA has had issues with parallel makes from the beginning and at the time I didn't know cmake well enough to do anything about it. Apparently I still haven't gotten it figured out. I've gone through the CMakeLists.txt and added add_dependencies(... but I think that's redundant because