[Insight-users] Re: Regarding to the modification of CmakeList file

Luis Ibanez luis.ibanez@kitware.com
Mon May 10 02:58:36 EDT 2004


Hi Venkata,

I don't think we have specific commands
for Qt files with extensions .rc and .def.

It actually looks like they were intended
for MFC...

Do you know what operations are performed on
these files ?

If so, you could configure a CUSTOM_COMMAND
in CMake in order to call the Qt Tool that
is supposed to process such files.


  Please let us know,


    Thanks


      Luis


----------------
Venkata wrote:

> Hello Luis,
> 
>  
> 
> I already posed this question in ITK and Cmake mailing list since I 
> didn’t get answer so I am mailing you this once again personally. I am 
> trying to modify the code of QtImageViewer(this folder contains files 
> like QtSlicer.cxx, QtSlicerTest.cxx etc…), the application that is 
> developed by ITK which integrates ITK in Qt programs. Now I am planning 
> to bring this application to be displayed in the web browser so I am 
> working with the ActiveQt module of Qt which has this features to make 
> Qt applications to display in the browser. The problem is, this module 
> needs some extra libraries and config settings to work. If the 
> application is a pure Qt application then we set all these requirements 
> in the pro file of corresponding application. Since we do not use pro 
> file in the applications integrated with ITK, in our case the 
> QtImageViewer we use the CMakeList file for this purpose, the problem is 
> at the conversion step of pro file into corresponding CMakeList file. 
> For eg:
> 
>  
> 
> *(Lines in pro file)*
> 
> HEADERS += imagedialog.ui.h imagedialogimpl.h
> 
> SOURCES += imagedialogimpl.cpp main.cpp
> 
>  
> 
> Into
> 
>  
> 
> *(Lines in CMakeList file)*
> 
> SET(Image_MOC_SRCS
> 
> imagedialog.ui.h
> 
> imagedialogimpl.h
> 
> )
> 
>  
> 
> SET(Image_SRCS
> 
> imagedialogimpl.cxx
> 
> main.cxx
> 
> )
> 
> Now I need to convert some more lines of pro file into CMakeList file 
> where I am finding difficulty. Those lines are below
> 
>  
> 
> TEMPLATE = lib
> 
> CONFIG += activeqt dll
> 
> RC_FILE = C:\Qt\3.3.1\extensions\activeqt\control\qaxserver.rc
> 
> DEF_FILE = C:\Qt\3.3.1\extensions\activeqt\control\qaxserver.def
> 
>  
> 
> I went through the Cmake documentation to find commands for conversion 
> but I couldn’t. Could you let me know the corresponding lines in the 
> CMakeList file for the above lines.
> 
>  
> 
> Thanks
> 
> -Venkat
> 
>  
> 
>  
> 
>  
> 






More information about the Insight-users mailing list