diff options
| author | ruki <[email protected]> | 2023-09-04 22:51:16 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-09-04 22:51:16 +0800 |
| commit | 8f2c27464e9a4f6a90c3086d9d18e8fddba3dfb9 (patch) | |
| tree | ca59df04f541875dd3374d8bb15e2a5f5a9d5ea0 | |
| parent | e78e3ddf6d61157a2687fb1fb6fda232fdca34c9 (diff) | |
fix logs
| -rw-r--r-- | xmake/plugins/doxygen/main.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/plugins/doxygen/main.lua b/xmake/plugins/doxygen/main.lua index 876e747d1..cf65cacbc 100644 --- a/xmake/plugins/doxygen/main.lua +++ b/xmake/plugins/doxygen/main.lua @@ -112,10 +112,11 @@ function main() end -- generate document - cprint("generating ..${beer}") + cprint("generating ..") os.vrunv(doxygen.program, {doxyfile}, {curdir = project.directory()}) -- done + local outputdir = option.get("outputdir") or config.buildir() cprint("${bright green}result: ${default green}%s/html/index.html", outputdir) cprint("${color.success}doxygen ok!") os.setenvs(oldenvs) |
