RE: [CMake] return and break commands

2008-01-25 Thread Josef Karthauser
How easy would it be to port this functionality to 2.4.x? Joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ken Martin Sent: 23 January 2008 15:56 To: cmake@cmake.org Subject: [CMake] return and break commands I just checked into CVS return

RE: [CMake] return and break commands

2008-01-25 Thread Josef Karthauser
What would be useful, would be to be able to interrupt the current CMakeLists file, from within a macro. The usage case would be: CMakeLists.txt (from a subdirectory): INCLUDE(my_macros) MY_CONFIG_MACRO() # normal stuff follows The

RE: [CMake] return and break commands

2008-01-25 Thread Josef Karthauser
I don't mind porting the bits myself, but as it's cvs it's a bit hard to determine what changes are required :). (No atomic commit numbers!) I don't suppose you have a commit email or log somewhere which would tell me all the version numbers of that change do you? Joe -Original

RE: [CMake] return and break commands

2008-01-25 Thread Josef Karthauser
-Original Message- From: Ken Martin [mailto:[EMAIL PROTECTED] Sent: 25 January 2008 15:04 To: Josef Karthauser; cmake@cmake.org Subject: RE: [CMake] return and break commands What would be useful, would be to be able to interrupt the current CMakeLists file, from within a macro.

Re: [CMake] Support for vcbuild in cmake

2008-01-25 Thread Bill Hoffman
Reggie Burnett wrote: Bill, not sure I understand. You are giving path names to visual studio but if you are using vcbuild then you don't have vstudio on the box. From my understanding, you can install the windows sdk, take a visual studio 2005 solution and feed it to vcbuild and it will read

Re: [CMake] gfortran

2008-01-25 Thread Alberto Luaces
El Thursday 24 January 2008 10:16:24 Javier Gonzalez escribió: Now, I don't compile any fortran code as part of my project but link to a library that was compiled using gfortran. Apparently, to link I then need to add the gfortran library which is the one I'm having trouble with. On a side

RE: [CMake] return and break commands

2008-01-25 Thread Ken Martin
This is the commit that has the changes in it. Lots of little changes mainly. http://www.cmake.org/Testing/Sites/DASH2.kitware/Win32-vs70/20080123-1550-Co ntinuous/Update.html Ken Ken Martin PhD Kitware Inc. 28 Corporate Drive Clifton Park NY 12065 518 371 3971 I don't mind porting the

[CMake] Problem with dependencies with mingw32-make

2008-01-25 Thread Philipp Jocham
Hello, I try to build a 32bit application on windows xp 64 with mingw and I have a problem with the generated dependencies file depend.make. Specifically this file contains lines like: CMakeFiles/HSAImage.dir/image/Channel.obj: C:/Program\ Files\ \(x86\)/Intel/IPP/5.2/ia32/include/ipp.h The

[CMake] problems finding FLAC

2008-01-25 Thread
Im building kdemultimedia4 and i have all flac files isntalled, however cmake isnt able to find the FLAC files, and outputs this: - -- The following external packages were located on your system. -- This installation

Re: [CMake] FindBoost.cmake: please test

2008-01-25 Thread Andreas Pakulat
On 20.01.08 00:09:40, Andreas Pakulat wrote: Hi, apparently the FindBoost.cmake I attached to http://www.cmake.org/Bug/view.php?id=6257 isn't quite perfect - actually not even close. The last few days I've worked with Andreas Schneider to make it work on his and my own system. Here's a

[CMake] Re: Generation of assembly output

2008-01-25 Thread Rodolfo Schulz de Lima
Alexander Neundorf wrote: But I also had the same idea already several times. Can you add a feature request in teh bug tracker ? It's done, issue #6274 Regards, rod ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

[CMake] FindQt4 in 2.4.8 bug

2008-01-25 Thread Fernando Cacciola
Hi, I've been using 2.4.7 until this morning when I saw the 2.4.8 announcement and jumped right away to install it (silly me). I have some script that finds Qt4 but stopped working on 2.4.8. Tracing the problem in FindQt4.cmake I found this... There is one (at least one) SET command like

RE: [CMake] return and break commands

2008-01-25 Thread Ken Martin
What would be useful, would be to be able to interrupt the current CMakeLists file, from within a macro. We initially implemented it that way but due to some obscure parts of the US export control laws we realized we would never be able to distribute it. OK, I just made that up, but I'm sure

RE: [CMake] return and break commands

2008-01-25 Thread Ken Martin
It would not be that hard to port it, but...I'm pretty sure we are done with the 2.4 branch. 2.4.8 is probably the last of the 2.4 releases. We are (and have been) gearing up for the 2.6 release which I hope we will get into beta in a few weeks. - Ken Ken Martin PhD Kitware Inc. 28 Corporate

Re: [CMake] return and break commands

2008-01-25 Thread Bill Hoffman
Josef Karthauser wrote: Ah ok. I'm still using 2.4.7. Are functions a new unreleased thing? So from what you've just said I expect that RETURN in a macro in 2.4.7 will cause the current CMakeLists.txt file to end processing. Is that correct? So, the next question, is how easy is to back

Re: [CMake] How does VTK_USE_FILE get set? - .. handling bug

2008-01-25 Thread Orion Poplawski
Orion Poplawski wrote: Can someone explain how FindVTK.cmake sets VTK_USE_FILE? I don't see anywhere in there where it is set. Must be a side effect of some other command? On my system, VTK_USE_FILE is getting set to /usr/bin/usr/lib/vtk-5.0/UseVTK.cmake instead of

[CMake] Re: FindQt4 in 2.4.8 bug

2008-01-25 Thread Fernando Cacciola
[EMAIL PROTECTED] wrote: On Friday 25 January 2008 10:58:19 am Fernando Cacciola wrote: Hi, I've been using 2.4.7 until this morning when I saw the 2.4.8 announcement and jumped right away to install it (silly me). I have some script that finds Qt4 but stopped working on 2.4.8. Tracing the

Re: [CMake] FindQt4 in 2.4.8 bug

2008-01-25 Thread clinton
On Friday 25 January 2008 10:58:19 am Fernando Cacciola wrote: Hi, I've been using 2.4.7 until this morning when I saw the 2.4.8 announcement and jumped right away to install it (silly me). I have some script that finds Qt4 but stopped working on 2.4.8. Tracing the problem in FindQt4.cmake I

[CMake] Re: FindQt4 in 2.4.8 bug

2008-01-25 Thread Fernando Cacciola
Fernando Cacciola wrote: Hi, I've been using 2.4.7 until this morning when I saw the 2.4.8 announcement and jumped right away to install it (silly me). I have some script that finds Qt4 but stopped working on 2.4.8. Tracing the problem in FindQt4.cmake I found this... There is one (at least

[CMake] Problem with find_path

2008-01-25 Thread Fernando Cacciola
Here is a extract of FindQt4 from 2.4.7 (NOT 2.4.8, which is different somewhat) message( STATUS QT_INCLUDE_DIR=${QT_INCLUDE_DIR} ) message( STATUS QT_LIBRARY_DIR=${QT_LIBRARY_DIR} ) FIND_PATH(QT_QTOPENGL_INCLUDE_DIR QtOpenGL PATHS ${QT_INCLUDE_DIR}/QtOpenGL