cmake -E rm <file...> <dir...>
Remove the files <file> or directories dir
Arguments
| Name | Description | 
|---|---|
| file | filepaths | 
| dir | folders | 
Options
| Name | Description | 
|---|---|
| -r, -R | Use -r or -R to remove directories and their contents recursively. If any of the listed files/directories do not exist, the command returns a non-zero exit code, but no message is logged | 
| -f | The -f option changes the behavior to return a zero exit code (i.e. success) in such situations instead |