[cmake-developers] [CMake 0012390]: Parse output from pkgname-config binaries for -I/-L/-l flags

2011-08-07 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=12390 == Reported By:Martin von Gagern Assigned To:

[cmake-developers] [CMake 0012391]: add a macro in FindDoxygen.cmake to create a specific custom target

2011-08-07 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://www.cmake.org/Bug/view.php?id=12391 == Reported By:Arnaud Gelas Assigned To:

Re: [CMake] Intertwined projects.

2011-08-07 Thread Yuri Timenkov
So you are trying to install your project into public location on CI server? If so, why? Otherwise I don't see any reasons why install shouldn't work, if you're installing these libraries into app1's specific temporary build location. And do you really need libA and libB installed? May be you

Re: [CMake] External_Project and WIndows

2011-08-07 Thread Yuri Timenkov
For non-CMake project (especially VS native ones) you could use ${CMAKE_CFG_INT_DIR} variable instead ( http://www.cmake.org/cmake/help/cmake-2-8-docs.html#variable:CMAKE_CFG_INTDIR ) It will be evaluated into current solution's configuration. However please note that in this case configurations

Re: [CMake] cmake support D programming?

2011-08-07 Thread jonathan MERCIER
Le samedi 06 août 2011 à 20:00 -0700, Alan W. Irwin a écrit : Hi Jonathan: I certainly agree with your implicit assumption that D language support is important for CMake. On 2011-08-07 03:00+0200 jonathan MERCIER wrote: Since Fedora 16 will add a D2 compiler (ldc), i would like to know

Re: [CMake] cmake support D programming?

2011-08-07 Thread Jens Mueller
jonathan MERCIER wrote: Dear, Since Fedora 16 will add a D2 compiler (ldc), i would like to know if cmake support yet this language? You can try out http://code.google.com/p/cmaked2/. http://code.google.com/p/cmaked2/wiki/GettingStarted should get you started. If I find some time I will add

Re: [CMake] cmake support D programming?

2011-08-07 Thread jonathan MERCIER
Le dimanche 07 août 2011 à 10:27 +0200, Jens Mueller a écrit : jonathan MERCIER wrote: Dear, Since Fedora 16 will add a D2 compiler (ldc), i would like to know if cmake support yet this language? You can try out http://code.google.com/p/cmaked2/.

Re: [CMake] Assembly language support using gcc or gas

2011-08-07 Thread Glenn Coombs
Hi Alex, I've tested your zip file example and it works as expected: the -I options are present but not the -D options. After some more testing of what is different in my setup I think I have isolated the cause. If I change this one line in your example from this: add_definitions(-DFOO)

Re: [CMake] cmake support D programming?

2011-08-07 Thread Alan W. Irwin
On 2011-08-07 09:21+0200 jonathan MERCIER wrote: Le samedi 06 août 2011 à 20:00 -0700, Alan W. Irwin a écrit : Thanks for your answer, i have read this file:

[CMake] Checking for compatible compiler flags

2011-08-07 Thread Hans Johnson
Hello, I'm trying to use the cmake feature for testing if compiler flags are valid, but I am running into trouble with these two complier flags. I can not figure out how to proper escape the + or the % that I believe are causing the failures. cat CMakeLists.txt

Re: [CMake] Checking for compatible compiler flags

2011-08-07 Thread Michael Hertling
On 08/07/2011 09:33 PM, Hans Johnson wrote: Hello, I'm trying to use the cmake feature for testing if compiler flags are valid, but I am running into trouble with these two complier flags. I can not figure out how to proper escape the + or the % that I believe are causing the failures.