Re: [CMake] CMake 2.8.7-rc2 ready for testing!

2011-12-30 Thread Eric Noulard
2011/12/27 Alan W. Irwin ir...@beluga.phys.uvic.ca: Hi Alan, The issue is that if I set CMAKE_LIBRARY_PATH to find a special version of lapack/blas, only the lapack part of that is honored.  For example, if I set export CMAKE_LIBRARY_PATH=/home/software/lapack/install_double/lib Did you

Re: [CMake] CMake 2.8.7-rc2 ready for testing!

2011-12-30 Thread Eric Noulard
2011/12/30 David Cole david.c...@kitware.com: There is no conservative course here. There is a choice of whether to make CMake 2.8.7 behave the same as 2.8.6 or the same as 2.8.5. For this to be a showstopper it would have had to be reported before we tagged 2.8.6 -- since it is now already

Re: [CMake] on find_package and building dependencies

2011-12-30 Thread Eric Noulard
2011/12/30 Ryan Lewis m...@ryanlewis.net: Hi, yes, this is all that I can't figure out if I type the define without a type, it fails, but I can't figure out this variables type. I tried STRING and FILEPATH and even BOOL. This is a PATH, so; cmake

Re: [CMake] How to install then test?

2011-12-30 Thread Nicolas Desprès
On Thu, Dec 29, 2011 at 8:01 PM, Denis Scherbakov denis_scherba...@yahoo.com wrote: Dear All! Maybe someone can help me: I have a project, we compile binaries and then using various INSTALL directives finish the job by copying files where they belong: to bin, man, libexec, etc. The point is,

Re: [CMake] FTP client in CMake?

2011-12-30 Thread Robert Dailey
Thanks David. Apparently I was looking in the wrong place, I assumed it would be a cmake option :) Happy New Year!! - Robert Dailey On Thu, Dec 29, 2011 at 5:11 PM, David Cole david.c...@kitware.com wrote: file(DOWNLOAD ...) works with ftp: urls. For example, the following script

[CMake] Interrupt problems in cmake-gui

2011-12-30 Thread Robert Dailey
I have a foreach/while loop that checks if files exist. The files it is checking are on a Windows network share. So, each check takes a while. Sometimes after I click Configure in cmake-gui.exe, I want to click Stop during this check. However, the stop does not seem to interrupt the loop. I know

Re: [CMake] Interrupt problems in cmake-gui

2011-12-30 Thread Robert Dailey
I found the problem in code and currently have a fix. However, the code change requires some thread synchronization. Does anyone know if there is a reader/writer lock object in the CMake source code? - Robert Dailey On Fri, Dec 30, 2011 at 9:58 AM, Robert Dailey rcdai...@gmail.com

Re: [CMake] CMake 2.8.7-rc2 ready for testing!

2011-12-30 Thread Alan W. Irwin
On 2011-12-30 11:22+0100 Eric Noulard wrote: 2011/12/30 David Cole david.c...@kitware.com: There is no conservative course here. There is a choice of whether to make CMake 2.8.7 behave the same as 2.8.6 or the same as 2.8.5. For this to be a showstopper it would have had to be reported

Re: [CMake] Interrupt problems in cmake-gui

2011-12-30 Thread clin...@elemtech.com
There isn't a lock. Synchronization is done by threads having event loops and calling Qt slots in a queued fashion (like posting messages to the other event queue). I imagine you just need to add another place where the interrupt is checked and gracefully return (which should take you back to

Re: [CMake] CMake 2.8.7-rc2 ready for testing!

2011-12-30 Thread Alan W. Irwin
On 2011-12-30 11:06+0100 Eric Noulard wrote: 2011/12/27 Alan W. Irwin ir...@beluga.phys.uvic.ca: Hi Alan, The issue is that if I set CMAKE_LIBRARY_PATH to find a special version of lapack/blas, only the lapack part of that is honored.  For example, if I set export

Re: [CMake] CMake 2.8.7-rc2 ready for testing!

