--- /dev/null
+set thirdpartyGeneration=<directory where you want to generate>
+set buildType=<debug|release|RelWithDebInfo>
+
+cd scripts
+call install_thirdparty_all.bat %thirdpartyGeneration% %buildType% >> install_generate_thirdparty.log 2>&1
+
+call move_thirdparty_dlls.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
+
+call move_thirdparty_libraries.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
+
+call install_thirdparty_dlls_cmake.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
+
+call install_thirdparty_libraries_cmake.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
+
+cd ..
\ No newline at end of file
@echo off
echo -----------------------------------
+echo ------Installing Libraries---------
+echo -----------------------------------
+echo -----------------------------------
echo ------Asking Architecture----------
echo -----------------------------------
if %PROCESSOR_ARCHITECTURE%==x86 (
del tth_exe.zip
echo ------End TTH Installation---------
cd c:\
+echo -----------------------------------
+echo ---End of Installing Libraries-----
+echo -----------------------------------
@echo on
\ No newline at end of file
@echo off
echo -----------------------------------
+echo -----Generating Installers of------
+echo -------creaThirdPartyDlls----------
+echo -----------------------------------
+echo -----------------------------------
echo ------Asking Architecture----------
echo -----------------------------------
if %PROCESSOR_ARCHITECTURE%==x86 (
call %vcvarsall%
+rmdir %binpath% /s /q
+
mkdir %binpath%
+
cd %binpath%
cmake -G"Visual Studio 10" -H%sourcepath% -B%binpath%
@echo off
echo -----------------------------------
+echo -----Generating Installers of------
+echo -----creaThirdPartyLibraries-------
+echo -----------------------------------
+echo -----------------------------------
echo ------Asking Architecture----------
echo -----------------------------------
if %PROCESSOR_ARCHITECTURE%==x86 (
call %vcvarsall%
+rmdir %binpath% /s /q
+
mkdir %binpath%
cd %binpath%
@echo off
echo -----------------------------------
+echo ----------Moving Dlls--------------
+echo -----------------------------------
+echo -----------------------------------
echo ---Setting Enviroment Variables----
echo -----------------------------------
set VTKINSTALLDIR=%installpath%\%vtk%
set GDCMINSTALLDIR=%installpath%\%gdcm%
+rmdir %creaThirdPartydlls% /s /q
+
mkdir %creaThirdPartydlls%
echo -----------------------------------
echo -----------------------------------
copy /V /Y %GDCMINSTALLDIR%\bin\*.exe %creaThirdPartydlls%
-copy /V /Y %GDCMINSTALLDIR%\bin\*.dll %creaThirdPartydlls%
\ No newline at end of file
+copy /V /Y %GDCMINSTALLDIR%\bin\*.dll %creaThirdPartydlls%
+echo -----------------------------------
+echo ------End of Moving Dlls-----------
+echo -----------------------------------
\ No newline at end of file
@echo off
echo -----------------------------------
+echo --------Moving Libraries-----------
+echo -----------------------------------
+echo -----------------------------------
echo ------Asking Architecture----------
echo -----------------------------------
if %PROCESSOR_ARCHITECTURE%==x86 (
echo ITKSRCDIR=%ITKSRCDIR%
echo VTKSRCDIR=%VTKSRCDIR%
+rmdir %creaThirdPartyLibraries% /s /q
+
mkdir %creaThirdPartyLibraries%
echo -----------------------------------
echo -----------------------------------
mkdir %creaThirdPartyLibraries%\%miktexAux%
-XCOPY %miktex%\* %creaThirdPartyLibraries%\%miktexAux% /s /i
\ No newline at end of file
+XCOPY %miktex%\* %creaThirdPartyLibraries%\%miktexAux% /s /i
+
+echo -----------------------------------
+echo -----End of Moving Libraries-------
+echo -----------------------------------
\ No newline at end of file