Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/audio/cmakeclearcache @ 388

Last change on this file since 388 was 388, checked in by nicolape, 16 years ago

Added cmake find files for my libs, added some test bg sounds (from x3, to be replaced later)

  • 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.