]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/scripts/install_thirdparty_dlls_cmake.bat
DFCH: Feature #1524
[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 ::The following line is to force x86 or x64 compilation
22 set x86Comp=%3
23
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 %x86Comp%==ON (
41         call %vcvarsall%
42         echo "Compilation forced x86"
43 ) else (
44         if %PROCESSOR_ARCHITECTURE%==x86 (
45                 call %vcvarsall%
46         ) else (
47                 call %vcvarsall% amd64
48         )
49 )
50
51 mkdir %binpath%
52 cd %binpath%
53
54 if %x86Comp%==ON (
55         cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
56 ) else (
57         if %PROCESSOR_ARCHITECTURE%==x86 (
58                 cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
59         ) else (
60                 cmake -G"Visual Studio 10 Win64"  -H%sourcepath% -B%binpath%
61         )
62 )
63
64 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
65 cmake -D CREA_LIBRARY_DLL_PATH:PATH=%thirdpartydllspath% CMakeCache.txt
66 cmake CMakeCache.txt
67
68 FOR /R %%a IN (*.sln) DO msbuild %%a /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType%
69 msbuild /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType% PACKAGE.vcxproj
70
71 exit /B