This revision compiles and runs on Win7x64- but further evaluation is necessary. There may be an issue with cmake step -After cmake I had to copy rtgui/version.h & config.h into out of source build /rtgui folder. Additional notes: - ImProcFunctions::hsv2rgb01 -> this likely need to be added to color.h & color.cc - Use of array2D should be verified in NR code - compilation warning for rtengine::RawImageSource::isWBProviderReady()
29 lines
521 B
Bash
Executable File
29 lines
521 B
Bash
Executable File
#!/bin/sh
|
|
find -name CMakeCache.txt -delete
|
|
rm install_manifest.txt
|
|
|
|
rm -r ./CMakeFiles
|
|
rm -r ./rtengine/CMakeFiles
|
|
rm -r ./rtexif/CMakeFiles
|
|
rm -r ./rtgui/CMakeFiles
|
|
rm -r ./rtdata/CMakeFiles
|
|
|
|
rm ./cmake*
|
|
rm ./rtengine/cmake*
|
|
rm ./rtexif/cmake*
|
|
rm ./rtgui/cmake*
|
|
rm ./rtdata/cmake*
|
|
|
|
rm ./Makefile
|
|
rm ./rtengine/Makefile
|
|
rm ./rtexif/Makefile
|
|
rm ./rtgui/Makefile
|
|
rm ./rtdata/Makefile
|
|
|
|
rm ./rtengine/librtengine.so
|
|
rm ./rtengine/librtengine.a
|
|
rm ./rtgui/rawtherapee
|
|
rm ./rtexif/librtexif.so
|
|
rm ./rtexif/librtexif.a
|
|
exit 0
|