@echo off echo ----------------------------------- echo -----Generating Installers of------ echo -------creaThirdPartyDlls---------- echo ----------------------------------- echo ----------------------------------- echo ------Asking Architecture---------- echo ----------------------------------- if %PROCESSOR_ARCHITECTURE%==x86 ( set ProgramFilesPath_x86=%ProgramFiles% echo "Architecture found = x86" ) else ( set "ProgramFilesPath_x86=%ProgramFiles(x86)%" echo "Architecture found = x64" ) echo ----End Asking Architecture-------- set thirdpartyGeneration=%1 set buildType=%2 set version="3.0.1-win32" set thirdparty_cmake=%cd%\..\cmake set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" set thirdpartydllspath=%thirdpartyGeneration%\thirdparty_temp\creaThirdParty_dlls set sourcepath=%thirdparty_cmake%\crea_ThirdParty_dlls set binpath=%thirdpartyGeneration%\thirdparty_bin\%buildType%\crea_ThirdParty_dlls_Bin set installpath="ProgramFilesPath_x86\creatools\crea_ThirdParty_dlls" if not exist %vcvarsall% set zipPath="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" if not exist %vcvarsall% ( echo ERROR!!! Visual Studio has not been found in the system exit ) call %vcvarsall% 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_DLL_PATH:PATH=%thirdpartydllspath% CMakeCache.txt cmake CMakeCache.txt FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%buildType% msbuild /p:Configuration=release PACKAGE.vcxproj set installerPath="%thirdpartydllspath%\thirdparty_bin\crea_ThirdParty_dlls_Bin\crea_ThirdParty_dlls-%version%.exe" if exist installerPath ( mkdir %thirdpartyGeneration%\thirdparty_installers move /Y %installerPath% %thirdpartyGeneration%\thirdparty_installers ) exit /B