]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/scripts/install_thirdparty_libraries_cmake.bat
DFCH: Feature #1524
[creaToolsTools.git] / Install_ThirdParty / scripts / install_thirdparty_libraries_cmake.bat
1 @echo off
2 echo -----------------------------------
3 echo -----Generating Installers of------
4 echo -----creaThirdPartyLibraries-------
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 set thirdparty_cmake=%cd%\..\cmake
25
26 set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
27
28 set thirdpartylibpath=%thirdpartyGeneration%\thirdparty_temp\creaThirdParty_libraries
29 set sourcepath=%thirdparty_cmake%\crea_ThirdParty_Libraries
30 set binpath=%thirdpartyGeneration%\thirdparty_bin\%buildType%\creaTPLBin
31 set installpath="ProgramFilesPath_x86\creatools\crea_ThirdParty_Libraries"
32
33 if not exist %vcvarsall% set zipPath="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
34 if not exist %vcvarsall% (
35   echo ERROR!!! Visual Studio has not been found in the system
36   exit
37 )
38
39 if %x86Comp%==ON (
40         call %vcvarsall%
41         echo "Compilation forced x86"
42 ) else (
43         if %PROCESSOR_ARCHITECTURE%==x86 (
44                 call %vcvarsall%
45         ) else (
46                 call %vcvarsall% amd64
47         )
48 )
49
50 mkdir %binpath%
51 cd %binpath%
52
53 if %x86Comp%==ON (
54         cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
55 ) else (
56         if %PROCESSOR_ARCHITECTURE%==x86 (
57                 cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
58         ) else (
59                 cmake -G"Visual Studio 10 Win64"  -H%sourcepath% -B%binpath%
60         )
61 )
62
63 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
64 cmake -D CREA_LIBRARY_SOURCE_PATH:PATH=%thirdpartylibpath% CMakeCache.txt
65 cmake CMakeCache.txt
66 FOR /R %%a IN (*.sln) DO msbuild %%a /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType%
67 msbuild /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType% PACKAGE.vcxproj
68
69 exit /B