]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/scripts/install_thirdparty_dlls_cmake.bat
fe2d8456d59e7821cd52b30d4e0246a129694fcb
[creaToolsTools.git] / Install_ThirdParty / scripts / install_thirdparty_dlls_cmake.bat
1 @echo off
2 echo -----------------------------------
3 echo ------Asking Architecture----------
4 echo -----------------------------------
5 if %PROCESSOR_ARCHITECTURE%==x86 (
6   set ProgramFilesPath_x86=%ProgramFiles%
7   echo "Architecture found = x86"
8 ) else (
9   set "ProgramFilesPath_x86=%ProgramFiles(x86)%"
10   echo "Architecture found = x64"
11 )
12
13 echo ----End Asking Architecture--------
14
15
16 set thirdpartydlls_cmake=%1
17 set thirdpartydllspath=%2
18
19 set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
20
21 set sourcepath=%thirdpartydlls_cmake%\crea_ThirdParty_dlls
22 set binpath=%thirdpartydlls_cmake%\crea_ThirdParty_dlls_Bin
23 set installpath="C:\Temp\creatools\crea_ThirdParty_dlls"
24 echo set installpath="ProgramFilesPath_x86\creatools\crea_ThirdParty_dlls"
25
26 if not exist %vcvarsall% set zipPath="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
27 if not exist %vcvarsall% (
28   echo ERROR!!! Visual Studio has not been found in the system
29   exit
30 )
31
32 call %vcvarsall%
33
34 mkdir %binpath%
35 cd %binpath%
36 cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
37 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
38 cmake -D CREA_LIBRARY_DLL_PATH:PATH=%thirdpartydllspath% CMakeCache.txt
39 cmake CMakeCache.txt
40 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%buildType%
41 msbuild /p:Configuration=release INSTALL.vcxproj
42 @echo on