]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/scripts/install_thirdparty_dlls_cmake.bat
DFCH: Update for x84 and x64 bit compilation
[creaToolsTools.git] / Install_ThirdParty / scripts / install_thirdparty_dlls_cmake.bat
1 @echo off
2 echo -----------------------------------
3 echo -----Generating Installers of------
4 echo -------creaThirdPartyDlls----------
5 echo -----------------------------------
6 echo -----------------------------------
7 echo ------Asking Architecture----------
8 echo -----------------------------------
9 if %PROCESSOR_ARCHITECTURE%==x86 (
10   set ProgramFilesPath_x86=%ProgramFiles%
11   echo "Architecture found = x86"
12 ) else (
13   set "ProgramFilesPath_x86=%ProgramFiles(x86)%"
14   echo "Architecture found = x64"
15 )
16
17 echo ----End Asking Architecture--------
18
19 set thirdpartyGeneration=%1
20 set buildType=%2
21
22
23 set version="3.0.1-win32"
24
25 set thirdparty_cmake=%cd%\..\cmake
26
27 set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
28
29 set thirdpartydllspath=%thirdpartyGeneration%\thirdparty_temp\creaThirdParty_dlls
30 set sourcepath=%thirdparty_cmake%\crea_ThirdParty_dlls
31 set binpath=%thirdpartyGeneration%\thirdparty_bin\%buildType%\crea_ThirdParty_dlls_Bin
32 set installpath="ProgramFilesPath_x86\creatools\crea_ThirdParty_dlls"
33
34 if not exist %vcvarsall% set zipPath="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
35 if not exist %vcvarsall% (
36   echo ERROR!!! Visual Studio has not been found in the system
37   exit
38 )
39
40 if %PROCESSOR_ARCHITECTURE%==x86 (
41         call %vcvarsall%
42 ) else (
43         call %vcvarsall% amd64
44 )
45
46 mkdir %binpath%
47 cd %binpath%
48
49 if %PROCESSOR_ARCHITECTURE%==x86 (
50         cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
51 ) else (
52         cmake -G"Visual Studio 10 Win64"  -H%sourcepath% -B%binpath%
53 )
54
55 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
56 cmake -D CREA_LIBRARY_DLL_PATH:PATH=%thirdpartydllspath% CMakeCache.txt
57 cmake CMakeCache.txt
58 FOR /R %%a IN (*.sln) DO msbuild %%a /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType%
59 msbuild /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType% PACKAGE.vcxproj
60
61 set installerPath="%thirdpartydllspath%\thirdparty_bin\crea_ThirdParty_dlls_Bin\crea_ThirdParty_dlls-%version%.exe"
62
63 if exist installerPath (
64 mkdir %thirdpartyGeneration%\thirdparty_installers
65 move /Y %installerPath% %thirdpartyGeneration%\thirdparty_installers
66 )
67
68 exit /B