Re: [cmake-developers] target_include_directories branch in stage

2011-12-04 Thread Stephen Kelly
David Cole wrote: I, for one, would really like to see per-target include directories in 2.8.7, even without per-config support to start with. Then, add the per-config support / new generator expressions in a later release. That seems unlikely to happen. If RC1 is Wednesday, it would have

Re: [cmake-developers] target_include_directories branch in stage

2011-12-04 Thread Alexander Neundorf
On Sunday 04 December 2011, Stephen Kelly wrote: David Cole wrote: I, for one, would really like to see per-target include directories in 2.8.7, even without per-config support to start with. Then, add the per-config support / new generator expressions in a later release. That seems

Re: [cmake-developers] target_include_directories branch in stage

2011-12-04 Thread Stephen Kelly
Alexander Neundorf wrote: On Sunday 04 December 2011, Stephen Kelly wrote: David Cole wrote: I, for one, would really like to see per-target include directories in 2.8.7, even without per-config support to start with. Then, add the per-config support / new generator expressions in a later

[cmake-developers] [CMake 0012606]: Archive and STGZ packages don't respect CPACK_PACKAGE_INSTALL_DIRECTORY (patch included)

2011-12-04 Thread Mantis Bug Tracker
The following issue has been SUBMITTED. == http://public.kitware.com/Bug/view.php?id=12606 == Reported By:Branan Purvine-Riley Assigned To:

[CMake] Cmake unable to detect dependencies

2011-12-04 Thread Surya Kiran Gullapalli
Hello all, I'm building several executables which are located in a single directory. Each executable has different include path. I'm calling add_executable in a loop and If I call Include_Directories in the loop, the last built executable will have a long include path. To avoid that, I'm setting

[CMake] Automatically pull in dependencies from QtDesigner plugins

2011-12-04 Thread David Doria
I have created a QT widget, MyWidget, and a QtDesigner plugin for MyWidget. Now I want to use MyWidget in bigger project, MyProject. I created a ui file for MyProject with QtDesigner and add a MyWidget in the designer. Now when I try to compile MyProject, I get (of course) error: can't find

Re: [CMake] Automatically pull in dependencies from QtDesigner plugins

2011-12-04 Thread Michael Jackson
Do you have MyWidget packaged as a true library, or did you just create the Designer Plugin and then have a loose .cpp/.h file? The is a project called Qwt* that has a similar setup. It has a Designer plugin for its various widgets and it has a qwt.dylib/.dll/.so that your program links

Re: [CMake] Best practices/preferred methods for linking external libraries

2011-12-04 Thread Michael Jackson
On Dec 1, 2011, at 4:56 PM, Matthew LeRoy wrote: We began using CMake a few months ago for a couple of small cross-platform projects, and we're still learning all the ins and outs and capabilities CMake has to offer, as well as how to get the most out of CMake by using it The Right Way.

Re: [CMake] Cmake unable to detect dependencies

2011-12-04 Thread Michael Wild
On 12/04/2011 03:37 PM, Surya Kiran Gullapalli wrote: Hello all, I'm building several executables which are located in a single directory. Each executable has different include path. I'm calling add_executable in a loop and If I call Include_Directories in the loop, the last built