Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-29 Thread Alexander Neundorf
On Tuesday 28 September 2010, Brad King wrote: On 09/28/2010 05:20 PM, Alexander Neundorf wrote: On Tuesday 28 September 2010, Alexander Neundorf wrote: Is this intended this way ? The attached tiny patch seems to make CMAKE_PARENT_LIST_FILE work more like I expected. Yes, but who

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-28 Thread Brad King
On 09/28/2010 02:38 PM, Alexander Neundorf wrote: But it will always fail when a new version of cmake comes with a new version of Foo.cmake which it uses itself, and relies on the new features. If cmake then gets the older tweaked version from the project we have the problem. Okay, so

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-28 Thread Alexander Neundorf
On Tuesday 28 September 2010, Brad King wrote: On 09/28/2010 03:24 PM, Alexander Neundorf wrote: Currently there are CMAKE_CURRENT_LIST_FILE and CMAKE_CURRENT_LIST_LINE. Should it be CMAKE_CURRENT_LIST_FILE_DIR or CMAKE_CURRENT_LIST_DIR ? Let's use the latter, CMAKE_CURRENT_LIST_DIR.

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-28 Thread Alexander Neundorf
On Tuesday 28 September 2010, Alexander Neundorf wrote: ... Another option would be that I check in KDE/FPHSA.cmake CMAKE_PARENT_LIST_FILE to see whether KDE/FPHSA.cmake is included from a module in cmake or in KDE, and if it's in CMake, forward that explicitely to CMake/FPHSA.cmake.

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-28 Thread Brad King
On 09/28/2010 05:03 PM, Alexander Neundorf wrote: Works, but still it doesn't feel good. This means that whenever doing a include(FPHSA) in one of cmakes find-modules it must actually be a include(${CMAKE_CURRENT_LIST_DIR}/FPHSA.cmake) Similar issues can come up with other files and in

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-28 Thread Brad King
On 09/28/2010 05:20 PM, Alexander Neundorf wrote: On Tuesday 28 September 2010, Alexander Neundorf wrote: Is this intended this way ? The attached tiny patch seems to make CMAKE_PARENT_LIST_FILE work more like I expected. Yes, but who knows what it will break. I'm not prepared to do this

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-26 Thread Alexander Neundorf
On Saturday 25 September 2010, Eric Noulard wrote: 2010/9/25 Alexander Neundorf neund...@kde.org: [..] The other option would be to make sure that INCLUDE(FindPackageHandleStandardArgs) when used in cmake's own module would always load FindPackageHandleStandardArgs.cmake from cmake,

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-26 Thread Alexander Neundorf
On Sunday 26 September 2010, Alexander Neundorf wrote: On Saturday 25 September 2010, Eric Noulard wrote: 2010/9/25 Alexander Neundorf neund...@kde.org: [..] The other option would be to make sure that INCLUDE(FindPackageHandleStandardArgs) when used in cmake's own module would

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-23 Thread David Cole
I think this has to be fixed before we make 2.8.3 final. The existing (2.8.2 and earlier) behavior here is crucial for anybody who has multiple Qt versions installed or available... Clinton, do you have time to take a look at this in the next couple of days? Thanks, David Cole On Thu, Sep 23,

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-23 Thread Alexander Neundorf
On Thursday 23 September 2010, Alexander Neundorf wrote: On Wednesday 15 September 2010, David Cole wrote: I am happy to announce that CMake 2.8.3 has entered the release candidate stage! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Following is

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-23 Thread Alexander Neundorf
On Thursday 23 September 2010, Clinton Stimpson wrote: On Thursday, September 23, 2010 01:40:02 pm Alexander Neundorf wrote: ... This was committed here: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b55da4c688bbf55b442908 46 4e0f7e2e41c937a3 which has as commit message Add

