Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/cmakeclearcache @ 542

Last change on this file since 542 was 524, checked in by nicolasc, 16 years ago
  • made cmakeclearcache safe, that it only deletes files that it should
  • Property svn:executable set to *
File size: 301 bytes
Line 
1#!/bin/bash
2# Clears the cmake cache
3# Author: Nicolas Perrenoud <nicolape@ee.ethz.ch>
4
5find . -name "CMakeCache.txt" -exec rm -f {} \;
6find . -name "cmake_install" -exec rm -f {} \;
7find . -name "CMakeFiles" -exec rm -fr {} \;
8find . -name "Makefile*" -exec rm -fr {} \;
9
10echo "Cmake Cache cleared!"
Note: See TracBrowser for help on using the repository browser.