Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/cmakeclearcache @ 1504

Last change on this file since 1504 was 1504, checked in by rgrieder, 16 years ago

Once again, set all the svn:eol-style property to native. I really hope this doesn't pose more problems than it solves..

  • Property eol-style set to native
  • Property svn:executable set to *
File size: 362 bytes
Line 
1#!/bin/bash
2# Clears the cmake cache
3# Author: Nicolas Perrenoud <nicolape@ee.ethz.ch>
4# Co-Author: Nicolas Schlumberger <nico_at_orxonox.net>
5
6find . -name "CMakeCache.txt" -exec rm -f {} \;
7find . -name "cmake_install.cmake" -exec rm -f {} \;
8find . -name "CMakeFiles" -exec rm -fr {} \;
9find . -name "Makefile" -exec rm -fr {} \;
10
11echo "Cmake Cache cleared!"
Note: See TracBrowser for help on using the repository browser.