Re: [CMake] Interrupt problems in cmake-gui

2012-01-06 Thread Michael Jackson
In addition the issue is with the Qt base GUI and Qt has all the APIs necessary to accomplish what you need. There is no need for boost to fix the problem. - Mike Jackson www.bluequartz.net Principal Software Engineer mike.jack...@bluequartz.net BlueQuartz Software

Re: [CMake] Interrupt problems in cmake-gui

2012-01-05 Thread Michael Hertling
On 12/31/2011 02:10 AM, Robert Dailey wrote: I'd like to introduce boost into CMake for this. Whenever I've advocated CMake as build system, one of the strongest selling points has been its self-sufficiency, i.e. the fact that it does not have any external dependencies except for a C++

[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] Interrupt problems in cmake-gui

2011-12-30 Thread clin...@elemtech.com
to the event loop). Clint - Reply message - From: Robert Dailey rcdai...@gmail.com Date: Fri, Dec 30, 2011 10:07 am Subject: [CMake] Interrupt problems in cmake-gui To: CMake ML cmake@cmake.org -- Powered by www.kitware.com Visit other Kitware open-source projects at http

Re: [CMake] Interrupt problems in cmake-gui

2011-12-30 Thread Robert Dailey
to add another place where the interrupt is checked and gracefully return (which should take you back to the event loop). Clint - Reply message - From: Robert Dailey rcdai...@gmail.com Date: Fri, Dec 30, 2011 10:07 am Subject: [CMake] Interrupt problems in cmake-gui To: CMake ML cmake

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
...@gmail.com Date: Fri, Dec 30, 2011 10:07 am Subject: [CMake] Interrupt problems in cmake-gui To: CMake ML cmake@cmake.org 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