Re: [CMake] Generated CMakeLists.txt

2011-11-09 Thread Łukasz Tasz
Hi Michael, Hi all, The workflow you described works fine, with one remark, cmake phase will be triggered each time when input for generator is changing, it means reconfiguration will happen even in cases it's not needed. The issue is that as I wrote: The setup looks like: generator has some

Re: [CMake] Generated CMakeLists.txt

2011-11-09 Thread Michael Hertling
On 11/09/2011 04:27 PM, Łukasz Tasz wrote: Hi Michael, Hi all, The workflow you described works fine, with one remark, cmake phase will be triggered each time when input for generator is changing, it means reconfiguration will happen even in cases it's not needed. The issue is that as I

[CMake] Generated CMakeLists.txt

2011-11-08 Thread Łukasz Tasz
Hi All, I have one issue connected with generated code. What is recommended way to proceed with generators which provides source which is dynamic? The setup looks like: generator has some input, and depending on this input files are generated. From cmake point of view I need only this list of

Re: [CMake] Generated CMakeLists.txt

2011-11-08 Thread Michael Hertling
On 11/08/2011 03:30 PM, Łukasz Tasz wrote: Hi All, I have one issue connected with generated code. What is recommended way to proceed with generators which provides source which is dynamic? The setup looks like: generator has some input, and depending on this input files are generated.