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"
13 set "ProgramFilesPath_x86=%ProgramFiles(x86)%"
14 echo "Architecture found = x64"
17 echo ----End Asking Architecture--------
19 set thirdpartyGeneration=%1
21 ::The following line is to force x86 or x64 compilation
24 set thirdparty_cmake=%cd%\..\cmake
26 set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
28 set thirdpartylibpath=%thirdpartyGeneration%\thirdparty_temp\creaThirdParty_libraries
29 set sourcepath=%thirdparty_cmake%\crea_ThirdParty_Libraries
30 set binpath=%thirdpartyGeneration%\thirdparty_bin\%buildType%\creaTPLBin
32 if not exist %vcvarsall% set zipPath="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
33 if not exist %vcvarsall% (
34 echo ERROR!!! Visual Studio has not been found in the system
40 echo "Compilation forced x86"
42 if %PROCESSOR_ARCHITECTURE%==x86 (
43 set installpath="%ProgramFilesPath_x86%\creatools\crea_ThirdParty_Libraries"
46 set installpath="%ProgramFiles%\creatools\crea_ThirdParty_Libraries"
47 call %vcvarsall% amd64
56 cmake -G"Visual Studio 10" -H%sourcepath% -B%binpath%
58 if %PROCESSOR_ARCHITECTURE%==x86 (
59 cmake -G"Visual Studio 10" -H%sourcepath% -B%binpath%
61 cmake -G"Visual Studio 10 Win64" -H%sourcepath% -B%binpath%
65 cmake -D CMAKE_INSTALL_PREFIX:PATH=%installpath% CMakeCache.txt
66 cmake -D CREA_LIBRARY_SOURCE_PATH:PATH=%thirdpartylibpath% CMakeCache.txt
68 FOR /R %%a IN (*.sln) DO msbuild %%a /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType%
69 msbuild /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType% PACKAGE.vcxproj