diff options
Diffstat (limited to 'source/tools/mutool.c')
-rw-r--r-- | source/tools/mutool.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/tools/mutool.c b/source/tools/mutool.c index c6b33330..892e7c6c 100644 --- a/source/tools/mutool.c +++ b/source/tools/mutool.c @@ -27,6 +27,8 @@ int pdfmerge_main(int argc, char *argv[]); int pdfportfolio_main(int argc, char *argv[]); int pdfsign_main(int argc, char *argv[]); +int cmapdump_main(int argc, char *argv[]); + static struct { int (*func)(int argc, char *argv[]); char *name; @@ -57,6 +59,9 @@ static struct { #endif #if FZ_ENABLE_PDF { pdfshow_main, "show", "show internal pdf objects" }, +#ifndef NDEBUG + { cmapdump_main, "cmapdump", "dump CMap resource as C source file" }, +#endif #endif }; |