comparison INSTALL @ 288:40d3bf6cc8d9

logs
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 14 Dec 2012 11:22:04 +0100
parents 471df5fecb1e
children 4d7469f72a0b
comparison
equal deleted inserted replaced
287:471df5fecb1e 288:40d3bf6cc8d9
66 # cd ~/OrthancBuild 66 # cd ~/OrthancBuild
67 # cmake -DSTATIC_BUILD=OFF -DCMAKE_BUILD_TYPE=DEBUG ~/Orthanc 67 # cmake -DSTATIC_BUILD=OFF -DCMAKE_BUILD_TYPE=DEBUG ~/Orthanc
68 # make 68 # make
69 69
70 70
71 Debian/Ubuntu specific: Because of a packaging error for "libdcmtk",
72 you have to add the "wrap" and "oflog" libraries at the configuration
73 time:
74
75 # cd ~/OrthancBuild
76 # cmake "-DDCMTK_LIBRARIES=wrap;oflog" -DSTATIC_BUILD=OFF -DCMAKE_BUILD_TYPE=DEBUG ~/Orthanc
77 # make
78
79
80 71
81 Cross-Compilation for Windows under Linux 72 Cross-Compilation for Windows under Linux
82 ----------------------------------------- 73 -----------------------------------------
83 74
84 To cross-compile Windows binaries under Linux using MinGW, please use 75 To cross-compile Windows binaries under Linux using MinGW, please use
111 * More recent versions of Visual Studio should also work. 102 * More recent versions of Visual Studio should also work.
112 * You will have to install the Platform SDK (version 6 or above) for 103 * You will have to install the Platform SDK (version 6 or above) for
113 Visual Studio 2005: 104 Visual Studio 2005:
114 http://en.wikipedia.org/wiki/Microsoft_Windows_SDK. 105 http://en.wikipedia.org/wiki/Microsoft_Windows_SDK.
115 Read the CMake FAQ: http://goo.gl/By90B 106 Read the CMake FAQ: http://goo.gl/By90B
107
108
109
110 Debian/Ubuntu specific
111 ----------------------
112
113 When dynamically linking against the system libraries, you have to
114 manually add the "wrap" and "oflog" libraries at the configuration
115 time (because of a packaging error in "libdcmtk"):
116
117 # cd ~/OrthancBuild
118 # cmake "-DDCMTK_LIBRARIES=wrap;oflog" -DSTATIC_BUILD=OFF -DCMAKE_BUILD_TYPE=DEBUG ~/Orthanc
119 # make
120