Re: [CMake] Mac bundled application with multiple executables.

2014-02-09 Thread Andreas Pakulat
Hi Bill, On Sun, Feb 9, 2014 at 8:45 PM, Bill Somerville wrote: > Hi, > > noob here so firstly thanks for the great build tools! > > I'm struggling with shoehorning a Win32/Linux Qt GUI application into > CMake for those targets and for OS-X. > > At the moment the Mac build is manually transforme

Re: [CMake] include_directories(...) versus set_directory_properties(PROPERTIES INCLUDE_DIRECTORIES ...)

2014-02-09 Thread Marcel Loose
Hi all, Should I file this as a bug in the issue tracker then? Best regards, Marcel Loose. op 03-02-14 17:57, David Cole schreef: > I think it's mostly just a speed/space trade-off. If you don't want to > consume the RAM temporarily (and in this case, I think it's a given, > that we really don'

[CMake] Mac bundled application with multiple executables.

2014-02-09 Thread Bill Somerville
Hi, noob here so firstly thanks for the great build tools! I'm struggling with shoehorning a Win32/Linux Qt GUI application into CMake for those targets and for OS-X. At the moment the Mac build is manually transformed into an OS-X app bundle. I am making some progress getting it to install

Re: [CMake] Unnecessary rebuild of ExternalProject_Add target

2014-02-09 Thread Jack Smith
On Sun, Feb 9, 2014 at 4:10 PM, Jack Smith wrote: > > > ExternalProject_Add( >grub >GIT_REPOSITORY git://git.savannah.gnu.org/grub.git >GIT_TAG grub-2.02-beta2 >UPDATE_COMMAND "" >CONFIGURE_COMMAND ./autogen.sh && ./configure >BUILD_COMMAND make -j 2 >BUILD_IN_SOURCE

Re: [CMake] execute command during ctest timeout

2014-02-09 Thread Leif Walsh
When you file it please shoot me an email, I'd like to vote for this feature. Another idea if you are up to it is to add a watchdog to your own test, it's as simple as using alarm(3) and making a SIGALRM handler that invokes pstree and gdb however you like. You could make the timeout slightly sho

Re: [CMake] Unnecessary rebuild of ExternalProject_Add target

2014-02-09 Thread Jack Smith
On Sun, Feb 9, 2014 at 1:39 PM, David Cole wrote: > What does your call to ExternalProject_Add look like now? > > ExternalProject_Add( grub GIT_REPOSITORY git://git.savannah.gnu.org/grub.git GIT_TAG grub-2.02-beta2 UPDATE_COMMAND "" CONFIGURE_COMMAND ./autogen.sh && ./configure

Re: [CMake] Unnecessary rebuild of ExternalProject_Add target

2014-02-09 Thread David Cole
What does your call to ExternalProject_Add look like now? -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please

Re: [CMake] execute command during ctest timeout

2014-02-09 Thread Rolf Eike Beer
Am Sonntag, 9. Februar 2014, 16:22:54 schrieb Jayen Ashar: > When ctest times out a test, is it possible to tell it to execute a > command before killing the subprocess? I'd like to be able to use > pstree & gdb to determine where a nightly test is intermittently > getting stuck. No, there is not

Re: [CMake] Unnecessary rebuild of ExternalProject_Add target

2014-02-09 Thread Jack Smith
On Sat, Feb 8, 2014 at 2:55 PM, Stefan Eilemann wrote: > > On 8. Feb 2014, at 14:28, David Cole wrote: > > > When you give a git repo for ExternalProject, it will *always* execute > the UPDATE_COMMAND by default. And then, all the steps after update will > re-execute since update re-ran. > > We