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

[CMake] Should I create IMPORTED targets for executables?

2012-07-14 Thread Stephen Kelly
Hi, For Qt 5 I'm creating IMPORTED targets for all the libraries, which has several benefits. I'm not sure if there are any benefits to creating IMPORTED targets for the executables too? Currently I just create variables with the full paths to the executables (moc, uic, rcc) instead. Is

[CMake] How to export the user-defined variable in to the parent directory?

2012-07-14 Thread 黄光成
my directory hierarchical is : dir1/dir2/dir3. In dir3's CMakeLists.txt, I define a custom variable named 'xxx' using the command set(xxx yyy). I want to use the variable 'xxx' in dir1's CMakeLists.txt, how to do that? Can export the user-defined variable?-- Powered by www.kitware.com Visit

Re: [CMake] Cross-compilation for windows on Darwin with nighlty build fails

2012-07-14 Thread Eric Noulard
2012/7/13 Claus Klein claus.kl...@arcormail.de: Can anyone please help? Thanks in advance Best Regards Claus With this CMAKE_TOOLCHAIN_FILE it just works, but there is always an error the first time cmake configure step is started from GUI: Do you have the same error with command line

Re: [CMake] Cross-compilation for windows on Darwin with nighlty build fails

2012-07-14 Thread Claus Klein
Hi Eric, I have the same behavior from command line and GUI. The orig. project setup was: project(ftplibcpp) with project(ftplibcpp CXX) it works: claus-kleins-macbook-pro:build clausklein$ /opt/local/bin/cmake - DCMAKE_TOOLCHAIN_FILE=/Users/clausklein/Toolchain-cross-mingw32- linux.cmake

Re: [CMake] How to install external project

2012-07-14 Thread Martin Vymazal
Hello, thanks for your advice. Unfortunately, I must still be doing something wrong. Now I have this: make[3]: *** No rule to make target `install'. Stop. My CMakeLists.txt is below. cmake_minimum_required(VERSION 2.8) project(OpenBlasTest) include(ExternalProject)

[CMake] Choosing the right compiler

2012-07-14 Thread Óscar Fuentes
On a machine with both MinGW and VS installed, some generators (Ninja, for instance) will use MinGW by default. The only way I know of instructing cmake to use VS instead is cmake -G Ninja -DCMAKE_CXX_COMPILER=cl -DCMAKE_C_COMPILER=cl ... This is quite verbose and triggers some bugs. Is there a

Re: [CMake] How to install external project

2012-07-14 Thread joewan
hi, I think you should modify the target file name blas_LINUX.a,changing it to your real target file name. Martin Vymazal martin.vyma...@vki.ac.be编写: Hello, thanks for your advice. Unfortunately, I must still be doing something wrong. Now I have this: make[3]: *** No rule to make target

[Cmake-commits] CMake branch, release, updated. v2.8.8-516-gd1d34f8

2012-07-14 Thread David Cole
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project CMake. The branch, release has been updated via d1d34f88a7fbc66414097ca7e4e4b772cc51f51f (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.8-514-g6c1609e

2012-07-14 Thread Kitware Robot
Stamp diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake index 3097fd3..b5f60be 100644 --- a/Source/CMakeVersion.cmake +++ b/Source/CMakeVersion.cmake @@ -2,5 +2,5 @@ SET(CMake_VERSION_MAJOR 2) SET(CMake_VERSION_MINOR 8) SET(CMake_VERSION_PATCH 8) -SET(CMake_VERSION_TWEAK 20120714