Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/audio/cmakeclearcache @ 377

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

Added tardis alut dir and changed cmake to load all audio stuff from system libs

  • Property svn:executable set to *
File size: 255 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 {} \;
8
9echo "Cmake Cache cleared!"
Note: See TracBrowser for help on using the repository browser.