]> Creatis software - creaToolsTools.git/blobdiff - Install_ThirdParty/scripts/install_thirdparty_libraries_cmake.bat
DFCH: Some bugs Solved!!
[creaToolsTools.git] / Install_ThirdParty / scripts / install_thirdparty_libraries_cmake.bat
index 8ce08153f8803ca4e2779e7cb1c94739e5d2f766..d519734e316ee1b8643d28a1d43015e78fa04007 100644 (file)
@@ -1,5 +1,9 @@
 @echo off
 echo -----------------------------------
+echo -----Generating Installers of------
+echo -----creaThirdPartyLibraries-------
+echo -----------------------------------
+echo -----------------------------------
 echo ------Asking Architecture----------
 echo -----------------------------------
 if %PROCESSOR_ARCHITECTURE%==x86 (
@@ -12,16 +16,16 @@ if %PROCESSOR_ARCHITECTURE%==x86 (
 
 echo ----End Asking Architecture--------
 
+set thirdpartyGeneration=%1
 
-set thirdpartylib_cmake=%1
-set thirdpartylibpath=%2
+set thirdparty_cmake=%cd%\..\cmake
 
 set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
 
-set sourcepath=%thirdpartylib_cmake%\crea_ThirdParty_Libraries
-set binpath=%thirdpartylib_cmake%\crea_ThirdParty_Libraries_Bin
-set installpath="C:\Temp\creatools\crea_ThirdParty_Libraries"
-echo set installpath="ProgramFilesPath_x86\creatools\crea_ThirdParty_Libraries"
+set thirdpartylibpath=%thirdpartyGeneration%\thirdparty_temp\creaThirdParty_libraries
+set sourcepath=%thirdparty_cmake%\crea_ThirdParty_Libraries
+set binpath=%thirdpartyGeneration%\thirdparty_bin\creaTPLBin
+set installpath="ProgramFilesPath_x86\creatools\crea_ThirdParty_Libraries"
 
 if not exist %vcvarsall% set zipPath="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
 if not exist %vcvarsall% (
@@ -31,12 +35,16 @@ if not exist %vcvarsall% (
 
 call %vcvarsall%
 
+rmdir %binpath% /s /q
+
 mkdir %binpath%
 cd %binpath%
+
 cmake -G"Visual Studio 10"  -H%sourcepath% -B%binpath%
 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
 cmake -D CREA_LIBRARY_SOURCE_PATH:PATH=%thirdpartylibpath% CMakeCache.txt
 cmake CMakeCache.txt
 FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%buildType%
-msbuild /p:Configuration=release INSTALL.vcxproj
-@echo on
\ No newline at end of file
+msbuild /p:Configuration=release PACKAGE.vcxproj
+
+exit /B
\ No newline at end of file