]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/scripts/install_thirdparty_dlls_cmake.bat
DFCH: Update compilation (use all procesors in 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 call %vcvarsall%
41
42 mkdir %binpath%
43 cd %binpath%
44
45 cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
46 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
47 cmake -D CREA_LIBRARY_DLL_PATH:PATH=%thirdpartydllspath% CMakeCache.txt
48 cmake CMakeCache.txt
49 FOR /R %%a IN (*.sln) DO msbuild %%a /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType%
50 msbuild /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType% PACKAGE.vcxproj
51
52 set installerPath="%thirdpartydllspath%\thirdparty_bin\crea_ThirdParty_dlls_Bin\crea_ThirdParty_dlls-%version%.exe"
53
54 if exist installerPath (
55 mkdir %thirdpartyGeneration%\thirdparty_installers
56 move /Y %installerPath% %thirdpartyGeneration%\thirdparty_installers
57 )
58
59 exit /B