Re: [CMake] ADD_CUSTOM_COMMAND doesn't create CMake rules

2008-03-14 Thread Schick, Thorben (ITUC; ADITG/DFG)
TED] Sent: Freitag, 14. März 2008 09:16 To: Schick, Thorben (ITUC; ADITG/DFG) Subject: Re: [CMake] ADD_CUSTOM_COMMAND doesn't create CMake rules You must use the generated files of a ADD_CUSTOM_COMMAND as a dependency. > SET (_ui C:/...view_tool/tmp/intf/data_search.h) > SET (_fil

Re: [CMake] ADD_CUSTOM_COMMAND doesn't create CMake rules

2008-03-14 Thread Schick, Thorben (ITUC; ADITG/DFG)
@cmake.org Subject: Re: [CMake] ADD_CUSTOM_COMMAND doesn't create CMake rules Hello Thorben, You need something that drives the custom command, such as custom target. That said, if you are doing QT stuff, you should really look at FindQT.cmake. Andy On Wed, Mar 12, 2008 at 9:45 AM, Schick

Re: [CMake] ADD_CUSTOM_COMMAND doesn't create CMake rules

2008-03-12 Thread Andy Lego
Hello Thorben, You need something that drives the custom command, such as custom target. That said, if you are doing QT stuff, you should really look at FindQT.cmake. Andy On Wed, Mar 12, 2008 at 9:45 AM, Schick, Thorben (ITUC; ADITG/DFG) <[EMAIL PROTECTED]> wrote: > > > > I am trying to use CM

[CMake] ADD_CUSTOM_COMMAND doesn't create CMake rules

2008-03-12 Thread Schick, Thorben (ITUC; ADITG/DFG)
I am trying to use CMake to create the build information for MS Visual Studio .NET 2003 including some QT UIs. I added the following code to create the accordant building rules. Due to readability i give only some examples. I realized creation with a loop over all necessary uis and looping works fi