mirror of
https://github.com/DreamSourceLab/DSView.git
synced 2025-01-23 13:42:55 +08:00
17 lines
305 B
Plaintext
Executable File
17 lines
305 B
Plaintext
Executable File
echo "rm cmake cache begin..."
|
|
|
|
sudo rm -r ./build
|
|
rm -r ./CMakeFiles
|
|
|
|
rm ./cmake_install.cmake
|
|
rm ./Makefile
|
|
rm ./CMakeCache.txt
|
|
rm ./*.cmake
|
|
rm ./DSView.qrc.depends
|
|
|
|
find . -name 'moc_*.cpp*' | xargs rm -rf
|
|
find . -name 'qrc_*.cpp' | xargs rm -rf
|
|
|
|
rm ./install_manifest.txt
|
|
echo "rm cmake cache end..."
|