Re: [CMake] Suggestions on documenting my CMake modules

2011-10-31 Thread Alexander Neundorf
On Saturday 29 October 2011, Robert Dailey wrote: I have several complex functions which require a ton of documentation. I wanted to type this documentation directly in the cmake file right above the function() itself, but it is turning out to be a formatting nightmare. What would you guys

Re: [CMake] Suggestions on documenting my CMake modules

2011-10-31 Thread Rolf Eike Beer
Am Montag, 31. Oktober 2011, 20:58:45 schrieb Alexander Neundorf: On Saturday 29 October 2011, Robert Dailey wrote: I have several complex functions which require a ton of documentation. I wanted to type this documentation directly in the cmake file right above the function() itself, but it

Re: [CMake] Suggestions on documenting my CMake modules

2011-10-31 Thread Alexander Neundorf
On Monday 31 October 2011, Rolf Eike Beer wrote: Am Montag, 31. Oktober 2011, 20:58:45 schrieb Alexander Neundorf: On Saturday 29 October 2011, Robert Dailey wrote: I have several complex functions which require a ton of documentation. I wanted to type this documentation directly in the

[CMake] Suggestions on documenting my CMake modules

2011-10-29 Thread Robert Dailey
I have several complex functions which require a ton of documentation. I wanted to type this documentation directly in the cmake file right above the function() itself, but it is turning out to be a formatting nightmare. What would you guys recommend as far as this kind of documentation goes? It

Re: [CMake] Suggestions on documenting my CMake modules

2011-10-29 Thread Jean-Christophe Fillion-Robin
Hi Robert, Within CTK http://commontk.org, Sasha implemented a Doxygen filter for CMake. You could refer to the following: https://github.com/saschazelzer/CMakeDoxygenFilter/blob/master/README https://github.com/commontk/CTK/blob/master/CMake/ctkFunctionCMakeDoxygenFilterCompile.cmake Hth Jc

Re: [CMake] Suggestions on documenting my CMake modules

2011-10-29 Thread Eric Noulard
2011/10/29 Robert Dailey rcdai...@gmail.com: I have several complex functions which require a ton of documentation. I wanted to type this documentation directly in the cmake file right above the function() itself, but it is turning out to be a formatting nightmare. What kind of formatting do