]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/scripts/install_thirdparty_libraries_cmake.bat
576822a5470c369c02570adbd49eee6db9b5da23
[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 version="3.0.1-win32"
21
22 set thirdparty_cmake=%cd%\..\cmake
23
24 set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
25
26 set thirdpartylibpath=%thirdpartyGeneration%\thirdparty_temp\creaThirdParty_libraries
27 set sourcepath=%thirdparty_cmake%\crea_ThirdParty_Libraries
28 set binpath=%thirdpartyGeneration%\thirdparty_bin\creaTPLBin
29 set installpath="ProgramFilesPath_x86\creatools\crea_ThirdParty_Libraries"
30
31 if not exist %vcvarsall% set zipPath="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
32 if not exist %vcvarsall% (
33   echo ERROR!!! Visual Studio has not been found in the system
34   exit
35 )
36
37 call %vcvarsall%
38
39 rmdir %binpath% /s /q
40
41 mkdir %binpath%
42 cd %binpath%
43
44 cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
45 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
46 cmake -D CREA_LIBRARY_SOURCE_PATH:PATH=%thirdpartylibpath% CMakeCache.txt
47 cmake CMakeCache.txt
48 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%buildType%
49 msbuild /p:Configuration=release PACKAGE.vcxproj
50
51 set installerPath="%thirdpartydllspath%\thirdparty_bin\creaTPLBin\crea_ThirdParty_Libraries-%version%.exe"
52
53 if exist installerPath (
54 mkdir %thirdpartyGeneration%\thirdparty_installers
55 move /Y %installerPath% %thirdpartyGeneration%\thirdparty_installers
56 rmdir %binpath% /s /q
57 rmdir %thirdpartylibpath% /s /q
58 )
59
60 exit /B