Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 275 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 275 Bytes

CMake project cleaner

This program purges all builder and other CMake files and leaves only the C++ sources.

Example

Cleaner cleaner = new CMakeCleaner(Paths.get("./projects"));
cleaner.addSaveExtension(".cpp");
cleaner.addSaveExtension(".h");
cleaner.clean();