Re: [cmake-developers] [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-23 Thread Clinton Stimpson
On Thursday, September 23, 2010 03:09:57 pm Clinton Stimpson wrote: On Thursday, September 23, 2010 02:42:52 pm Alexander Neundorf wrote: On Thursday 23 September 2010, Clinton Stimpson wrote: On Thursday, September 23, 2010 02:01:40 pm Alexander Neundorf wrote: On Thursday 23 September

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-23 Thread Michael Wittman
There appears to be a bug in the new solution folders support with VS 2008: if a folder has the same name as a target, the folder appears empty in the solution, and the targets that were assigned to the folder appear at the top-level of the solution tree. In the solution file, it looks like

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-23 Thread David Cole
Don't do that. :-) Seriously. But perhaps there should be a name-collision detection since these folders have to live in the same namespace as CMake targets. And what shall we do in the event of a name-collision... error? Automatic rename of the folder (perhaps append folder)? Or maybe we

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-21 Thread Emmanuel Christophe
Hi, It would be great if the regression introduced in cmake 2.8.1 for the parallel build could be fixed in 2.8.3 http://public.kitware.com/Bug/view.php?id=11026 The proposed patch looks good. Emmanuel On Thu, Sep 16, 2010 at 00:21, David Cole david.c...@kitware.com wrote: I am happy to

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-20 Thread Bill Hoffman
On 9/20/2010 12:59 AM, Micha Renner wrote: Here is a small one. INSTALL(FILES ${CMAKE_BINARY_DIR}/CTest.conf DESTINATION /usr/local) always results in this warning: 1 -- Install configuration: Debug 1 CMake Warning (dev) at cmake_install.cmake:31 (list): 1 Syntax error in cmake code

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-20 Thread Bill Hoffman
On 9/20/2010 10:58 AM, Micha Renner wrote: ...and make sure this is a regression. ??? Make sure it is a new bug, that used to work in the past. Please notice: I'm using the VS2010 Express Version. Sometimes things are here different. I downloaded cmake-2.8.3-rc1-win32-x86.exe from this

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-19 Thread Micha Renner
Here is a small one. INSTALL(FILES ${CMAKE_BINARY_DIR}/CTest.conf DESTINATION /usr/local) always results in this warning: 1 -- Install configuration: Debug 1 CMake Warning (dev) at cmake_install.cmake:31 (list): 1Syntax error in cmake code at 1 1

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-17 Thread David Cole
On Fri, Sep 17, 2010 at 1:01 AM, Micha Renner micha.ren...@t-online.dewrote: I get the message CMakePredefinedTarget not available and then VS message: Cannot load CMakePredefinedTarget project. What does this mean for the work with CMake and VS2010 Express? That means that I made a mistake

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-17 Thread David Cole
On Fri, Sep 17, 2010 at 6:51 AM, David Cole david.c...@kitware.com wrote: On Fri, Sep 17, 2010 at 1:01 AM, Micha Renner micha.ren...@t-online.dewrote: I get the message CMakePredefinedTarget not available and then VS message: Cannot load CMakePredefinedTarget project. What does this mean

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-17 Thread Micha Renner
http://public.kitware.com/Bug/view.php?id=3796 ) Oh thank you, that should be the next topic (long awaited) what I wanted to test. Now it has to wait. I didn't realize this correlation. In the meantime, to get rid of the problem for now, turn the new feature off. In the top level

Re: [CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-16 Thread Micha Renner
I get the message CMakePredefinedTarget not available and then VS message: Cannot load CMakePredefinedTarget project. What does this mean for the work with CMake and VS2010 Express? Greetings Micha ___ Powered by www.kitware.com Visit other

[CMake] CMake 2.8.3-rc1 ready for testing!

2010-09-15 Thread David Cole
I am happy to announce that CMake 2.8.3 has entered the release candidate stage! You can find the source and binaries here: http://www.cmake.org/files/v2.8/?C=M;O=D Following is the list of changes in this release. (If you notice something missing please let me know and I will add it to the