Re: [CMake] qmake to cmake

2007-10-12 Thread Alan W. Irwin
On 2007-10-12 14:44-0400 Ajay Divekar wrote: I also want to create plugins which I want to load in my application. I was wondering if anybody could tell me how to create a plugin using cmake. Look at the MODULE functionality of ADD_LIBRARY. You may also want to change the created module/plug-

Re: [CMake] qmake to cmake

2007-10-12 Thread Ajay Divekar
Experts, I want to run the rcc compiler and would like to which cmake command to use (like qt_wrap_cpp to generate the moc files)? I also want to create plugins which I want to load in my application. I was wondering if anybody could tell me how to create a plugin using cmake. Regards, Ajay ___

Re: [CMake] qmake to cmake

2007-10-12 Thread kent williams
Check http://www.cmake.org/HTML/Documentation.html for the CMake INCLUDE_DIRECTORIES claus. You can have multiple INCLUDE_DIRECTORIES clauses, and they're inherited in subdirectories. On 10/12/07, Ajay Divekar <[EMAIL PROTECTED]> wrote: > Experts, > > I was wondering how do I pass the include di

Re: [CMake] qmake to cmake

2007-10-12 Thread Ajay Divekar
Experts, I was wondering how do I pass the include directories (-I option) and the -D option to the files that being moc'd ? I am using qt4_wrap_cpp function to generate the moc_x.cxx files. Thanks in advance. Regards, Aj On 10/10/07, Marie-Christine Vallet <[EMAIL PROTECTED]> wrote: > > B

Re: [CMake] qmake to cmake

2007-10-10 Thread Marie-Christine Vallet
Brandon Van Every wrote: On 10/10/07, Ajay Divekar <[EMAIL PROTECTED]> wrote: Hello Experts, I found this ruby script on http://www.cmake.org/Wiki/CMake:ConvertFromQmake which helps in converting from qmake to cmake. Has anyone tried it and if so what has been there experience? Also befor

Re: [CMake] qmake to cmake

2007-10-10 Thread Brandon Van Every
On 10/10/07, Ajay Divekar <[EMAIL PROTECTED]> wrote: > Hello Experts, > > I found this ruby script on > > http://www.cmake.org/Wiki/CMake:ConvertFromQmake > > which helps in converting from qmake to cmake. Has anyone tried it and if > so what has been there experience? Also before I start if anyon

[CMake] qmake to cmake

2007-10-10 Thread Ajay Divekar
Hello Experts, I found this ruby script on http://www.cmake.org/Wiki/CMake:ConvertFromQmake which helps in converting from qmake to cmake. Has anyone tried it and if so what has been there experience? Also before I start if anyone has any suggestion they are welcome. Regards, Aj __