2P11/clear.sh
2015-05-02 23:00:30 +02:00

9 lines
235 B
Bash
Executable file

#!/bin/bash
path="$(dirname "$(readlink -f $0)")"
find "$path" -name "CMakeFiles" -exec rm -rf {} \;
find "$path" -name "CMakeCache.txt" -delete
find "$path" -name "cmake_install.cmake" -delete
find "$path" -name "Makefile" -delete