Re: ddoc - modules with same name

2015-07-02 Thread armando sano via Digitalmars-d-learn
I could never get this working. Have you got an example of your compiler command. In case that's still helpful after a couple of years...: dmd path1/to/source.d path2/to/source.d -o- -D -Ddpath/to/doc -op generates `path/to/doc/path1/to/source.html` and

Re: ddoc - modules with same name

2015-07-02 Thread Gary Willoughby via Digitalmars-d-learn
On Thursday, 2 July 2015 at 06:33:42 UTC, armando sano wrote: I could never get this working. Have you got an example of your compiler command. In case that's still helpful after a couple of years...: dmd path1/to/source.d path2/to/source.d -o- -D -Ddpath/to/doc -op generates

Re: ddoc - modules with same name

2013-11-13 Thread Jonathan M Davis
On Wednesday, November 13, 2013 08:27:45 rumbu wrote: Let's suppose I have a module structure: - package.module1.core - package.module2.core Building documentation with dmd will generate a sigle core.html file with content related only to package.module2.core, overwriting the first one.

Re: ddoc - modules with same name

2013-11-13 Thread rumbu
AFAIK though, there's no way to get it to do that. And if there is in fact no such way, then I'd argue that it's quite deserving of an enhancement request: https://d.puremagic.com/issues - Jonathan M Davis Thanks, but I just discovered the -op command line argument who does exactly this.

Re: ddoc - modules with same name

2013-11-13 Thread Gary Willoughby
On Wednesday, 13 November 2013 at 16:39:11 UTC, rumbu wrote: AFAIK though, there's no way to get it to do that. And if there is in fact no such way, then I'd argue that it's quite deserving of an enhancement request: https://d.puremagic.com/issues - Jonathan M Davis Thanks, but I just

ddoc - modules with same name

2013-11-12 Thread rumbu
Let's suppose I have a module structure: - package.module1.core - package.module2.core Building documentation with dmd will generate a sigle core.html file with content related only to package.module2.core, overwriting the first one. Is there any way that dmd can recreate directory