[cmake-developers] [CMake 0011693]: On Mac OS X, the CMake .app filename should not contain the version number

2011-01-13 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=11693 == Reported By:Sean McBride Assigned To:

Re: [cmake-developers] Generating information for C++ tools in cmake (patch)

2011-01-13 Thread Brad King
On 01/12/2011 11:47 PM, Manuel Klimek wrote: Split up the patch - apparently I need ssh access to push the topic stuff, so I'm just attaching the patches. Thanks. That's pretty clean. In the final version of this topic please add one more intermediate commit that optimizes GetFlags and

Re: [cmake-developers] Generating information for C++ tools in cmake (patch)

2011-01-13 Thread Manuel Klimek
On Thu, Jan 13, 2011 at 1:30 PM, Brad King brad.k...@www.kitware.com wrote: On 01/12/2011 11:47 PM, Manuel Klimek wrote: Split up the patch - apparently I need ssh access to push the topic stuff, so I'm just attaching the patches. Thanks.  That's pretty clean.  In the final version of this

[CMake] CDash submissions show up as two entries, one row for update, one for build/test etc

2011-01-13 Thread Johan Björk
Hi everyone, I'm having a strange problem with my CDash submissions, and I'm not sure what is going on. For every submission I do, I get two builds, one that only has a UPDATE stage, and one line that has the rest of the steps. The row with UPDATE has a higher buildID versus the row with

[CMake] Feature request: Compatibility with Visual Studio 2010 and Intel Fortran compiler 12 (composer).

2011-01-13 Thread Jaime Armendáriz Villalba
Dear all, I would like to ask about this feature, since cmake is not able to work with intel fortran 12. Is it planned to include it in the development roadmap? I have read about this here: http://www.cmake.org/pipermail/cmake/2010-December/041387.html There is also a bug filled here:

[CMake] Adding custom target to ALL_BUILD or Package

2011-01-13 Thread ariasgore
Hello, I have a doxygen custom target defined which works fine when executed manually in visual studio but since it is a custom command it is not added as dependency to ALL_BUILD and manually adding it as a dependency to PACKAGES fails. Is there a way to do that without the need of defining an

Re: [CMake] Adding custom target to ALL_BUILD or Package

2011-01-13 Thread Eric Noulard
2011/1/13 ariasg...@gmx.de: Hello, I have a doxygen custom target defined which works fine when executed manually in visual studio but since it is a custom command it is not added as dependency to ALL_BUILD you can add it to ALL if you specify ALL in add_custom_target:

Re: [CMake] List operations

2011-01-13 Thread Ryan Pavlik
And, just as a caution: Don't use file(GLOB to create a list of source files to compile. Search the wiki or the archives for info. Ryan On Wed, Jan 12, 2011 at 12:05 PM, Andreas Pakulat ap...@gmx.de wrote: On 12.01.11 11:56:53, kent williams wrote: I'm generating a list of files with

Re: [CMake] feature request for eclipse

