X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Install_ThirdParty%2Fscripts%2Finstall_thirdparty_libraries_cmake.bat;h=2c4946d45a0735fb4f95497e96e2a158d69a8d87;hb=202b0b1a7dc0552a8c4a9eb1c9c48b6866af6404;hp=886da926e111d149e43092f81a55473dce63b487;hpb=3afceddce806ddbeb6870383aac236cac7082ff2;p=creaToolsTools.git diff --git a/Install_ThirdParty/scripts/install_thirdparty_libraries_cmake.bat b/Install_ThirdParty/scripts/install_thirdparty_libraries_cmake.bat index 886da92..2c4946d 100644 --- a/Install_ThirdParty/scripts/install_thirdparty_libraries_cmake.bat +++ b/Install_ThirdParty/scripts/install_thirdparty_libraries_cmake.bat @@ -17,6 +17,9 @@ if %PROCESSOR_ARCHITECTURE%==x86 ( echo ----End Asking Architecture-------- set thirdpartyGeneration=%1 +set buildType=%2 +::The following line is to force x86 or x64 compilation +set x86Comp=%3 set thirdparty_cmake=%cd%\..\cmake @@ -24,7 +27,7 @@ set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall. set thirdpartylibpath=%thirdpartyGeneration%\thirdparty_temp\creaThirdParty_libraries set sourcepath=%thirdparty_cmake%\crea_ThirdParty_Libraries -set binpath=%thirdpartyGeneration%\thirdparty_bin\creaTPLBin +set binpath=%thirdpartyGeneration%\thirdparty_bin\%buildType%\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" @@ -33,17 +36,34 @@ if not exist %vcvarsall% ( exit ) -call %vcvarsall% - -rmdir %binpath% /s /q +if %x86Comp%==ON ( + call %vcvarsall% + echo "Compilation forced x86" +) else ( + if %PROCESSOR_ARCHITECTURE%==x86 ( + call %vcvarsall% + ) else ( + call %vcvarsall% amd64 + ) +) mkdir %binpath% cd %binpath% -cmake -G"Visual Studio 10" -H%sourcepath% -B%binpath% +if %x86Comp%==ON ( + cmake -G"Visual Studio 10" -H%sourcepath% -B%binpath% +) else ( + if %PROCESSOR_ARCHITECTURE%==x86 ( + cmake -G"Visual Studio 10" -H%sourcepath% -B%binpath% + ) else ( + cmake -G"Visual Studio 10 Win64" -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 PACKAGE.vcxproj -@echo on \ No newline at end of file +FOR /R %%a IN (*.sln) DO msbuild %%a /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType% +msbuild /m:%NUMBER_OF_PROCESSORS% /p:UseEnv=true;BuildInParallel=true;Configuration=%buildType% PACKAGE.vcxproj + +exit /B \ No newline at end of file