cmake -E remove <file...>
Remove the file(s). The planned behavior was that if any of the listed files already do not exist, the command returns a non-zero exit code, but no message is logged
Arguments
Name | Description |
---|---|
file | filepaths |
Options
Name | Description |
---|---|
-f | The -f option changes the behavior to return a zero exit code (i.e. success) in such situations instead. remove does not follow symlinks. That means it remove only symlinks and not files it point to |