Last change
on this file since 600 was
524,
checked in by nicolasc, 17 years ago
|
- made cmakeclearcache safe, that it only deletes files that it should
|
-
Property svn:executable set to
*
|
File size:
301 bytes
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | # Clears the cmake cache |
---|
3 | # Author: Nicolas Perrenoud <nicolape@ee.ethz.ch> |
---|
4 | |
---|
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 {} \; |
---|
9 | |
---|
10 | echo "Cmake Cache cleared!" |
---|
Note: See
TracBrowser
for help on using the repository browser.