File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
9
9
Example usage:
10
10
11
11
---
12
- ./ddoc --compiler=<path-to-dmd> --output=out.html myfile.dd
12
+ ./ddoc --compiler=<path-to-dmd> <source-file> <arguments-to-dmd>
13
13
---
14
14
15
15
Author: Sebastian Wilzbach
@@ -23,7 +23,6 @@ import dmd.cli;
23
23
struct Config
24
24
{
25
25
string dmdBinPath = " dmd" ;
26
- string outputFile;
27
26
string cwd = __FILE_FULL_PATH__.dirName.dirName.dirName;
28
27
}
29
28
Config config;
@@ -40,9 +39,10 @@ int main(string[] rootArgs)
40
39
);
41
40
if (helpInformation.helpWanted)
42
41
{
43
- ` DDoc wrapper
42
+ ` A wrapper around DDoc to allow custom extensions
43
+ ./ddoc --compiler=<path-to-dmd> <source-file> <arguments-to-dmd>
44
+
44
45
All unknown options are passed to the compiler.
45
- ./ddoc <file>...
46
46
` .defaultGetoptPrinter(helpInformation.options);
47
47
return 1 ;
48
48
}
You can’t perform that action at this time.
0 commit comments