diff options
Diffstat (limited to 'app/doc/clean-html.cmake')
-rw-r--r-- | app/doc/clean-html.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/doc/clean-html.cmake b/app/doc/clean-html.cmake new file mode 100644 index 0000000..3b0c500 --- /dev/null +++ b/app/doc/clean-html.cmake @@ -0,0 +1,6 @@ +file(GLOB_RECURSE all_files *) + +if(all_files) + file(REMOVE ${all_files}) +endif(all_files) + |