Re: [CMake] What is the VS10 .rule file generated for each ADD_CUSTOM_COMMAND?

2011-06-27 Thread Bill Hoffman
On 6/25/2011 11:40 AM, Gabriel Petrovay wrote: (Using Cmake 2.8.4) I think this was something I just fixed. There were some cases where the rule files were not be created. If you could post a small example I could take a look and see if it is fixed now. Also, please try the most

Re: [CMake] What is the VS10 .rule file generated for each ADD_CUSTOM_COMMAND?

2011-06-27 Thread Bill Hoffman
On 6/27/2011 11:57 AM, Gabriel Petrovay wrote: Hi Bill, I have no exception. I only know that Cmake generates a wrong Include attribute for a CustomBuild element (first in a series of cmake generated filed). This generated file also does not have a .rule file generated for it like for all the

[CMake] What is the VS10 .rule file generated for each ADD_CUSTOM_COMMAND?

2011-06-25 Thread Gabriel Petrovay
Hi, 1. What is the rule file? 2. What is the logic by which this file is generated? I have a list of src files that need to be generated, each by an ADD_CUSTOM_COMMAND in a FOREACH loop: FOREACH(SRC ${SRC_LIST}) // no code here ADD_CUSTOM_COMMAND(...) // no code here ENDFOREACH(SRC) And

Re: [CMake] What is the VS10 .rule file generated for each ADD_CUSTOM_COMMAND?

2011-06-25 Thread Gabriel Petrovay
(Using Cmake 2.8.4) On Sat, Jun 25, 2011 at 5:39 PM, Gabriel Petrovay gabipetro...@gmail.comwrote: Hi, 1. What is the rule file? 2. What is the logic by which this file is generated? I have a list of src files that need to be generated, each by an ADD_CUSTOM_COMMAND in a FOREACH loop: