Re: [cmake-developers] Adding Qt5 Support

2012-09-20 Thread Luis Kabongo
OK thanks Steve, the missing piece of information for me was the Known Issues. I understand this will be fixed at some point and that I don't need to invest more time on this then. Thanks! On 19 September 2012 23:18, Stephen Kelly wrote: > Bill Hoffman wrote: > > Here are some links: > > > > ht

Re: [cmake-developers] Adding Qt5 Support

2012-09-19 Thread Stephen Kelly
Bill Hoffman wrote: > Here are some links: > > http://www.kdab.com/using-cmake-with-qt-5/ > http://doc-snapshot.qt-project.org/5.0/cmake-manual.html Thanks for that. Those are the correct links. However, there is another one: http://qt-project.org/wiki/Qt500beta1KnownIssues The CMake files ar

Re: [cmake-developers] Adding Qt5 Support

2012-09-19 Thread Bill Hoffman
On 9/19/2012 4:11 PM, Luis Kabongo wrote: Qt5ConfigDependentSettings.cmake and Qt5Macros.cmake may need to be added also. You might be right, the thing is that I needed support for a non installed version compiled with specific options without crashing my other versions (you can imagine 64 bits,

Re: [cmake-developers] Adding Qt5 Support

2012-09-19 Thread Luis Kabongo
Qt5ConfigDependentSettings.cmake and Qt5Macros.cmake may need to be added also. You might be right, the thing is that I needed support for a non installed version compiled with specific options without crashing my other versions (you can imagine 64 bits, sql, etc), but in Qt5 beta version some file

Re: [cmake-developers] Adding Qt5 Support

2012-09-19 Thread David Cole
Those files shouldn't be necessary with Qt 5. Qt 5 itself installs a CMake project config file so that CMake's find_package can just find it without any Find module necessary. It is the IDEAL. WE LOVE not having a find module, but still being able to find_package!! :-) Cheers, David On Wed, S

Re: [cmake-developers] Adding Qt5 Support

2012-09-19 Thread Luis Kabongo
I changed FintQt.cmake and created the following: FindQt5.cmake UseQt5.cmake Regards. -- Luis Kabongo Vicomtech-IK4 On 19 September 2012 21:20, David Cole wrote: > What files did you have to change? > > The files needed to get projects to work with Qt 5 should all ship and be > built/installed

Re: [cmake-developers] Adding Qt5 Support

2012-09-19 Thread David Cole
What files did you have to change? The files needed to get projects to work with Qt 5 should all ship and be built/installed as part of Qt 5 now. Steve Kelly has been doing this work, and can chime in here to correct me if there's more to it than that. Thanks, David On Wed, Sep 19, 2012 at 3:1

[cmake-developers] Adding Qt5 Support

2012-09-19 Thread Luis Kabongo
Hello everyone, First of all I would like to apologize for any possible mistake/incoherence/stupidity in the following message(s), since this is my first contribution here. Even if Qt 5.0.0 is still under beta 1, I am working on trying to get Qt5 to work with our own libraries and had to patch so