Re: [cmake-developers] cmake selftest use different compiler and binutils as configured on Darwin

2012-07-14 Thread Claus Klein
Cannot find any coverage files. Ignoring Coverage request. Submit files (using http) Using HTTP submit method Drop site:http://www.cdash.org/CDash/submit.php?project=CMake Uploaded: /Users/clausklein/Downloads/CmakeMakeBuildDir/Testing/ 20120714-1043/Build.xml Uploaded: /Users/clausklein

[cmake-developers] Why not disable the Unix Makefiles generator for Darwin?

2012-07-14 Thread Claus Klein
I am wondering why Nina generator is disabled on Darwin. I have just the same problems with Unix Makefile generator? Or it would be nice to enable Ninja too for Darwin, I need it to cross compile my projects ... Claus See

Re: [cmake-developers] Why not disable the Unix Makefiles generator for Darwin?

2012-07-14 Thread Richard Wackerbarth
By default, Ninja is disabled on Darwin because it has NEVER worked for a number of the scenarios in the test suite. These have to do with building OSX packages, etc.) If YOU need to use certain ninja capabilities and are not affected by those shortcomings, you can easily build a version with

Re: [cmake-developers] Why not disable the Unix Makefiles generator for Darwin?

2012-07-14 Thread Nicolas Desprès
I am almost ready to push a branch fixing all the failing tests on Darwin with Ninja. So it is coming soon. Cheers, Nico On Sat, Jul 14, 2012 at 2:33 PM, Claus Klein claus.kl...@arcormail.de wrote: I am wondering why Nina generator is disabled on Darwin. I have just the same problems with Unix

Re: [cmake-developers] [PATCH] Added very basic Windows CE Makefile support

2012-07-14 Thread Patrick Gansterer
Hi, at first: Sorry for the very long delay. On Mon, 14 Nov 2011 21:12:24 +0100, Alexander Neundorf wrote: On Saturday 12 November 2011, Patrick Gansterer wrote: Hi, I've created a very simple patch to add the basic support for WindowsCE to CMake. I does not provide any automatically

[cmake-developers] [PATCH] Cleanup AddPlatformDefinitions() of Visual Studio generators

2012-07-14 Thread Patrick Gansterer
see attached patch -- PatrickFrom 3ffb686016a7ba40688d28da8974609bf6c5d673 Mon Sep 17 00:00:00 2001 From: Patrick Gansterer par...@paroga.com Date: Sat, 14 Jul 2012 09:38:54 +0200 Subject: [PATCH] Cleanup AddPlatformDefinitions() of Visual Studio generators Move adding of definitions into

[cmake-developers] [PATCH] VS: Add support for Windows CE

2012-07-14 Thread Patrick Gansterer
see attached patches This considers most of the patches in mantis. It still has some issues, but it's easier to post follow up patches to improve an existing code base, than starting with nothing. -- PatrickFrom 67bd522e90cdef9f857f57ecb1f41148c518476e Mon Sep 17 00:00:00 2001 From: Patrick

Re: [cmake-developers] [PATCH] Added very basic Windows CE Makefile support

2012-07-14 Thread Rolf Eike Beer
Patrick Gansterer wrote: Hi, at first: Sorry for the very long delay. I do not really care for this, but just some minor stylistic nitpicks: -in Modules/Platform/Windows-cl.cmake you initialize some variables in both branches of an if(). You should keep the order you set them the same in

Re: [cmake-developers] [PATCH] Added very basic Windows CE Makefile support

2012-07-14 Thread Patrick Gansterer
Hi, On Sat, 14 Jul 2012 21:08:24 +0200, Rolf Eike Beer wrote: -in Modules/Platform/Windows-cl.cmake you initialize some variables in both branches of an if(). You should keep the order you set them the same in both branches as is makes comparing this much easier. Where exactly? I don't find

Re: [cmake-developers] [PATCH] Added very basic Windows CE Makefile support

2012-07-14 Thread David Cole
On Sat, Jul 14, 2012 at 3:30 PM, Patrick Gansterer par...@paroga.comwrote: Hi, On Sat, 14 Jul 2012 21:08:24 +0200, Rolf Eike Beer wrote: -in Modules/Platform/Windows-cl.**cmake you initialize some variables in both branches of an if(). You should keep the order you set them the same in

Re: [cmake-developers] [PATCH] Added very basic Windows CE Makefile support

2012-07-14 Thread Rolf Eike Beer
Patrick Gansterer wrote: Hi, On Sat, 14 Jul 2012 21:08:24 +0200, Rolf Eike Beer wrote: -in Modules/Platform/Windows-cl.cmake you initialize some variables in both branches of an if(). You should keep the order you set them the same in both branches as is makes comparing this much

Re: [cmake-developers] [PATCH] Added very basic Windows CE Makefile support

2012-07-14 Thread Patrick Gansterer
Hi, Am 14.07.2012 um 22:08 schrieb David Cole: On Sat, Jul 14, 2012 at 3:30 PM, Patrick Gansterer par...@paroga.com wrote: Hi, On Sat, 14 Jul 2012 21:08:24 +0200, Rolf Eike Beer wrote: -in Modules/Platform/Windows-cl.cmake you initialize some variables in both branches of an if(). You