clean_cmake_files.bat 344 B

123456789101112131415161718192021
  1. REM Make changes to environment local
  2. setlocal
  3. SET RMDIR=rmdir /S /Q
  4. SET DEL=del /Q
  5. %RMDIR% CMakeFiles
  6. %RMDIR% debug
  7. %RMDIR% log4cplus.dir
  8. %RMDIR% loggingserver.dir
  9. %RMDIR% minsizerel
  10. %RMDIR% release
  11. %RMDIR% relwithdebinfo
  12. %RMDIR% ZERO_CHECK.dir
  13. %DEL% cmake_install.cmake
  14. %DEL% CMakeCache.txt
  15. REM Clean up changes to environment.
  16. endlocal