Hi Craig On Thu, 06 Apr 2017 08:55:58 +1000, Craig Scott wrote: > Can anyone identify a scenario where the -f option to the CMake command > mode's "remove" command makes any difference? >
How about removing directories: ~/src/cmake-test$ cmake --version cmake version 3.0.2 CMake suite maintained and supported by Kitware (kitware.com/cmake). ~/src/cmake-test$ mkdir foo ~/src/cmake-test$ cmake -E remove foo ~/src/cmake-test$ echo $? 1 ~/src/cmake-test$ cmake -E remove -f foo ~/src/cmake-test$ echo $? 0 -- Cognomen Ltd http://cognomen.co.uk +44 7855 790184
signature.asc
Description: Digital signature
-- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake
