forked from mgalloy/mglib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cleanconf.sh
executable file
·30 lines (21 loc) · 892 Bytes
/
cleanconf.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
rm -rf build
rm -rf _CPack_Packages
rm -f CPackConfig.cmake
rm -f CPackSourceConfig.cmake
rm -f install_manifest.txt
rm -f CMakeCache.txt
rm -f cmake_install.cmake
rm -rf CMakeFiles
rm -rf src/CMakeFiles
rm -f src/cmake_install.cmake
SRCDIRS="analysis cmdline_tools collection cula dist_tools envi fileio googlevoice gsl hdf hdf5 indices install_tools introspection itools markdown misc net netcdf objects profiling save strings templating textmarkup updater vis widgets zlib"
for d in $SRCDIRS; do
rm -rf src/$d/CMakeFiles
rm -f src/$d/cmake_install.cmake
done
VISDIRS="animation animation/animators animation/easing animation/utils color directgraphics flow geometry googlechart graphs images misc objectgraphics povray surfaces tables text treemaps util vtk x3d"
for d in $VISDIRS; do
rm -rf src/vis/$d/CMakeFiles
rm -f src/vis/$d/cmake_install.cmake
done