🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.3 KiB

  1. # Remove CMake generated temporary files
  2. set (cmake_generated
  3. ${CMAKE_BINARY_DIR}/ALL_BUILD.vcxproj
  4. ${CMAKE_BINARY_DIR}/ALL_BUILD.vcxproj.filters
  5. ${CMAKE_BINARY_DIR}/CMakeCache.txt
  6. ${CMAKE_BINARY_DIR}/CMakeFiles
  7. ${CMAKE_BINARY_DIR}/CTestTestfile.cmake
  8. ${CMAKE_BINARY_DIR}/Continuous.vcxproj
  9. ${CMAKE_BINARY_DIR}/Continuous.vcxproj.filters
  10. ${CMAKE_BINARY_DIR}/DartConfiguration.tcl
  11. ${CMAKE_BINARY_DIR}/Debug
  12. ${CMAKE_BINARY_DIR}/Experimental.vcxproj
  13. ${CMAKE_BINARY_DIR}/Experimental.vcxproj.filters
  14. ${CMAKE_BINARY_DIR}/INSTALL.vcxproj
  15. ${CMAKE_BINARY_DIR}/INSTALL.vcxproj.filters
  16. ${CMAKE_BINARY_DIR}/Makefile
  17. ${CMAKE_BINARY_DIR}/Nightly.vcxproj
  18. ${CMAKE_BINARY_DIR}/Nightly.vcxproj.filters
  19. ${CMAKE_BINARY_DIR}/NightlyMemoryCheck.vcxproj
  20. ${CMAKE_BINARY_DIR}/NightlyMemoryCheck.vcxproj.filters
  21. ${CMAKE_BINARY_DIR}/RUN_TESTS.vcxproj
  22. ${CMAKE_BINARY_DIR}/RUN_TESTS.vcxproj.filters
  23. ${CMAKE_BINARY_DIR}/Testing
  24. ${CMAKE_BINARY_DIR}/Win32
  25. ${CMAKE_BINARY_DIR}/ZERO_CHECK.vcxproj
  26. ${CMAKE_BINARY_DIR}/ZERO_CHECK.vcxproj.filters
  27. ${CMAKE_BINARY_DIR}/check.vcxproj
  28. ${CMAKE_BINARY_DIR}/check.vcxproj.filters
  29. ${CMAKE_BINARY_DIR}/cmake_install.cmake
  30. ${CMAKE_BINARY_DIR}/dirent.sln
  31. ${CMAKE_BINARY_DIR}/distclean.vcxproj
  32. ${CMAKE_BINARY_DIR}/distclean.vcxproj.filters
  33. ${CMAKE_BINARY_DIR}/find
  34. ${CMAKE_BINARY_DIR}/find.dir
  35. ${CMAKE_BINARY_DIR}/find.vcxproj
  36. ${CMAKE_BINARY_DIR}/find.vcxproj.filters
  37. ${CMAKE_BINARY_DIR}/locate
  38. ${CMAKE_BINARY_DIR}/locate.dir
  39. ${CMAKE_BINARY_DIR}/locate.vcxproj
  40. ${CMAKE_BINARY_DIR}/locate.vcxproj.filters
  41. ${CMAKE_BINARY_DIR}/ls
  42. ${CMAKE_BINARY_DIR}/ls.dir
  43. ${CMAKE_BINARY_DIR}/ls.vcxproj
  44. ${CMAKE_BINARY_DIR}/ls.vcxproj.filters
  45. ${CMAKE_BINARY_DIR}/t-compile
  46. ${CMAKE_BINARY_DIR}/t-compile.dir
  47. ${CMAKE_BINARY_DIR}/t-compile.vcxproj
  48. ${CMAKE_BINARY_DIR}/t-compile.vcxproj.filters
  49. ${CMAKE_BINARY_DIR}/t-dirent
  50. ${CMAKE_BINARY_DIR}/t-dirent.dir
  51. ${CMAKE_BINARY_DIR}/t-dirent.vcxproj
  52. ${CMAKE_BINARY_DIR}/t-dirent.vcxproj.filters
  53. ${CMAKE_BINARY_DIR}/updatedb
  54. ${CMAKE_BINARY_DIR}/updatedb.dir
  55. ${CMAKE_BINARY_DIR}/updatedb.vcxproj
  56. ${CMAKE_BINARY_DIR}/updatedb.vcxproj.filters
  57. )
  58. foreach (file ${cmake_generated})
  59. if (EXISTS ${file})
  60. file (REMOVE_RECURSE ${file})
  61. endif()
  62. endforeach (file)