Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/cmakeclearcache @ 519

Last change on this file since 519 was 389, checked in by nicolasc, 16 years ago

merged audio into FICN

  • Property svn:executable set to *
File size: 300 bytes
Line 
1#!/bin/bash
2# Clears the cmake cache
3# Author: Nicolas Perrenoud <nicolape@ee.ethz.ch>
4
5find . -iname "cmakecache*" -exec rm -f {} \;
6find . -iname "cmake_ins*" -exec rm -f {} \;
7find . -iname "cmakefiles*" -exec rm -fr {} \;
8find . -iname "Makefile*" -exec rm -fr {} \;
9
10echo "Cmake Cache cleared!"
Note: See TracBrowser for help on using the repository browser.