diff INSTALL @ 302:238134081136

modification of dicom files
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 18 Dec 2012 17:29:30 +0100
parents 0439da59faef
children 1da6ec6038f5
line wrap: on
line diff
--- a/INSTALL	Mon Dec 17 16:30:39 2012 +0100
+++ b/INSTALL	Tue Dec 18 17:29:30 2012 +0100
@@ -118,3 +118,15 @@
 # cmake "-DDCMTK_LIBRARIES=wrap;oflog" -DSTATIC_BUILD=OFF -DCMAKE_BUILD_TYPE=Debug ~/Orthanc
 # make
 
+
+
+Using ccache
+------------
+
+Under Linux, you have the opportunity to use "ccache" to dramatically
+decrease the compilation time when rebuilding Orthanc. This is
+especially useful for developers. Under Debian/Ubuntu, you would use:
+
+# CC="ccache gcc" CXX="ccache g++" cmake "-DDCMTK_LIBRARIES=wrap;oflog" \
+  -DSTATIC_BUILD=OFF -DCMAKE_BUILD_TYPE=Debug ~/Orthanc
+