Re: [CMake] Qt version of Cmake

2007-10-26 Thread Alexander Neundorf
On Friday 26 October 2007, Manuel Klimek wrote: > Hi, > > I'm planning to do a test-driven implementation of qcmake (see > http://sourceforge.net/projects/qcmake), which is intended as a > replacement for the CMakeSetup (mostly because VC Express > doesn't support MFC, and to learn TDDing GUI apps)

[CMake] Re: [Swig-devel] Ruby test-suite

2007-10-26 Thread Gonzalo Garramuño
William S Fulton wrote: Gonzalo, I've readying the release and have fixed a number of issues in the Ruby test-suite for Windows. There is a problem with std::set on Linux at the moment, I don't think I introduced it, but can't be sure as it is now late and I'm off to bed. I don't recall if Ruby

[CMake] Switching off dependencies at compile time (with Makefiles)?

2007-10-26 Thread Josef Karthauser
I want to run nmake/make on a cmake generated build tree, but in such a way that only the targets in the current directory get built. That is I want to assume that any libraries that a given project depends on (which have separate CMakeLists.txt files) are already built, and want to suppress nmake

Re: [CMake] Ctest timeout problem

2007-10-26 Thread Baptiste Derongs
Actually the answer is : Remove any DartTestFile.txt from the source folder. Only set CTEST_TEST_TIMEOUT in the script. Do not set anything in CMakeLists.txt and do not touch to DART_TESTING_TIMEOUT. So now it works, but that behaviour is strange, all values in CMakeCache.txt and DartConfiguratio

RE: [CMake] Switching off dependencies at compile time (with Makefiles)?

2007-10-26 Thread Josef Karthauser
> -Original Message- > From: David Cole [mailto:[EMAIL PROTECTED] > Sent: 26 October 2007 15:04 > To: Josef Karthauser > Cc: cmake@cmake.org > Subject: Re: [CMake] Switching off dependencies at compile time (with > Makefiles)? > > - do a "make help" to get the list of available make target

Re: [CMake] Qt version of Cmake

2007-10-26 Thread Bill Hoffman
Manuel Klimek wrote: Hi, I'm planning to do a test-driven implementation of qcmake (see http://sourceforge.net/projects/qcmake), which is intended as a replacement for the CMakeSetup (mostly because VC Express doesn't support MFC, and to learn TDDing GUI apps). If you could choose, what would y

Re: [CMake] Ctest timeout problem

2007-10-26 Thread Bill Hoffman
Baptiste Derongs wrote: Actually the answer is : Remove any DartTestFile.txt from the source folder. Only set CTEST_TEST_TIMEOUT in the script. Do not set anything in CMakeLists.txt and do not touch to DART_TESTING_TIMEOUT. So now it works, but that behaviour is strange, all values in CMakeCach

Re: [CMake] Re: [Swig-devel] Ruby test-suite

2007-10-26 Thread Gonzalo Garramuño
apologize for the mail -- wrong mailing list. -- Gonzalo Garramuño [EMAIL PROTECTED] AMD4400 - ASUS48N-E GeForce7300GT Kubuntu Edgy ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] Qt version of Cmake

2007-10-26 Thread Alexander Neundorf
Hi, On Friday 26 October 2007, Brandon Van Every wrote: > On 10/26/07, Alexander Neundorf <[EMAIL PROTECTED]> wrote: ... > > -have a tree view of all used cmake files, which can make it possible > > later on to open them in some editor/edit widget > > I think it wastes a volunteer open source impl

Re: [CMake] Switching off dependencies at compile time (with Makefiles)?

2007-10-26 Thread David Cole
- do a "make help" to get the list of available make targets - use "make targetname" to build a target and everything it depends on - use "make targetname/fast" to build just that target make targetname/fast is the friend of the developer who knows what he is doing... :-) David On 10/26/07, Jose

Re: [CMake] Qt version of Cmake

2007-10-26 Thread Brandon Van Every
On 10/26/07, Alexander Neundorf <[EMAIL PROTECTED]> wrote: > > -have a log window where the output is captured Yeah I've failed to see some messages go by. > -have a tree view of all used cmake files, which can make it possible later on > to open them in some editor/edit widget I think it wastes

[CMake] wxCmakeSetup

2007-10-26 Thread Mike Jackson
what are the dependencies for building the wxCmakeGUI? I tried on OS X and I get a lot of errors. This was with CMake 2.4.7 release. Do I need a later version of wxWidgets? -- Mike Jackson imikejackson & gmail * com ___ CMake mailing list CMake@c

