gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

io.cmake (203B)


      1 macro(removeGlob PATTERN)
      2 	file(GLOB filesToRemove LIST_DIRECTORIES false "${PATTERN}")
      3 	foreach(f ${filesToRemove})
      4 		message(STATUS "Removing file ${f}")
      5 		file(REMOVE "${f}")
      6 	endforeach()
      7 endmacro()