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..d3b6908 --- /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) + |