Last change
on this file since 1497 was
1494,
checked in by rgrieder, 17 years ago
|
- set the svn:eol-style property to all files so, that where ever you check out, you'll get the right line endings
(had to change every file with mixed endings to windows in order to set the property)
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
|
File size:
362 bytes
|
Rev | Line | |
---|
[377] | 1 | #!/bin/bash |
---|
| 2 | # Clears the cmake cache |
---|
| 3 | # Author: Nicolas Perrenoud <nicolape@ee.ethz.ch> |
---|
[665] | 4 | # Co-Author: Nicolas Schlumberger <nico_at_orxonox.net> |
---|
[377] | 5 | |
---|
[524] | 6 | find . -name "CMakeCache.txt" -exec rm -f {} \; |
---|
[1242] | 7 | find . -name "cmake_install.cmake" -exec rm -f {} \; |
---|
[524] | 8 | find . -name "CMakeFiles" -exec rm -fr {} \; |
---|
[665] | 9 | find . -name "Makefile" -exec rm -fr {} \; |
---|
[377] | 10 | |
---|
| 11 | echo "Cmake Cache cleared!" |
---|
Note: See
TracBrowser
for help on using the repository browser.