2011-12-30 Thread Alan W. Irwin
I have investigated further, and I now think Dave is right with his desire to go ahead with the release of the rc2 versions of the lapack/blas find modules. (Sorry, Dave, for this flip-flop at the last minute, but such deeper investigations take time.) What appears to be going on is that in

Re: [CMake] CMake 2.8.7-rc2 ready for testing!

2011-12-30 Thread David Cole
On Fri, Dec 30, 2011 at 3:25 PM, Alan W. Irwin ir...@beluga.phys.uvic.cawrote: I have investigated further, and I now think Dave is right with his desire to go ahead with the release of the rc2 versions of the lapack/blas find modules. (Sorry, Dave, for this flip-flop at the last minute, but

[CMake] CMake 2.8.7 available for download

2011-12-30 Thread David Cole
On behalf of myself, Ken, Bill, Brad, Alex, Zach, Ben and the rest of the CMake team from all around the world, we are pleased to announce that CMake 2.8.7 is now available for download at:   http://www.cmake.org/files/v2.8/?C=M;O=D It is also available from the usual download links found on the

Re: [CMake] Upcoming What's New in CMake 2.8.7 webinar

2011-12-30 Thread David Cole
On Wed, Dec 21, 2011 at 4:04 PM, Marcus D. Hanwell marcus.hanw...@kitware.com wrote: On Wed, Dec 21, 2011 at 3:50 PM, Alexander Neundorf a.neundorf-w...@gmx.net wrote: On Wednesday 21 December 2011, David Cole wrote: The CMake team is hard at work on the 2.8.7 release - we

Re: [CMake] Interrupt problems in cmake-gui

2011-12-30 Thread Robert Dailey
I don't know much about Qt, but what I do know is the fix involves using a direct connection. In CMakeSetupDialog::doInterrupt(), I changed the invokeMethod() command to use Qt::DirectConnection. However, this solution is not thread safe, hence why I asked about synchronization. I could implement

Re: [CMake] [EXTERNAL] Re: execute_process appending redirected output

2011-12-30 Thread Michael Hertling
On 12/28/2011 05:39 PM, Belcourt, K. Noel wrote: Hi Aaron, On Dec 27, 2011, at 11:04 PM, Aaron Ten Clay wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/27/11 16:16, Belcourt, Kenneth wrote: I'm trying to get CMake to execute this command INSTALL(CODE EXECUTE_PROCESS

Re: [CMake] Interrupt problems in cmake-gui

2011-12-30 Thread Bill Hoffman
On 12/30/2011 8:10 PM, Robert Dailey wrote: I'd like to introduce boost into CMake for this. No way... :) -Bill -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ

Re: [CMake] Interrupt problems in cmake-gui

2011-12-30 Thread Clinton Stimpson
Yeah it does look like synchronization is needed to fix this. The current interrupt functionality depends on message output or progress reporting to actually process the interrupt on the worker thread, which isn't good enough. I'm not sure if you've considered this, but it seems simpler to

Re: [CMake] [EXTERNAL] Re: execute_process appending redirected output

2011-12-30 Thread Belcourt, K. Noel
On Dec 30, 2011, at 8:05 PM, Michael Hertling wrote: On 12/28/2011 05:39 PM, Belcourt, K. Noel wrote: Hi Aaron, On Dec 27, 2011, at 11:04 PM, Aaron Ten Clay wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/27/11 16:16, Belcourt, Kenneth wrote: I'm trying to get CMake to execute

[Cmake-commits] CMake branch, master, updated. v2.8.6-451-gb1d9295

2011-12-30 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, master has been updated via b1d92955af1dbb566137baf0ed883f9aa054faf8 (commit) via

[Cmake-commits] CMake branch, next, updated. v2.8.6-2332-g2ccd809

2011-12-30 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 2ccd80971863f5c2acc9be6f21f3f60ce1b299ef (commit) via

[Cmake-commits] CMake branch, master, updated. v2.8.6-452-g3a29d37

2011-12-30 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 3a29d37b164d3567b26cbc22763692ae692c16b4 (commit) from