2011-01-13 Thread Ryan Pavlik
I believe this works if you just make your binary directory at CMake time a sibling of your source directory. Ryan On Wed, Jan 12, 2011 at 11:19 AM, Andrea Galeazzi galea...@korg.it wrote: Suppose you have a project with a lot of sub-projects like: add_subdirectory(path1/lib1

Re: [CMake] Feature request: Compatibility with Visual Studio 2010 and Intel Fortran compiler 12 (composer).

2011-01-13 Thread Bill Hoffman
On 1/13/2011 4:42 AM, Jaime Armendáriz Villalba wrote: Dear all, I would like to ask about this feature, since cmake is not able to work with intel fortran 12. Is it planned to include it in the development roadmap? I have read about this here:

[CMake] CMake 2.8.4-rc1 ready for testing!

2011-01-13 Thread David Cole
I am happy to announce that CMake 2.8.4 has entered the release candidate stage! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Following is the list of changes in this release. Please try this version of CMake on your projects and report any issues to the

Re: [CMake] CDash submissions show up as two entries, one row for update, one for build/test etc

2011-01-13 Thread David Cole
Are subprojects involved? (i.e. -- do you use them and do you have them set up for this dashboard) What versions of CDash and CMake/CTest are you using? On Thu, Jan 13, 2011 at 4:07 AM, Johan Björk p...@spotify.com wrote: Hi everyone, I'm having a strange problem with my CDash submissions,

Re: [CMake] CDash submissions show up as two entries, one row for update, one for build/test etc

2011-01-13 Thread Johan Björk
Hi David, Not using subprojects. CMake/CTest version 2.8.3 and CDash 1.8.2 (upgraded from the previous release however) /Johan On Thu, Jan 13, 2011 at 3:27 PM, David Cole david.c...@kitware.com wrote: Are subprojects involved? (i.e. -- do you use them and do you have them set up for this

Re: [CMake] CDash submissions show up as two entries, one row for update, one for build/test etc

2011-01-13 Thread David Cole
Can you pass along your whole script, and describe how the looping works rather than just the snippet you sent...? (Or is that not possible for some reason?) We don't typically run more than one dashboard per script, so you may discovered a real problem with trying to run more than one dashboard

Re: [CMake] CDash submissions show up as two entries, one row for update, one for build/test etc

2011-01-13 Thread Johan Björk
Attached them with some modifications. I have one ctest_platform.cmake for each platform, that all include ctest_base.cmake that contains a macro that allow me to run all different configurations of my builds. While I have your attention, would it somehow be possible to re-use a single

Re: [CMake] List operations

2011-01-13 Thread Ryan Pavlik
Yep, that sounds fine - just wanted to put the warning out there since it's a common issue. Ryan On Thu, Jan 13, 2011 at 9:30 AM, kent williams nkwmailingli...@gmail.comwrote: The particular reason I use file(GLOB is that I want to find instances of, for example tclsh -- tclsh tclsh8.5,

Re: [CMake] InstallRequiredSystemLibraries.cmake

2011-01-13 Thread Michael Jackson
Along those same lines would it be possible to have separate variables for the Debug and Release runtime libraries? I _think_ I need this based on some previous conversations on this list. Comments welcome. -- Mike Jackson www.bluequartz.net On Jan 13, 2011, at 1:22 PM, David Cole wrote:

[CMake] gcov: handling same file name in different directories

2011-01-13 Thread Marco Craveiro
hello cmakers, i've been trying to use ctest's coverage support on a project that uses the same file name in different directories, e.g.: serialisation/some_class_name.hpp streaming/some_class_name.hpp ... due to the parameters passed in to gcov by ctest, this results in naming clashes when

[CMake] xcode project and static library dependencies

2011-01-13 Thread Nick Kledzik
I'm a long time Xcode user and recently used cmake to create an Xcode project for LLVM. I really like the idea the CMake can produce native projects for different platforms, but in my case, the resulting xcode project was very slow to use. To investigate, I created a small cmake example

Re: [CMake] xcode project and static library dependencies

2011-01-13 Thread Bill Hoffman
On 1/13/2011 3:16 PM, Nick Kledzik wrote: I'm a long time Xcode user and recently used cmake to create an Xcode project for LLVM. I really like the idea the CMake can produce native projects for different platforms, but in my case, the resulting xcode project was very slow to use. To

[CMake] C++ linkage, Fortran standard lib

2011-01-13 Thread Nico Schlömer
Hi, about half a year ago, there's been a discussion here about C++ linking with dependencies to libgfortran present which did not automatically get resolved. The issue evolved around the Trilinos toolkit. The situation was that first, the Trilinos libraries are build, supposed to be linked with

Re: [CMake] xcode project and static library dependencies

2011-01-13 Thread Bill Hoffman
On 1/13/2011 4:49 PM, Nick Kledzik wrote: On Jan 13, 2011, at 12:41 PM, Bill Hoffman wrote: This is because Xcode provides no way to order static libraries as far as I can tell, or to repeat them. Also, no way to depend on a static library or a file directly, forcing the makefile usage. This

Re: [CMake] CMake Java Support

2011-01-13 Thread luxInteg
On Tuesday 11 January 2011 11:38:09 Andreas Schneider wrote: Hello CMake, my name is Andreas Schneider and I'm working for Red Hat. At the end of last year I've worked on Dogtag PKI [1]. The Dogtag Certificate System [2] is an enterprise-class open source Certificate Authority. The

Re: [CMake] CMake 2.8.4-rc1 ready for testing!

2011-01-13 Thread David Cole
Small hiccup with the Win32 .exe installer: It suggests \CMake 2.8 as the default installation directory. Do not take its advice. That is a bad idea. :-) When I fixed http://public.kitware.com/Bug/view.php?id=9148 ... I forgot that adding CPack variables frequently requires CMake's own CPack

[Cmake-commits] CMake branch, next, updated. v2.8.3-1334-g667146e

2011-01-13 Thread Brad King
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, next has been updated via 667146e3a2e94b0d7af5802f3b2f007b632b0b2f (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.3-1338-gf07e4aa

2011-01-13 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, next has been updated via f07e4aa1b6d2786259b84ef1ce46c5ea66743897 (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.3-486-g3a7230a

2011-01-13 Thread KWSys Robot
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, master has been updated via 3a7230afe94ccec600100e2c7ea6106b4e078b08 (commit) from