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