Re: [CMake] Qt version of Cmake

2007-10-26 Thread Alexander Neundorf
On Friday 26 October 2007, Aleix wrote: > Indeed, I wrote this thing for the GSoC > > Project state: > - Currently supported: project parse, project edition, cmakecache.txt > editor and builddir creation and management (switch to the current one > basically). > - Planned: cmake language support for

Re: [CMake] wxCmakeSetup

2007-10-26 Thread Bill Hoffman
Mike Jackson wrote: what are the dependencies for building the wxCmakeGUI? I tried on OS X and I get a lot of errors. This was with CMake 2.4.7 release. Do I need a later version of wxWidgets? Sadly, I have no idea which is one of the reasons it never really was adopted... -Bill _

Re: [CMake] wxCmakeSetup

2007-10-26 Thread Miguel A. Figueroa-Villanueva
If someone managed to compile it, would it be of interest in general? Or is there more interest in things like a qmake or fltk cmake gui? --Miguel On 10/26/07, Bill Hoffman <[EMAIL PROTECTED]> wrote: > Mike Jackson wrote: > > what are the dependencies for building the wxCmakeGUI? I tried on OS X

Re: [CMake] wxCmakeSetup

2007-10-26 Thread Mike Jackson
I am more intersted in a nice Qt CMakeSetup but with some more added features. wxWidgets and Fltk just do not look that good under OS X. I am also hoping that if a nice Qt GUI were made Kitware might include it since ParaView uses Qt. It would make a nice standardization on Qt, which is a n

Re: [CMake] wxCmakeSetup

2007-10-26 Thread Juan Sanchez
Where is the source for wxCMakeSetup? What platforms do you need it to compile for? I could do linux and maybe cygwin. Juan Mike Jackson wrote: > I am more intersted in a nice Qt CMakeSetup but with some more added > features. wxWidgets and Fltk just do not look that good under OS X. I > am

Re: [CMake] wxCmakeSetup

2007-10-26 Thread Brandon Van Every
On 10/26/07, Juan Sanchez <[EMAIL PROTECTED]> wrote: > Where is the source for wxCMakeSetup? In a CMake source tree, I'm gonna guess it's in CMake/Source/WXDialog. Cheers, Brandon Van Every ___ CMake mailing list CMake@cmake.org http://www.cmake.org/ma

re: [CMake] Qt version of Cmake

2007-10-26 Thread Brandon Van Every
On 10/26/07, Alexander Neundorf <[EMAIL PROTECTED]> wrote: > > I'm sure the volunteer will decide what he does and what he doesn't do. Hope he decides well. Open Source benefits from completed work. > > > -it would be cool if it would be a widget in a library or plugin so that > > > other progra

Re: [CMake] wxCmakeSetup

2007-10-26 Thread Juan Sanchez
Hi, A 32 bit linux build against wxwidgets-2.6.2 builds fine. A 64 bit linux build does not seem to build because of an ambiguous selection between overloaded functions: This seems to be a 64 bit portability issue with wxwidgets 2.6.2 for GTK. Perhaps this is fixed in wxwidgets 2.8.6? /tool/.p

Re: [CMake] wxCmakeSetup

2007-10-26 Thread Bill Hoffman
Mike Jackson wrote: I am more intersted in a nice Qt CMakeSetup but with some more added features. wxWidgets and Fltk just do not look that good under OS X. I am also hoping that if a nice Qt GUI were made Kitware might include it since ParaView uses Qt. It would make a nice standardization on

Re: [CMake] target path, or post build event?

2007-10-26 Thread Mark Wyszomierski
Ok this is what I ended up doing and it seems to work well: SET(CMAKE_INSTALL_PREFIX "" CACHE STRING "Install Prefix" FORCE) IF (WIN32) INSTALL(FILES your_project/debug/something.exe DESTINATION ${YOUR_PROJECT_SOURCE_DIR}/debug/) ENDIF (WIN32) I have all the built exes etc moved into one fol

Re: [CMake] wxCmakeSetup

2007-10-26 Thread Juan Sanchez
With wxWidgets 2.6.8, the 64 bit issues appear to be solved. Unfortunately, it no longer likes receiving (const char *)'s without converting them using some special functions. It would take a while to change the code according to the instructions in: http://www.wxwidgets.org/wiki/index.php/WxStrin