]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/scripts/install_thirdparty_all.bat
DFCH: Bug
[creaToolsTools.git] / Install_ThirdParty / scripts / install_thirdparty_all.bat
1 @echo off
2 echo -----------------------------------
3 echo ------Installing Libraries---------
4 echo -----------------------------------
5 echo -----------------------------------
6 echo ------Asking Architecture----------
7 echo -----------------------------------
8 if %PROCESSOR_ARCHITECTURE%==x86 (
9   set ProgramFilesPath_x86=%ProgramFiles%
10   echo "Architecture found = x86"
11 ) else (
12   set "ProgramFilesPath_x64=%ProgramFiles%"
13   set "ProgramFilesPath_x86=%ProgramFiles(x86)%"
14   echo "Architecture found = x64"
15 )
16
17 echo ----End Asking Architecture--------
18
19 echo -----------------------------------
20 echo ---Setting Environment Variables---
21 echo -----------------------------------
22
23 set thirdpartyGeneration=%1
24 set buildType=%2
25
26 set urlCreatisSource=http://www.creatis.insa-lyon.fr/software/public/creatools/crea_ThirdParty_Libraries/source
27 set urlCreatisSource=http://www.creatis.insa-lyon.fr/~caceres/software
28
29 set zipPath="%ProgramFilesPath_x86%\7-Zip\7z.exe"
30 set miktex="%ProgramFilesPath_x86%\MiKTeX 2.9\miktex\bin\texworks.exe"
31 set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
32 set wgetPath=%cd%\..\..\windows\creaTools_win_installers\CreaTools_v2_0_0_win32_installer\bin\wget.exe
33
34 if not exist %zipPath% set zipPath="%ProgramFilesPath_x64%\7-Zip\7z.exe"
35 if not exist %zipPath% (
36   echo ERROR!!! 7Zip has not been found in the system
37   exit
38 )
39 if not exist %vcvarsall% set vcvarsall="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
40 if not exist %vcvarsall% (
41   echo ERROR!!! Visual Studio has not been found in the system
42   exit
43 )
44
45 if not exist %miktex% (
46  set miktex="%ProgramFilesPath_x64%\MiKTeX 2.9\miktex\bin\texworks.exe"
47  if not exist %miktex% (
48   echo ERROR!!! MiKTex has not been found in the system
49   exit
50  )
51 )
52
53 if not exist %wgetPath% (
54   echo ERROR!!! wget has not been found in the system
55   exit
56 )
57
58
59 set installpath=%thirdpartyGeneration%\thirdparty_install
60 set binpath=%thirdpartyGeneration%\thirdparty_bin
61 set sourcepath=%thirdpartyGeneration%\thirdparty_source
62
63 set qt=Qt-4.7.3
64 set wxWidgets=wxWidgets-2.9.2
65 set boost=Boost-1.47.0
66 set xercesc=xerces-c-3.1.1
67 set itk=InsightToolkit-3.20.0
68 set gdcm=gdcm
69 set vtk=VTK
70
71 set QTDIR=%sourcepath%\%qt%
72 set WXDIR=%sourcepath%\%wxWidgets%
73 set BOOSTDIR=%sourcepath%\%boost%
74 set XERCESDIR=%sourcepath%\%xercesc%
75 set ITKSRCDIR=%sourcepath%\%itk%
76 set VTKSRCDIR=%sourcepath%\%VTK%
77 set GDCMSRCDIR=%sourcepath%\%gdcm%
78
79 echo -----------------------------------
80 echo Environment variables Configuration
81 echo -----------------------------------
82 echo ThirdpartyGeneration=%thirdpartyGeneration%
83 echo BuildType=%buildType%
84 echo wget=%wgetPath%
85 echo MikTex=%miktex%
86 echo urlCreatis=%urlCreatisSource%
87 echo 7zip=%zipPath%
88 echo Visual Studio=%vcvarsall%
89 echo InstallPath=%installpath%
90 echo BinPath=%binpath%
91 echo SourcePath=%sourcepath%
92 echo QT=%qt%
93 echo WX=%wxWidgets%
94 echo BOOST=%boost%
95 echo Xercesc=%xercesc%
96 echo ITK=%itk%
97 echo GDCM=%gdcm%
98 echo VTK=%vtk%
99 echo QTDIR=%QTDIR%
100 echo WKDIR=%WXDIR%
101 echo BOOSTDIR=%BOOSTDIR%
102 echo XERCESDIR=%XERCESDIR%
103 echo ITKSRCDIR=%ITKSRCDIR%
104 echo VTKSRCDIR=%VTKSRCDIR%
105 echo GDCMDIR=%GDCMSRCDIR%
106
107 echo -----------------------------------
108 echo ---End Setting Global Variables----
109 echo -----------------------------------
110
111
112 call %vcvarsall%
113 echo -----------------------------------
114 echo -------Creating Folders------------
115 echo -----------------------------------
116
117 rmdir %binpath% /s /q
118
119 rmdir %thirdpartyGeneration% /s /q
120 mkdir %thirdpartyGeneration%
121 cd  %thirdpartyGeneration%
122 mkdir thirdparty_source
123 mkdir thirdparty_bin
124 mkdir thirdparty_install
125
126
127 echo ------End Creating Folders---------
128
129 echo -----------------------------------
130 echo ------Downloading Sources----------
131 echo -----------------------------------
132
133 cd %thirdpartyGeneration%\thirdparty_source\
134 %wgetPath% %urlCreatisSource%/qt-4.7.3.zip
135 %wgetPath% %urlCreatisSource%/wxWidgets-2.9.2.7z
136 %wgetPath% %urlCreatisSource%/boost_1_47_0.7z
137 %wgetPath% %urlCreatisSource%/vtk-5.8.0.tar.gz
138 %wgetPath% %urlCreatisSource%/InsightToolkit-3.20.0.zip
139 %wgetPath% %urlCreatisSource%/gdcm_11_Oct_2011.tar.gz
140 %wgetPath% %urlCreatisSource%/xerces-c-3.1.1.zip
141 %wgetPath% %urlCreatisSource%/tth_exe.zip
142 echo ------End Downloading Sources------
143
144 echo -----------------------------------
145 echo --------Qt Installation------------
146 echo -----------------------------------
147 echo ----------Extracting---------------
148
149 cd %sourcepath%
150 %zipPath% x %sourcepath%\qt-4.7.3.zip
151 del %sourcepath%\qt-4.7.3.zip
152
153 echo --------Renaming Folder------------
154
155 rename qt-everywhere-opensource-src-4.7.3 %qt%
156
157 echo ----------Installing---------------
158
159
160 cd %QTDIR%
161
162 echo y | configure -%buildType% -opensource -shared -qt-sql-sqlite -phonon -phonon-backend -platform win32-msvc2010 -mp
163
164 nmake
165 cd C:\
166
167 echo ------End QT Installation----------
168
169 echo -----------------------------------
170 echo -----wxWidgets Installation--------
171 echo -----------------------------------
172 echo ----------Extracting---------------
173
174 cd %sourcepath%
175 md %wxWidgets%
176 cd %wxWidgets%
177 %zipPath% x %sourcepath%\wxWidgets-2.9.2.7z
178 del %sourcepath%\wxWidgets-2.9.2.7z
179
180 echo ----------Installing---------------
181
182 cd %sourcepath%\%wxWidgets%\build\msw
183 nmake -f makefile.vc BUILD=%buildType% UNICODE=1 SHARED=1
184 cd C:\
185
186 echo ----End wxWidgets Installation-----
187
188 echo -----------------------------------
189 echo ------Boost Installation-----------
190 echo -----------------------------------
191 echo ----------Extracting---------------
192
193 cd %sourcepath%
194 %zipPath% x %thirdpartyGeneration%\thirdparty_source\boost_1_47_0.7z
195 del %thirdpartyGeneration%\thirdparty_source\boost_1_47_0.7z
196
197 echo --------Renaming Folder------------
198
199 rename boost_1_47_0 %boost%
200
201 echo ----------Installing---------------
202
203 cd %sourcepath%\%boost%
204 call bootstrap.bat
205 b2.exe --toolset=msvc-10.0 --build-type=complete stage
206 cd C:\
207
208 echo -----End Boost Installation--------
209
210 echo -----------------------------------
211 echo -------ITK Installation------------
212 echo -----------------------------------
213 echo ----------Extracting---------------
214
215 cd %sourcepath%
216 %zipPath% x InsightToolkit-3.20.0.zip
217 del InsightToolkit-3.20.0.zip
218
219 echo ----------Installing---------------
220
221 cd  %binpath%
222 echo mkdir %itk%Bin
223 cd %itk%Bin
224 cmake -G"Visual Studio 10" -H%sourcepath%\%itk% -B%binpath%\%itk%Bin 
225 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath%\%itk%\ -D BUILD_EXAMPLES:BOOL=OFF -D BUILD_TESTING:BOOL=OFF -D BUILD_SHARED_LIBS:BOOL=ON -D ITK_USE_REVIEW:BOOL=ON CMakeCache.txt
226 cmake -D USE_DEBUG_LIB:BOOL=%buildType% CMakeCache.txt
227 cmake CMakeCache.txt
228 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%buildType%
229 msbuild /p:Configuration=%buildType% INSTALL.vcxproj
230 cd c:\
231
232 echo ------End ITK Installation---------
233
234 echo -----------------------------------
235 echo ------XERCES Installation----------
236 echo -----------------------------------
237 echo ----------Extracting---------------
238
239 cd %sourcepath%
240 %zipPath% x xerces-c-3.1.1.zip
241 del xerces-c-3.1.1.zip
242
243 echo ----------Installing---------------
244
245 cd  %sourcepath%\%xercesc%\projects\Win32\VC10\xerces-all
246 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=build
247 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%buildType%
248 msbuild /p:Configuration=%buildType% INSTALL.vcxproj
249
250 echo -----End XERCES Installation-------
251
252 echo -----------------------------------
253 echo -------VTK Installation------------
254 echo -----------------------------------
255 echo ----------Extracting---------------
256
257 cd %sourcepath%
258 %zipPath% x %thirdpartyGeneration%\thirdparty_source\VTK-5.8.0.tar.gz
259 %zipPath% x %thirdpartyGeneration%\thirdparty_source\VTK-5.8.0.tar
260 cd %thirdpartyGeneration%\thirdparty_source\VTK
261 del %thirdpartyGeneration%\thirdparty_source\VTK-5.8.0.tar.gz
262 del %thirdpartyGeneration%\thirdparty_source\VTK-5.8.0.tar
263
264 echo ----------Installing---------------
265
266
267 cd  %binpath%
268 mkdir %vtk%Bin
269 cd %vtk%Bin
270 cmake -G"Visual Studio 10"  -H%sourcepath%\%vtk% -B%binpath%\%vtk%Bin 
271 cmake -D USE_DEBUG_LIB:BOOL=%buildType% -D CMAKE_INSTALL_PREFIX:PATH=%installpath%\%vtk%\ CMakeCache.txt
272 cmake -D BUILD_EXAMPLES:BOOL=OFF -D BUILD_TESTING:BOOL=OFF -D BUILD_SHARED_LIBS:BOOL=ON -D VTK_USE_QT:BOOL=ON CMakeCache.txt
273 cmake CMakeCache.txt
274 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%buildType%
275 msbuild /p:Configuration=%buildType% INSTALL.vcxproj
276 cd c:\
277 echo ------End VTK Installation---------
278
279 echo -----------------------------------
280 echo -------GDCM Installation-----------
281 echo -----------------------------------
282 echo ----------Extracting---------------
283
284 cd %sourcepath%
285 %zipPath% x gdcm_11_Oct_2011.tar.gz
286 %zipPath% x gdcm_11_Oct_2011.tar
287 del gdcm_11_Oct_2011.tar.gz
288 del gdcm_11_Oct_2011.tar
289
290 echo ----------Installing---------------
291
292
293 cd  %binpath%
294 mkdir %gdcm%Bin
295
296 cd %gdcm%Bin
297 cmake -G"Visual Studio 10"  -H%sourcepath%\%gdcm% -B%binpath%\%gdcm%Bin
298 cmake -D USE_DEBUG_LIB:BOOL=%buildType% -D CMAKE_INSTALL_PREFIX:PATH=%installpath%\%gdcm%\ CMakeCache.txt
299 cmake -D VTK_DIR:PATH=%binpath%\%vtk%Bin -D GDCM_VTK:BOOL=ON -D BUILD_TESTING:BOOL=OFF -D GDCM_NAME_SPACE:STRING=gdcm13 CMakeCache.txt
300 cmake CMakeCache.txt
301 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%buildType%
302 msbuild /p:Configuration=%buildType% INSTALL.vcxproj
303 cd c:\
304
305 echo -----End GDCM Installation---------
306
307 echo -----------------------------------
308 echo -------TTH Installation------------
309 echo -----------------------------------
310 echo ----------Extracting---------------
311 cd %sourcepath%
312 %zipPath% x tth_exe.zip
313 rename tth_exe tth
314 del tth_exe.zip
315 echo ------End TTH Installation---------
316 cd c:\
317 echo -----------------------------------
318 echo ---End of Installing Libraries-----
319 echo -----------------------------------
320
321 exit /B