8 lines
181 B
Bash
Executable File
8 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf `find . -name CMakeCache.txt`
|
|
rm -rf `find . -name CMakeFiles`
|
|
rm -rf `find . -name cmake_install.cmake`
|
|
rm -rf `find . -name Makefile`
|
|
rm -f install_manifest.txt
|